
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* start: Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
}

body {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader.hidden {
  display: none;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 7px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner 0.7s linear infinite;
}

@keyframes spinner {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* for landing page */
/* for landing page bullet point */

ul {
  list-style: none;
  padding: 0;
}

li.arrow {
  color: white;
  position: relative;
  padding-left: 20px;
}

li.arrow::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: white;
  font-size: 12px;
  line-height: 2;
}

.column h2 {
  font-size: 30px;
}

.column li {
  font-size: 17px;
}

.pay-container {
  max-width: 940px;
  margin: 0 auto;
}

.responsive-image {
  max-width: 190px;
  height: auto;
}

.img_div {
  display: flex;
  justify-content: center;
}

.payment-details {
  display: none;
  padding: 20px;
  border-radius: 8px;
  height: 300px;
  overflow-y: auto;
}

.payment-details {

  position: relative;
  padding: 20px;
  border-radius: 8px;
  height: 298px;
  overflow-y: auto;
}

.payment-details a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.payment-details h2 {
  margin-top: 0;
}

.payment-details p {
  margin: 10px 0;
}

.super-underline {
  position: relative;
  font-size: 16px;
  color: var(--blue);
  font-weight: bold;
}

.super-underline-mojo {
  position: relative;
  margin-top: 55px;
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  color: var(--blue);
  font-weight: bold;

}

.Note_word{
      color: #ffeb00;
    margin-top: 5px;
        font-weight: bold;
}


/* Responsive styles */
@media (max-width: 768px) {
  .payment-details {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .payment-details {
    padding: 10px;
  }
}

/* start: Payment */
.payment-section {
  padding-bottom: 48px;
  padding: 10px;
}

.payment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.payment-header {
  padding: 24px;
  background-color: var(--blue);
  border-top-left-radius: 10px;
  border-top-right-radius: 12px;
  padding-bottom: 25px;
}

.payment-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--blue);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.payment-header-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 4px;
}

.payment-header-description {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 600;
}

.payment-content {
  background-color: var(--white);
  border-radius: 0 0 8px 8px;
  border: 1px solid #bcbec1;
  position: relative;
  padding: 24px;
  overflow: hidden;
}


.payment-plan {
  display: flex;
  align-items: center;
  padding: 10px;
}

.payment-plan-type {
  width: auto;
  height: 40px;
  background-color: var(--blue);
  color: var(--white);
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 8px;
}

.payment-plan-info {
  width: 100%;
  margin-right: 8px;
  display: grid;
}

.payment-plan-info-name {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.payment-plan-info-price {
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.payment-plan-change {
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 600;
  text-underline-offset: 2px;
}

.payment-plan-change:hover {
  color: var(--blue-600);
}

.payment-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
}

.payment-summary-name {
  font-size: 14px;
  color: #000000;
}

.payment-summary-price {
  font-weight: 500;
  font-size: 15px;
}

.payment-summary-divider {
  width: calc(100% - 16px);
  height: 0;
  margin: 12px auto;
  border-bottom: 1px dashed var(--gray-200);
  position: relative;
}

.payment-summary-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--gray-50);
  box-shadow: inset 0 2px 16px rgba(0, 0, 0, .05);
}

.payment-summary-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--gray-50);
  box-shadow: inset 0 2px 16px rgba(0, 0, 0, .05);
}

.payment-summary-total {
  padding-bottom: 16px;
}

.payment-summary-total .payment-summary-name {
  color: var(--gray-900);
}

.payment-summary-total .payment-summary-price {
  font-size: 16px;
  color: var(--blue);
  font-weight: 600;
}

.payment-right {
  min-width: 0;
  border-radius: 8px;
  border: 1px solid #bcbec1;
}

.payment-form {
  padding: 24px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
}

.payment-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.upi_dtls {
  text-align: center;
  margin-top: 60px;
}

.payment-method {
  display: flex;
  align-items: center;
  overflow-x: auto;
  justify-content: center;
  padding: 6px 0;
  width: 100%;
}

.payment-method input {
  display: none;
}

.payment-method-item {
  width: 30%;
  height: 80px;
  padding: 8px;
  border: 1px solid #bcbec1;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 5px;

}

input:checked+.payment-method-item {
  border-color: var(--blue);
}

