
@charset "UTF-8";
/****** Utils ******/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");

.banner {
    position: relative;
    width: 100%;
    max-width: 1920px;   /* 🔥 banner size */
    margin: auto;
}


body {
  font-family: "Inter", sans-serif;
box-sizing: border-box;

}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: #012030;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.3;
}

.banner img {
    width: 100%;
    display: block;
}

/* 🔴 REGISTER BUTTON MAPPING */
.register-map {
    position: absolute;

    /* 🎯 tuned for 1920px banner */
    bottom: 12%;
    right: 10%;
    width: 20%;
    height: 11%;

    z-index: 10;
    display: block;
    text-indent: -9999px;
    cursor: pointer;
}


.banner img {
    width: 100%;
    display: block;
    
}

/* 🔴 REGISTER BUTTON MAPPING */
.register-map {
    position: absolute;

    /* 👇 ivai thaan mapping values */
    bottom: 13%;
    right: 11%;
    width: 23%;
    height: 12%;

    z-index: 10;
    display: block;
    text-indent: -9999px;
    cursor: pointer;
}


/* ================= Header Base ================= */
.global-header {
  position: relative;
  width: 100%;
  z-index: 999;
}

/* Sticky Header – FULL WIDTH TOP */
.sticky-wrapper2 {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #0b1c2d;
}

/* Header Height */
.menu-area {
  min-height: 90px;
  display: flex;
  align-items: center;
}

/* ================= Logo ================= */
.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  max-height: 55px;
  width: auto;
  transition: all 0.3s ease;
}

.header-logo a:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}

/* ================= Floating Call Badge ================= */
.call-badge a {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2da4ff, #0095da);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.call-badge a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Phone Icon */
.phone-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #2da4ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.call-badge a:hover .phone-icon {
  background: #e6f4ff;
}

.phone-icon i {
  transition: all 0.3s ease;
}

.call-badge a:hover .phone-icon i {
  transform: scale(1.3) rotate(10deg);
}

/* Phone Text */
.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.phone-text span {
  font-size: 12px;
  opacity: 0.85;
}

.phone-text b {
  font-size: 16px;
}
/* Register Button Styles */
.register-float-btn {
  display: inline-block;
  padding: 17px 20px;
  background: #FF4667; /* Orange color, you can change */
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
}

.register-float-btn:hover {
  background: #e14c00; /* Darker on hover */
  color: #fff;
  text-decoration: none;
}
/* ================= 768px FIX ================= */
@media (max-width: 768px) {

  /* Header row force flex */
  .menu-area .row {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo left */
  .header-logo {
    flex: 0 0 auto;
  }

  /* Right side button container */
  .menu-area .col-auto.d-flex {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }

  /* Hide call badge */
  .call-badge {
    display: none !important;
  }

  /* Register button straight & neat */
  .register-float-btn {
    white-space: nowrap;
    padding: 10px 18px;
    font-size: 14px;
  }
}
/* ================= LOGO SIZE REDUCE ================= */

/* Tablet (768px) */
@media (max-width: 768px) {
  .header-logo img {
    max-height: 34px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .header-logo img {
    max-height: 30px;
  }
}







.modern-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.blue-theme {
  border-top: 5px solid #2563eb;
}

.green-theme {
  border-top: 5px solid #16a34a;
}

/* Header */
.modern-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  font-size: 20px;
}

.green-theme .icon-wrap {
  background: #ecfdf5;
  color: #16a34a;
}

.modern-header h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
  color: #111827;
}

/* List */
.modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.modern-list li:last-child {
  border-bottom: none;
}

.modern-list span {
  font-weight: 600;
  font-size: 16px;
  color: #1f2937;
}

.modern-list p {
  margin: 0;
  font-size: 16px;
  color: #4b5563;
}


.info-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0fdf4;
  border-left: 6px solid #16a34a;
  padding: 20px 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.info-left i {
  font-size: 36px;
  color: #16a34a;
}

.info-left h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #065f46;
}

.info-left p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #065f46;
}

.info-right {
  text-align: center;
  background: #16a34a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
}

