
@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-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);
}
}

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

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

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

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;
}


.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;

}




/* 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 24px 0px 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;
padding-left: 12px;
text-overflow: ellipsis;
color: var(--blue);
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;
    padding: 5px;
    border-radius: 5px;
    background: beige;
    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;
}

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

.img_center {
text-align: center;
}

.seminar {
position: relative;
min-height: 20vh;
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 -1px;
background-repeat: no-repeat;
}

.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: 67vh;
height: 100%;
width: 100%;
padding: 0 60px;
margin: auto;
gap: 30px;
justify-content: space-between;
}

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

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

.seminar .column {
width: 50%;
}

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


.btn_inside {
  --green: #0264b3;
  font-size: 15px;
  padding: 0.7em 2.7em;
  letter-spacing: 0.06em;
  position: relative;
  font-weight:600;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid #0264b3;
  background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
  color: #0264b3;
  box-shadow: inset 0 0 10px rgb(47 138 186 / 40%), 0 0 9px 3px rgb(130 140 204 / 10%);
}

.btn_inside:hover {
  color: #0264b3;
  box-shadow: inset 0 0 10px rgb(47 138 186 / 40%), 0 0 9px 3px rgb(130 140 204 / 10%);
}

.btn_inside:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform .4s ease-in-out;
  background: inset 0 0 10px rgb(47 138 186 / 40%), 0 0 9px 3px rgb(130 140 204 / 10%);
}

.btn_inside:hover:before {
  transform: translateX(15em);
}

.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: 200px;
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;
}

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

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

/* Reponsive */
@media (width < 760px) {
  a {
    color: #333;
  }

  .seminar {
    padding: 30px 0px 40px 0px;
  }

  .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;
    text-align: center;
  }

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

  .buttons {
    justify-content: center;
  }

  .btn {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/*for tabs*/
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

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

  to {
    transform: translateX(0);
  }
}

/* Style tab links */
.tablink {
  background-color: var(--blue);
  color: white;
  float: left;
  border: 0.5px solid white;
  outline: none;
  cursor: pointer;
  padding: 7px 16px;
  font-size: 17px;
  width: 25%;
}

.tablink:hover {
  background-color: #0c5ea1;
}

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

.tablink.active {
  background-color: white;
  color: var(--blue);
}

.buyer-supporth4 {
  font-size: 25px;
  color: #53a583;
}

.tab1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  text-align: center;
  font-size: 17px;
}

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

.container_tab {
  border: 1px solid #bcbec1;
  margin-top: 15px;
}

.topic-points{
      margin-top: 8px;
    }

.description {
  text-align: left;
  max-width: 90%;
  width: 50%;
  border-right: 1px solid gainsboro;
  font-size: 16px;
}

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

  100% {
    transform: translateX(0);
  }
}

.description h2 {
  text-align: center;
}

.product_video {
  margin-left: 10px;
}

.image {
  max-width: 100%;
  height: auto;
  padding: 10px;
  margin-bottom: 10px;
}

@keyframes slideBottomToTop {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0);
  }
}

.productimage {
  width: 300px;
  height: auto;
  padding: 5px;
}

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

  100% {
    transform: translateX(0);
  }
}

@media (min-width: 700px) {
  .image {
    max-width: 240px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    height: auto;
    margin-bottom: 10px;
  }

  .productimage {
    width: 350px;
    height: auto;
  }
}

@media screen and (min-width: 320px) and (max-width: 340px) {
  .tablink {
    width: 100%;
    float: none;
  }

  .product_video {
    margin-left: 0px;
  }

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

@media screen and (min-width: 340px) and (max-width: 370px) {
  .tablink {
    width: 100%;
    float: none;
  }

  .product_video {
    margin-left: 0px;
  }

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

@media screen and (min-width: 370px) and (max-width: 440px) {
  .tablink {
    width: 100%;
    float: none;
  }

  .product_video {
    margin-left: 0px;
  }

  .tabcontent {
    padding: 50px 0px;
    font-size: 17px;
  }
}

@media screen and (min-width: 440px) and (max-width: 600px) {
  .tablink {
    width: 100%;
    float: none;
  }

  .product_video {
    margin-left: 0px;
  }

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

@media screen and (min-width:600px) and (max-width: 747px) {
  .tablink {
    font-size: 11.3px;
  }
}

@media screen and (min-width:747px) and (max-width: 787px) {
  .tablink {
    font-size: 13px;
  }
}

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

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

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

@media screen and (max-width: 1032px) {
    .seminar .row{
        min-height: 80vh;
    }

}

@media screen and (max-width: 475px) {
    .productimage{
        width: 260px;
    }
}


@media screen and (max-width: 900px) {
    .description{
    text-align: left;
    max-width: 90%;
    width: 100%;

    padding-left: 10px;
    border-right: none;
    font-size: 16px;
  }

  .tabcontent{
    padding: 43px 10px 20px 10px;
  }
  .description{
    margin-top: 35px;
  }
}

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

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