input:checked+.payment-method-item::before {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--blue);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEwLjAwMDcgMTUuMTcwOUwxOS4xOTMxIDUuOTc4NTJMMjAuNjA3MyA3LjM5MjczTDEwLjAwMDcgMTcuOTk5M0wzLjYzNjcyIDExLjYzNTRMNS4wNTA5MyAxMC4yMjEyTDEwLjAwMDcgMTUuMTcwOVoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMSkiPjwvcGF0aD48L3N2Zz4=");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.payment-method-item>img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.payment-form-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  color: var(--gray-400);
  pointer-events: none;
  transition: all .1s ease-in-out;
}

.payment-form-label-required::after {
  content: ' *';
  color: var(--red-500);
}

.payment-form-submit-button {
  background-color: var(--indigo-500);
  border-radius: 8px;
  outline: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  padding: 16px;
  transition: all .15s ease-in-out;
}

.payment-form-submit-button:hover {
  background-color: var(--indigo-600);
}

.payment-form-submit-button>i {
  margin-right: 8px;
}

/* end: Payment */

/* start: Breakpoints */
@media screen and (max-width: 767px) {
  .payment-wrapper {
    grid-template-columns: 1fr;
  }

  .payment-content {
    padding: 16px;
  }

  .payment-content::before {
    top: 16px;
    width: calc(100% - 20px);
  }

}

/* end: Breakpoints */

.main_cls {
  background: var(--blue);
}

.container {
  max-width: 1300px;
  width: 100%;
}


.sem_page {
  margin-top: 65px;
  padding-bottom: 40px;
  font-size: 15px;
}

a {
  color: #fff;
  text-decoration: none;
}

.img_center {
  text-align: center;
}

.seminar {
  position: relative;
  min-height: 50vh;
  width: 100%;
  background: url(../assets/bg-dot.webp), url(../assets/bg-dot.webp), url(../assets/bg-round.webp);
  background-position: 10px 10px, bottom 80px right 10px, left 55% top -1%, left 30% bottom 100px;
  background-repeat: no-repeat;
}

.learnVid{
  text-decoration: underline;
  cursor: pointer;
}

.cour_amnt{
  background: white;
  font-size: 20px;
  padding: 0px 10px;
  border-radius: 5px;
  color: var(--blue);
}