.info-right .days {
  font-size: 28px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.info-right small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ===== Register Section ===== */
.register-section {
  background: #f0f4ff;
  padding: 55px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Container */
.register-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  position: relative;
}

/* Left Image */
.register-left {
  flex: 1 1 450px;
  position: relative;
}

.register-left img {
  width: 100%;
  border-radius: 20px;
 
  transform: rotate(-3deg);
}

/* Right Steps — Diagonal Flow */
.register-right {
  flex: 1 1 500px;
  position: relative;
}

/* Section Heading */
.register-right h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.register-right p {
  font-size: 17px;
  color: #4b5563;
  margin-bottom: 40px;
}

/* Steps — diagonal bubbles */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.steps li {
  position: relative;
  width: fit-content;
  background: #fff;
  padding: 25px 30px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  font-weight: 600;
  margin-bottom: 50px;
  transition: transform 0.3s ease;
}

.steps li:nth-child(odd) {
  margin-left: 0;
}

.steps li:nth-child(even) {
  margin-left: 80px;
}

.steps li:hover {
  transform: translateY(-10px);
}

/* Step number circle */
.step-no {
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Floating accent blobs */
.register-section::before,
.register-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}

.register-section::before {
  width: 300px;
  height: 300px;
  background: #ff9a9e;
  top: -50px;
  left: -50px;
}

.register-section::after {
  width: 400px;
  height: 400px;
  background: #a18cd1;
  bottom: -100px;
  right: -100px;
}

@media(max-width:768px){

  .register-container {
    flex-direction: column;
    text-align: center;
  }

  .steps li {
    margin: 40px auto;
    padding-top: 45px; /* space for number */
  }

  .steps li:nth-child(even) {
    margin-left: auto;
  }

  /* 🔧 FIXED NUMBER POSITION */
  .step-no {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.faq1{
    padding: 40px;
}
.faq1 .accordion .global-accordion-item {
  border: 1px solid #d1d5db; /* light gray border */
  border-radius: 12px;       /* rounded corners */
  margin-bottom: 16px;
  overflow: hidden;          /* ensure child doesn't overflow */
  transition: all 0.3s ease;
  background-color: #fff;    /* optional: white background */
}
.faq1 .accordion .global-accordion-item .global-accordion-header {
  margin: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq1 .accordion .global-accordion-item .global-accordion-button {
  position: relative;
  color: var(--theme-color3);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}

/* Border and subtle shadow for button */
.faq1 .accordion .global-accordion-button {
  border: none; /* already inside item border */
  background-color: transparent;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect for border color */
.faq1 .accordion .global-accordion-button:hover {
  color: #1a73e8;
  background-color: #f0f4ff;
}

/* Active/Expanded border effect */
.faq1 .accordion .global-accordion-collapse.show .global-accordion-button {
  border-bottom: 1px solid #d1d5db; /* separate line between button and body */
}
@media (max-width: 1399px) {
  .faq1 .accordion .global-accordion-item .global-accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .faq1 .accordion .global-accordion-item .global-accordion-button {
    font-size: 16px;
    padding-top: 8px;
  }
}
@media (max-width: 374px) {
  .faq1 .accordion .global-accordion-item .global-accordion-button {
    padding: 10px;
  }
}
.faq1 .accordion .global-accordion-item .global-accordion-button .icon2 {
  z-index: 11;
}
.faq1 .accordion .global-accordion-item .global-accordion-button .icon2 i {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  display: inline-block;
}
@media (max-width: 575px) {
  .faq1 .accordion .global-accordion-item .global-accordion-button .icon2 i {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.faq1 .accordion .global-accordion-item .global-accordion-button .icon {
  z-index: 11;
  transition: 0.4s all ease-in-out;
  display: none;
}
.faq1 .accordion .global-accordion-item .global-accordion-button .icon i {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
  display: inline-block;
}
@media (max-width: 575px) {
  .faq1 .accordion .global-accordion-item .global-accordion-button .icon i {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.faq1 .accordion .global-accordion-item .global-accordion-button.collapsed {
  color: var(--black2);
  font-family: var(--title-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 767px) {
  .faq1 .accordion .global-accordion-item .global-accordion-button.collapsed {
    font-size: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 575px) {
  .faq1 .accordion .global-accordion-item .global-accordion-button.collapsed {
    font-size: 16px;
    line-height: 18px;
  }
}
.faq1 .accordion .global-accordion-item .global-accordion-button.collapsed .icon2 {
  display: none;
}
.faq1 .accordion .global-accordion-item .global-accordion-button.collapsed .icon {
  display: block;
}
.faq1 .accordion .global-accordion-item .global-accordion-body {
  padding: 0 30px;
  font-family: var(--body-font);
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding-bottom: 24px;
}
@media (max-width: 449px) {
  .faq1 .accordion .global-accordion-item .global-accordion-body {
    padding: 0 10px 16px 10px;
  }
}
.faq1 .accordion .global-accordion-item .global-accordion-body p {
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-color1);
}
@media (max-width: 575px) {
  .faq1 .accordion .global-accordion-item .global-accordion-body p {
    font-size: 15px;
  }
}
.faq1-head {
  position: relative;
}
.faq1-head::after {
  position: absolute;
  left: 0;
  top: 33px;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--border-color1);
}
.faq1-head-nav {
  border-radius: 100px;
  border: 1px solid var(--border-color1);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  gap: 7px;
  max-width: 365px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 374px) {
  .faq1-head-nav {
    border: none;
    padding: 0;
  }
}
.faq1-head-nav .faq1-nav__item {
  background-color: var(--bg-color1);
  border-radius: 100px;
  color: var(--theme-color3);
  transition: 0.4s all ease-in-out;
}
.faq1 .nav-pills .nav-link.active,
.faq1 .nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--theme-color3);
  border-radius: 100px;
}






/* Register Button Styles */
.register-float-btn1 {
  display: inline-block;
  padding: 17px 220px;
  background: #FF4667; /* Orange color, you can change */
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
}

.register-float-btn1:hover {
  background: #e14c00; /* Darker on hover */
  color: #fff;
  text-decoration: none;
}
/* Blink animation */
@keyframes blinkGlow{
    0%{
        opacity: 1;
        box-shadow: 0 0 5px rgba(255,59,59,0.5);
    }
    50%{
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(255,59,59,0.9);
    }
    100%{
        opacity: 1;
        box-shadow: 0 0 5px rgba(255,59,59,0.5);
    }
}



@media (max-width: 991px){

/* Register Button Styles */
.register-float-btn1 {
  display: inline-block;
  padding: 17px 20px;
  background: #ff5a00; /* Orange color, you can change */
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;
}
}




.bottom-sticky-bar {
  position: fixed;
  bottom: -120px;
  left: 0;
  width: 100%;
  background: #342777;
  color: #fff;
  z-index: 9999;
  transition: bottom 0.4s ease;
}
.bottom-sticky-bar.show {
  bottom: 0;
}
body {
  padding-bottom: 98px; /* bottom sticky height */
}


.sticky-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-content h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff !important;
}

.left-content h4 span {
  color: #ffcc00;
}

.left-content p {
  margin: 6px 0 0;
  font-size: 14px;
}

.left-content p span {
  color: #ffcc00;
  font-weight: 600;
}

.right-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-text {
  font-size: 18px;
  font-weight: 600;
}

.price-text .old {
  text-decoration: line-through;
  color: #ddd;
  margin: 0 6px;
}

.price-text .new {
  color: #ffcc00;
  font-size: 26px;
  font-weight: 800;
}

.register-btn {
  background: #FF4667;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.register-btn:hover {
  background: #000;
  color: #fff;
}
.enrolled {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.avatars {
  display: flex;
}



.avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #3b3a6d; /* background color match */
  margin-left: -8px;
  background: #fff;
}

.avatars img:first-child {
  margin-left: 0;
}

.enroll-text {
  font-size: 14px;
  color: #ffcc00;
  font-weight: 600;
}
.site-footer{
    width: 100%;
    background-color: #0b1c2d;
    color: #ffffff;
    text-align: center;
    padding: 25px 15px;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer a{
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.site-footer a:hover{
    text-decoration: underline;
}


@media (max-width: 768px) {
  .sticky-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px; /* reduce gap, adjust as needed */
    padding: 12px 15px; /* optional: reduce inner padding */
  }

  .right-content {
    flex-direction: column;

    gap: 6px; /* reduce gap */
  }

  .register-btn {
    width: 100%;
    margin: 0; /* remove any margin */
  }

  body {
    padding-bottom: 140px; /* sticky height + safe space */
  }
}









.achievement-title {
  font-size: 36px;
  font-weight: 600;
  color: #191919;

}

.achievement-subtitle {
  max-width: 800px;
  margin: auto;
  color: #000000d2;
}

.achievement-card {
  background: #f5f6ff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  height: 100%;
}

.student-avatar {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  border: 4px solid #fff;
  overflow: hidden;
  margin-bottom: 10px;
}

.student-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-highlight span {
  font-size: 14px;
  font-weight: 700;
  color: #3b3a6d;
}

.rank-highlight h3 {
  font-size: 40px;
  font-weight: 800;
  color: #7a73e8;
  margin: 0;
}

.exam-label {
  font-size: 14px;
  color: #3b3a6d;
}

.student-name {
  font-weight: 700;
  font-size: 16px;
  color: #1f1f3d;
}

.course-label {
  font-size: 13px;
  color: #6b6b9b;
}



.feature-bar {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin: 50px auto;
  max-width: 1000px;
}

/* Feature Item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s;
}

/* Floating effect on hover */
.feature-item:hover {
  transform: translateY(-15px);
}

/* Icon background with blob style */
.icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffcc33, #ff6600);
  border-radius: 50% 50% 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.icon-bg i {
  font-size: 30px;
  color: #fff;
  transition: transform 0.4s;
}

/* Hover scaling for icon */
.feature-item:hover .icon-bg {
  transform: scale(1.2);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Hover icon pop */
.feature-item:hover .icon-bg i {
  transform: rotate(-15deg) scale(1.2);
}

/* Text */
.feature-item span {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  transition: color 0.3s;
}

.feature-item:hover span {
  color: #ff6600;
}

/* Mobile */
@media (max-width: 768px) {
  .feature-bar {
    flex-direction: column;
    gap: 25px;
  }
  .feature-item {
    width: 90%;
  }
}










.about-pwsat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #FEE0DE 0%, #E4F5FD 51.39%, #DDEDFF 100%);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  padding: 40px 50px;
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto;
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-pwsat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.about-left h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #333;
}

.about-point {
  display: flex;               /* makes icon and text inline */
  align-items: center;         /* vertically centers icon with text */
  gap: 15px;                   /* spacing between icon and text */
  margin-bottom: 18px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FF4667;
  display: flex;               /* enables centering inside */
  align-items: center;         /* vertical center of icon */
  justify-content: center;     /* horizontal center of icon */
  color: #fff;
  font-size: 22px;             /* icon size */
  flex-shrink: 0;
}

.about-point p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}

.about-right img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  animation: float 3s ease-in-out infinite;
}

.icon-circle i {
  font-size: 16px; /* slightly bigger than before */
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mobile */
@media (max-width: 768px) {
  .about-pwsat-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .about-left h2 {
    text-align: center;
  }
  .about-right img {
    margin-top: 20px;
  }
  .about-point {
    justify-content: center;
    text-align: left;
  }
}












.steps-box {
  padding: 80px 20px;
  background: #f9fafb;
}

.box-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
}

.box-wrap {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
}

.box-step {
  flex: 1;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.box-step:hover {
  transform: translateY(-10px);
}

/* Number instead of icon */
.box-no {
  width: 80px;
  height: 80px;
  margin: auto;
  background: #f1f5ff;
  color: #FF4667;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.box-step h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.box-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Active step highlight */
.box-step.active .box-no {
  background: #FF4667;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .box-wrap {
    flex-direction: column;
  }
}





/* Preview section */
.terms-preview {
  padding: 30px 20px;        /* section height increase */
  background: #f9fafb;
}

.terms-box {
  max-width: 1200px;
  margin: auto;

  padding: 55px 45px;
  border-radius: 20px;

  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.terms-preview h3{
  font-size: 18px;
}

.terms-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  max-height: 350px;         /* 👈 more visible content */
  position: relative;
}

/* Fade effect */
.terms-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45px;
  
}


.terms-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.view-all-btn {
  display: block;
  margin: 30px auto 0;
  background: #FF4667;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.view-all-btn a {
  text-decoration: none;
  color: white;
}

.view-all-btn:hover {
  background: #FF4667;
}
.terms-modal {
  border-radius: 18px;
  max-height: 80vh;          /* 👈 popup height */
  overflow: hidden;
}

.terms-modal .modal-body {
  max-height: 55vh;          /* 👈 content area height */
  overflow-y: auto;
}
.terms-modal .modal-body h3{
  font-size: 16px;
  margin-bottom: 12px;
}

/* Optional – smooth scrollbar */
.terms-modal .modal-body::-webkit-scrollbar {
  width: 6px;
}
.terms-modal .modal-body::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: 10px;
}


.terms-full-list {
  padding-left: 18px;
}

.terms-full-list li {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}


/* Table Styling inside Terms Modal */
.terms-table-container {
  margin-top: 20px;
  overflow-x: auto;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  color: #444;
}

.terms-table th, .terms-table td {
  padding: 12px 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.terms-table th {

  color: #000;
  font-weight: 600;
  border-radius: 8px;
}



.terms-table tr:hover {
  background-color: #e0e7ff;
}  



/* Section Styling */
.share-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: #f0f4f8;
  font-family: 'Poppins', sans-serif;
}

.share-content {
  text-align: center;
  background: #fff;
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  max-width: 700px;
}

.share-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.share-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
}

/* Icons Container */
.share-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Share Buttons */
.share-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover Effect */
.share-btn:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25), 0 0 20px rgba(255,255,255,0.1) inset;
  animation: bounce 0.4s;
}

/* Bounce Animation */
@keyframes bounce {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-10px) scale(1.2); }
  100% { transform: translateY(0) scale(1.15); }
}