.curveImg {
  position: absolute;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

.seminar .row {
  display: flex;
  align-items: center;
  min-height: 50vh;
  height: 100%;
  width: 100%;
  padding: 50px 60px;
  margin: auto;
  gap: 30px;
  justify-content: space-between;
}

.seminar .row h2,
.seminar .row p {
  color: #fff;
}

.seminar .row h2 {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 16px;
}

.seminar .column {
  width: 50%;
}

.buttons {
  display: flex;
  margin-top: 25px;
  gap: 10px;
}

.btn {
  padding: 7px 20px;
  background: #fff;
  border-radius: 50px;
  border: none;
  color: var(--blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:last-child {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.btn:last-child:hover {
  background-color: #fff;
  color: var(--blue);
}

.hero_img {
  width: 40%;
  position: relative;
}

#menu_toggle {
  display: none;
}

.content {
  display: flex;
  justify-content: space-between;
}

.content .list {
  display: flex;
  flex-direction: column;
  width: 20%;
  background: var(--blue);
  border: 1px solid var(--blue);
  margin-right: 50px;
  border-radius: 5px;
  position: relative;
}

.content .list label {
  height: 64px;
  font-size: 16px;
  font-weight: 500;
  line-height: 60px;
  cursor: pointer;
  padding-left: 25px;
  transition: all 0.5s ease;
  color: #ffffff;
  z-index: 12;
}

.content .slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 71px;
  width: 100%;
  border-radius: 5px;
  background: #ffffff;
  transition: all 0.4s ease;
}

.content .text-content {
  width: 80%;
  height: 100%;
}

.content .text {
  display: none;
}

.content .text .title {
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 500;
}

.imp_notes {
  color: #d11a1a;
  text-align: center;
  margin-top: 15px;
  font-size: 19px;
  font-weight: 600;
}

.content .text p {
  text-align: justify;
}

.content .text-content .home {
  display: block;
}

.content input {
  display: none;
}

/* Add media queries for responsiveness */
@media screen and (max-width: 866px) {
  .content {
    flex-direction: column;
  }

  

  .content .list {
    width: 100%;
    margin: 0;
  }

  .content .text-content {
    width: 100%;
    margin-top: 20px;
  }
}


.imp_button {
  background: #e14444;
  border-radius: 999px;
  box-shadow: #ff4040 0 10px 17px -10px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  opacity: 1;
  outline: 0 solid transparent;
  padding: 8px 18px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  word-break: break-word;
  border: 0;



}

.imp_div {
  text-align: center;

}

/* Additional styles for smaller screens */
@media screen and (max-width: 480px) {

  .content .list label {
    font-size: 16px;
  }

  .hero_img {
    width: 70%;
    position: relative;
  }

  .content .text .title {
    font-size: 20px;
  }

  .content .text p {
    font-size: 14px;
  }
}

/* Reponsive */
@media (width < 760px) {

  a {
    color: #333;
  }

  

  .seminar {
    padding-top: 130px;
  }

  .seminar .row {
    flex-direction: column;
    padding: 0 20px;
    justify-content: center;
  }

  .seminar .row .column {
    width: 100%;
  }
}

@media (width < 600px) {
  .seminar {
    padding: 30px 0px 40px 0px;
  }

  .seminar .row h2 {
    font-size: 26px;
  }

  .buttons {
    justify-content: center;
  }

  .btn {
    padding: 10px 16px;
  }
}

/* for module section */

.ganncourse-module-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  justify-content: space-around;
}

.ganncourse-module1 {
  flex: 2.5;
  border-radius: 5px;
  border: 1px solid var(--blue);
  border-bottom: 5px solid var(--blue);
  box-shadow: rgb(14 30 37 / 12%) 0px 2px 4px 0px, rgb(14 30 37 / 32%) 0px 2px 16px 0px;
}

.ganncourse-module-section h5 {
  color: white;
  margin: 0;
  padding: 15px;
  font-size: 17px;
  text-align: center;
  background-color: var(--blue);
}

.ganncourse-module-section p {
  text-indent: 0;
  font-weight: 500;
  margin: 8px;
}

.ganncourse-module-section p b {
  color: var(--blue);
}

.content-div {
  padding: 0px 10px 0px 10px;
}

@media only screen and (max-width: 1024px) {
  .ganncourse-module1 {
    flex: none;
    width: 47%;
  }
}

@media only screen and (max-width: 600px) {
  .ganncourse-module1 {
    flex: none;
    width: 50%;
  }
}

@media only screen and (max-width: 599px) {
  .ganncourse-module1 {
    flex: none;
    width: 100%;
  }
}



/*for videos section*/


a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.whole_div {
  padding: 10px;
  margin-top: 25px;
}


:root {

  /* font weight */
  --regular: 400;
  --bold: 700;

  /* font-size */
  --heading: 35px;
  --subHeading: 39.06px --h3Heading: 31.25px --paragraph: 16px;
  --blue: #0264b3;
  --blue-200: #bfdbfe;

  /* colors */

}

body {
  height: 100vh;
  width: 100%;
  margin-bottom: 10%;
  font-family: 'Inter', sans-serif;
}

.video_content {
  color: black;
  display: none;
  padding: 20px 20px;
  height: 100%;
  font-size: 18px;
}

@media screen and (min-width: 320px) and (max-width: 340px) {

  .video_content {
    padding: 15px 15px;
    font-size: 16px;
  }
}

@media screen and (min-width: 340px) and (max-width: 370px) {
  .video_content {
    padding: 50px 15px;
    font-size: 15px;
  }
}

@media screen and (min-width: 370px) and (max-width: 440px) {



  .video_content {
    padding: 50px 15px;
    font-size: 17px;
  }
}

@media screen and (min-width: 440px) and (max-width: 600px) {

  .video_content {
    font-size: 17px;
  }
}

@media screen and (min-width:1024px) {
  .video_content {
    font-size: 17px;
  }
}

@media screen and (min-width:1440px) {
  .video_content {
    font-size: 20px;
  }
}

.video_tab {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  text-align: center;
  align-items: center;
}

@media screen and (max-width: 900px) {

  .video_tab {
    flex-direction: column;
  }
}

@media screen and (min-width:900px) and (max-width: 1065px) {
  .video_tab {
    flex-direction: column;
  }
}

.title_vid {
  text-align: left;
  max-width: 50%;
  animation: slideInLeft 1s ease-in-out;
}


.title_vid h2 {
  text-align: center;
}
@media screen and (max-width: 768px) {
.hero_img {
  width: 200px;
  position: relative;
}
}

@media screen and (max-width: 900px) {

  .video_tab,
  .tab2 {
    flex-direction: column;
  }

  .title_vid {
    max-width: 100%;
  }
}

@media screen and (min-width:900px) and (max-width: 1065px) {

  .video_tab {
    flex-direction: column;
  }

  .title_vid {
    max-width: 100%;
  }
}

.container_tab {
  border: 1px solid #bcbec1;
  border-radius: 5px;
  margin-top: 10px;
}

.abt_software {
  font-size: 20px;
  color: #53a583;

}

.abt_p {
  background-color: #C60;
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  margin: 4px 2px;
  cursor: pointer;
  width: 100%;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.abt_p.active {
  background-color: #d6d7d8;
  color: black;
}

@media (max-width: 600px) {
  .abt_p {
    padding: 10px 20px;
    font-size: 10px;
  }
}


.iframe_vid {
  margin-left: 10px;
}


@media screen and (min-width: 320px) and (max-width: 340px) {
  .iframe_vid iframe {
    width: 290px;
  }

  .iframe_vid {
    margin-left: 0px;
  }
}

@media screen and (min-width: 340px) and (max-width: 370px) {
  .iframe_vid iframe {
    width: 275px;
  }

  .iframe_vid {
    margin-left: 0px;
  }
}

@media screen and (min-width: 370px) and (max-width: 440px) {
  .iframe_vid iframe {
    width: 297px;
  }

  .iframe_vid {
    margin-left: 0px;
  }
}

@media screen and (min-width: 440px) and (max-width: 600px) {
  .iframe_vid iframe {
    width: 350px;
  }

  .iframe_vid {
    margin-left: 0px;
  }
}


@media screen and (min-width:600px) and (max-width: 680px) {
  .iframe_vid iframe {
    width: 500px;
  }
}

@media screen and (max-width: 900px) {
  .iframe_vid {
    margin-left: 0px;
    margin-top: 30px;
  }
}

@media screen and (min-width:900px) and (max-width: 1065px) {

  .iframe_vid {
    margin-left: 0px;
    margin-top: 30px;
  }
}

@media screen and (min-width:1024px) {
  .iframe_vid iframe {
    width: 550px;
  }
}

@media screen and (min-width:1440px) {
  .iframe_vid iframe {
    width: 550px;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/*whatsapp and mail button*/

.btn-whatsapp {
  display: inline-block;
  padding: 10px 20px;
  background-color: #128C7E;
  color: #fff;
  width: 283px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
}

.btn-whatsapp:hover {
  background-color: #229d8f;
}

.btn-email {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
  width: 283px;
}

.btn-email:hover {
  background-color: #0056b3;
}

.icon {
  width: 30px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}

.div_inter {
  margin-bottom: 20px;
}

.inter_buyer_div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}


/* for course information card */

.product_cards {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 8vh auto;
}

.card_des_div a {
  color: var(--blue);
  text-decoration: underline;
}

.card_des_div a:hover {
  text-decoration: underline;
  color:rgb(219, 76, 76)
}

.product_card {
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  max-width: 100%;
}

.information {
  background-color: #fff;
  width: 100%;
  text-align: center;
  padding: 1.5rem;
}

.information .product_tag {
  display: inline-block;
  background-color: #e6f0f8;
  color: var(--blue);
  font-weight: 600;
  font-size: 17px;
  padding: 0.5em 0.75em;
  line-height: 1;
  border-radius: 6px;
}

.information .product_tag+* {
  margin-top: 1rem;
}

.information .product_title {
  font-size: 1.2rem;
  color: #141b22;
  line-height: 1.25;
}

.information .product_title+* {
  margin-top: 1rem;
}

.information .product_info {
  color: #000;
  font-weight: 400;
  font-size: medium;
}

.information .product_info+* {
  margin-top: 1.25rem;
}

.information .product_button {
  font: inherit;
  line-height: 1;
  background-color: #fff;
  border: 2px solid #0264b3;
  color: #0264b3;
  padding: 0.5em 1em;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.information .product_button:hover,
.information .product_button:focus {
  background-color: #114169;
  color: #fff;
}

.information .details {
  display: flex;
  gap: 1rem;
}

.information .details div {
  padding: 0.75em 1em;
  background-color: #f1eeff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.125em;
  flex-basis: 50%;
}

.information .details dt {
  font-size: 0.875rem;
  color: #a69fd6;
}

.information .details dd {
  color: #6558d3;
  font-weight: 600;
  font-size: 1.25rem;
}

/* for single iframe video player design */

.outer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding: 10px;
}

.video-container {
  width: 700px;
  height: 400px;
  border: 1px solid #bcbec1;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