/* Brand Colors */
.facebook  { background: #4267B2; }
.whatsapp  { background: #22C55E; }
.linkedin  { background: #0A66C2; }
.link      { background: #1F2937; } /* Dark slate */

/* ================= RESPONSIVE ================= */

/* Tablet (≤ 991px) */
@media (max-width: 991px) {
  .share-section {
    padding: 60px 15px;
  }

  .share-content {
    padding: 40px 30px;
    border-radius: 24px;
    max-width: 90%;
  }

  .share-content h2 {
    font-size: 28px;
  }

  .share-icons {
    gap: 20px;
  }

  .share-btn {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .share-content {
    padding: 35px 25px;
  }

  .share-content h2 {
    font-size: 24px;
  }

  .share-icons {
    gap: 18px;
  }

  .share-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  /* Reduce hover jump on mobile */
  .share-btn:hover {
    transform: scale(1.1);
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .share-content {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .share-content h2 {
    font-size: 22px;
  }

  .share-icons {
    gap: 14px;
    flex-wrap: wrap; /* icons wrap neatly */
  }

  .share-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}












.sat-section {
  padding: 50px 20px;
  background: #f9fafb;
  color: #333;
}

.sat-content {
  max-width: 1200px;
  margin: auto;
}

.sat-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.sat-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
}

.sat-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Table Styling */
.sat-table-container {
  overflow-x: auto;
  margin-top: 15px;
}

.sat-table {
  width: 100%;
  border-collapse: collapse;
}

.sat-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  vertical-align: top;
}


.sat-table td:first-child {
  font-weight: 600;
  width: 25%;
  background-color: #f3f4f6;
}





.information-section {
  background: #f7f8ff;
  padding: 60px 0;
 
}

.information-section h2 {
  color: #3b3a6d;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.info-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.info-card h5 {
  font-size: 20px;
  font-weight: 600;
  color: #3b3a6d;
  margin-top: 20px;
}

.info-card p {
  font-size: 14px;
  color: #7c7caa;
  margin-top: 10px;
}

.info-card a {
  text-decoration: none;
}

.info-card a.text-purple {
  color: #7e67ff;
}

.info-card a.text-primary {
  color: #0d4dc2;
}

@media (max-width: 768px) {
  .info-card img {
    max-height: 150px;
  }
  .information-section h2 {
    font-size: 28px;
  }
}


