.page-id-16 .testimonials,
.page-id-18 .testimonials {
    display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #fff;
}

.site-header {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Navigation */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 22px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  padding-bottom: 6px;
  position: relative;
}

/* Active menu */
.nav-menu li.active a {
  color: #1a4cff;
}

.nav-menu li.active a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1a4cff;
  left: 0;
  bottom: 0;
}

/* Login Button */
.login-btn {
  background: #ffc107;
  color: #000;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.login-btn:hover {
  background: #ffb300;
}

/* Mobile menu icon */
.mobile-menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #21f7b5;
  padding: 24px;
  transform: translateX(100%);
  transition: 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Mobile Header */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header img {
  height: 36px;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
}

/* Links */
.mobile-links {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mobile-links a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  margin-bottom: 18px;
}

.mobile-links a.active {
  color: #1a4cff;
  border-left: 3px solid #1a4cff;
  padding-left: 10px;
}

/* Bottom Section */
.mobile-bottom {
  background: #2f5be7;
  margin: 40px -24px -24px;
  padding: 30px 24px;
  color: #fff;
}

.mobile-bottom h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.mobile-bottom .login-btn {
  display: inline-block;
  margin-bottom: 20px;
}

.policy-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
}

.mobile-bottom p {
  font-size: 13px;
  margin-top: 20px;
}

/* Responsive rules */
@media (max-width: 992px) {

  .nav-menu,
  .header-btn {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
}

.site-footer {
  background: #2f5be7;
  color: #fff;
  padding: 60px 24px 30px;
}

/* TOP SECTION */
.footer-top {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-top h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.trial-btn {
  background: #ffc107;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.newsletter-title {
  font-size: 16px;
  margin-bottom: 12px;
}

.newsletter-box {
  display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  width: 320px;
}

.newsletter-box input {
  border: none;
  padding: 14px 18px;
  flex: 1;
  outline: none;
}

.newsletter-box button {
  background: #ffc107;
  border: none;
  width: 48px;
  font-size: 20px;
  cursor: pointer;
}

.more-info {
  display: block;
  margin: 10px 0 18px;
  color: #fff;
  font-size: 14px;
}

.store-buttons img {
  height: 44px;
  margin-right: 10px;
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

/* MAIN FOOTER */
.footer-main {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-brand .social-icons a img {
    margin: 0px;
    width: 40px;
}
.footer-brand .social-icons {
    display: flex;
}
.social-icons a {
  width: 36px;
  height: 36px;
  color: #2f5be7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  text-decoration: none;
  font-weight: 700;
}

.footer-links h4 {
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 15px;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

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

/* MOBILE */
@media (max-width: 768px) {
  .footer-main {
    flex-wrap: wrap;
    display: flex;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-top h2 {
    font-size: 24px;
  }

  .newsletter-box {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/**faq**/
.faq-section {
  padding: 80px 20px;
  background: #fff;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 8px;
}

.faq-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  text-align: left !important;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  max-width: 1050px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  content: "−";
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 30px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 15px;
  }
}

/** testimonial section**/
.testimonials {
  /* Light background */
  color: #000;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.label {
  letter-spacing: 2px;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.testimonials h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #000;
  margin-bottom: 60px;
}

/* SLIDER CONTAINER */
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: auto;
  position: relative;
  gap: 20px;
}

.slider-mask {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  /* Space for shadows */
}

.slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: max-content;
  /* Allow flex items to size naturally */
}

/* CARDS */
.card {
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 40px;
  flex-shrink: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
}

.card.small {
  width: 350px;
  height: 500px;
  background: #F7F8F9;
}

.card.big {
  width: 400px;
  height: 580px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  /* Reset padding for video card */
}

/* Card Content Styles */
.card-header {
  margin-bottom: 24px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.quote {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* SIGNATURES */
.signature {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: #2f5be7;
  /* Blue signature color */
  margin: 0 0 5px;
  font-weight: 400;
}

.signature.text-white {
  color: #fff;
}

.university {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
  display: block;
  font-style: italic;
}

.university.text-white {
  color: rgba(255, 255, 255, 0.8);
}

/* VIDEO CARD SPECIFIC */
.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-radius: 20px;
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.play-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  padding-left: 4px;
  /* Optical adjustment */
}

/* NAV BUTTONS */
.nav {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav:hover {
  color: #000;
}

/* MOBILE */
@media (max-width: 900px) {
  .slider {
    gap: 15px;
  }

  .card.small {
    width: 300px;
  }

  .card.big {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 20px;
  }

  h2 {
    font-size: 28px;
  }

  .slider-container {
    flex-direction: column;
  }

  .slider-mask {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
  }

  .slider {
    gap: 20px;
    width: auto;
    /* Let it scroll */
  }

  .card {
    scroll-snap-align: center;
    width: 85vw !important;
    /* Full width on mobile */
    height: auto;
    min-height: 450px;
  }

  .nav {
    display: none;
  }
}

/* collab section*/
.collaborations {
  background: #fff;
  padding: 15px 20px;
  text-align: center;
}

.collaborations h2 {
  font-size: 42px;
  margin-bottom: 50px;
  color: #111;
}

/* LOGO ROW */
.collab-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: nowrap;
  /* IMPORTANT: stays horizontal */
}

/* LOGOS */
.collab-logos img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* MOBILE */
@media (max-width: 768px) {
  .collaborations {
    padding: 50px 15px;
  }

  .collaborations h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .collab-logos {
    gap: 25px;
    /* reduce spacing */
  }

  .collab-logos img {
    max-height: 40px;
    /* scale down logos */
  }
}

/*prep tools*/
.study-tools {
  background: #ffffff;
  padding: 80px 20px;
}

.study-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #F7F8F9;
  border-radius: 30px;
  padding: 70px 50px;
  text-align: center;
}

.study-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 35px;
}

.cta-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 60px;
}

/* GRID */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.tool-card {
  text-align: center;
  border: 1px solid #E5E5E5;
  padding-top: 16px;
  border-radius: 13px;
}

.tool-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.tool-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

/* IMAGE CARD */
.tool-image {
  background: #f7f8f9;
  border-radius: 18px;
}

.tool-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .study-wrapper {
    padding: 50px 20px;
  }

  .study-wrapper h2 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 15px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    /* VERTICAL STACK */
  }

  .tool-card {
    text-align: center;
  }
}

/*our services*/
.our-services {
  padding: 80px 0;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.container-services {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 30px;
}

.header-text {
  max-width: 600px;
}

.header-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #000;
  margin-bottom: 12px;
}

.header-text h2 span {
  color: #888;
  /* Gray for "Our" */
}

.header-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.services-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.our-services .btn {
  padding: 12px 24px;
  border-radius: 8px;
  /* Slightly rounded, not pill */
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: opacity 0.3s;
}

.our-services .btn:hover {
  opacity: 0.9;
}

.btn.primary {
  background: #ffd700;
  /* Yellow */
  color: #000;
  border-radius: 30px;
}

.btn.secondary {
  background: #eef4ff;
  /* Light Blue */
  color: #3b82f6;
  /* Blue text */
  border-radius: 30px;
}

/* SERVICE GRID STYLES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.service-col {
  border-right: 1px solid #e5e7eb;
}

.service-col:last-child {
  border-right: none;
}

.service-col h3 {
  background: #f9fafb;
  padding: 20px 24px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  font-style: italic;
  border-bottom: 1px solid #e5e7eb;
}

.service-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-col ul li {
  padding: 20px 24px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #e5e7eb;
}

.service-col ul li:last-child {
  border-bottom: none;
}

/* MOBILE SERVICES */
@media (max-width: 768px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
    /* Stack vertically! */
    border-radius: 12px;
  }

  .service-col {
    border-right: none;
    border-bottom: 8px solid #f3f4f6;
    /* Separator between stacks */
  }

  .service-col:last-child {
    border-bottom: none;
  }
}

/*bridge gap sectioon*/
.bridges-gap {
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
}

.gap-header {
  margin-bottom: 50px;
}

.gap-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.gap-header h2 span {
  color: #888;
  /* Gray for "How" */
}

.gap-header p {
  color: #444;
  font-size: 16px;
}

.comparison-table-wrapper {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  /* Verified from image */
  overflow: hidden;
}

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

.comparison-table th,
.comparison-table td {
  padding: 20px;
  vertical-align: middle;
  border-bottom: 1px solid #e5e7eb;
}

/* Header Row */
.comparison-table thead tr {
  background: #f9fafb;
}

.comparison-table th {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  color: #111;
}

.comparison-table th.feature-col {
  text-align: left;
  width: 40%;
}

.comparison-table td.feature-name {
  font-weight: 700;
  font-style: italic;
  color: #111;
  font-size: 16px;
  padding-left: 24px;
}

.comparison-table td.yes,
.comparison-table td.no {
  text-align: center;
}

/* Remove last border */
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Icons */
.yes svg,
.no svg {
  display: block;
  margin: auto;
}

/* MOBILE GAP TABLE - COMPACT */
@media (max-width: 768px) {
  .bridges-gap {
    padding: 40px 0;
  }

  .gap-header h2 {
    font-size: 28px;
  }

  .comparison-table-wrapper {
    border-radius: 12px;
    /* removed overflow-x to avoid slide if possible, fitting content */
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 6px;
    /* Reduced padding */
    font-size: 13px;
  }

  .comparison-table th.feature-col {
    width: 40%;
    /* Let feature take space */
  }

  .comparison-table td.feature-name {
    font-size: 12px;
    padding-left: 10px;
    line-height: 1.3;
  }

  /* Scale down icons */
  .yes svg,
  .no svg {
    width: 18px;
    height: 18px;
  }
}

/*status section*/
/* ---------- Stats Section ---------- */
.stats-section {
  padding: 60px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, #1dffb3, #2cff9a);
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 20px;
  text-align: center;
}

.stat-box h3 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 15px;
  color: #003b2a;
}

/* ---------- Problem Section ---------- */
.problem-section {
  background: #f7f7f7;
  padding: 80px 20px;
}

.problem-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

/* Left */
.problem-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.problem-content h2 span {
  color: #7a7a7a;
  font-weight: 600;
}

.problem-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  font-size: 15px;
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}

.problem-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 22px;
}

/* Right cards */
.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doctor-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.doctor-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.doctor-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.doctor-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.doctor-card a {
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

  .problem-container {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

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

/*trusted by students*/
.trusted-section {
  padding: 60px 20px;
  background: #ffffff;
}

.trusted-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 40px;
}

/* Text */
.trusted-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.trusted-text p {
  font-size: 16px;
  color: #555;
}

/* Logos */
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trusted-logos img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .trusted-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .trusted-text {
    text-align: left;
  }

  .trusted-logos {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .trusted-logos img {
    scroll-snap-align: center;
    flex: 0 0 auto;
    max-height: 42px;
  }

  /* Hide scrollbar */
  .trusted-logos::-webkit-scrollbar {
    display: none;
  }
}

.hero-slider {
  width: 100%;
  padding: 40px 20px;
}

/* Track */
.hero-slider .hero-slider-track {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  max-width: 1400px;
  height: 520px;
  margin: auto;
}

/* Slides */
.hero-slider .hero-slide.active {
    border-radius: 24px;
}
.hero-slider .hero-slide {
  position: absolute !important;
  inset: 0;
  background-image: url("images/Frame 13 (1).png");
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
      display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.9s ease, opacity 0.9s ease;
}

.hero-slider .hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slider .hero-slide.prev-slide {
  transform: translateX(-100%);
}

/* Content */
.hero-slider .hero-content {
  color: #fff;
  max-width: 900px;
  padding: 40px;
}

.hero-slider .hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-slider .hero-content h1 span {
  color: #34f5a3;
}

.hero-slider .hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-slider .hero-content button {
  background: #facc15;
  border: none;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

/* Navigation */
.hero-slider .hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-slider .hero-prev {
  left: -19px;
}

.hero-slider .hero-next {
  right: -19px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider .hero-slider-track {
    height: 380px;
  }

  .hero-slider .hero-content h1 {
    font-size: 30px;
  }

  .hero-slider .hero-content p {
    font-size: 16px;
  }

  .hero-slider .hero-content button {
    padding: 12px 26px;
    font-size: 15px;
  }
}

/** MCCQE-1 css**/
/*banner*/
.mccq-hero {
  background: #f8fafc;
  padding: 50px 20px;
}

.mccq-hero-inner {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fff;
  border-radius: 28px;
  padding: 50px;
}

/* Left content */
.mccq-hero-tag {
  font-size: 14px;
  color: #6b7280;
  display: block;
  margin-bottom: 14px;
}

.mccq-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

.mccq-hero-content h1 span {
  color: #2563eb;
}

.mccq-hero-content p {
  font-size: 18px;
  color: #374151;
  margin-bottom: 30px;
}

.mccq-hero-btn {
  display: inline-block;
  background: #facc15;
  color: #000;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* Right media */
.mccq-hero-media {
  position: relative;
  flex-shrink: 0;
}

.mccq-hero-media img {
  width: 420px;
  border-radius: 20px;
}

.mccq-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mccq-hero-inner {
    flex-direction: column;
    padding: 30px 20px;
  }

  .mccq-hero-content h1 {
    font-size: 28px;
  }

  .mccq-hero-media img {
    width: 100%;
  }
}

/*real challanges*/
.mccq-challenges {
  padding: 70px 20px;
  text-align: center;
}

.mccq-challenges h2 {
  font-size: 36px;
  margin-bottom: 50px;
}

.mccq-challenges h2 span {
  color: #9ca3af;
  font-weight: 500;
}

.mccq-challenge-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.challenge-card p {
  text-align: left;
}

.challenge-card {
  background: #f9fafb;
  border-radius: 20px;
  padding: 30px 20px;
  font-size: 16px;
  text-align: left;
}

.challenge-card img {
  margin-bottom: 8px;
  width: 40px;
}

@media (max-width: 768px) {
  .mccq-challenges h2 {
    font-size: 24px;
  }

  .mccq-challenge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .challenge-card {
    padding: 20px 14px;
    font-size: 14px;
  }
}

/* MCCQ Support Section */
.mccq-support {
  padding: 80px 20px;
  background: #fff;
}

/* Header Container (Top) */
.mccq-support-header-container {
  max-width: 1300px;
  margin: 0 auto 50px auto;
}

.mccq-support-header-container h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000;
}

.mccq-support-header-container h2 span {
  color: #111;
}

.mccq-support-intro {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 700px;
}

.mccq-support-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
}

/* LEFT: Image Wrapper (Sticky) */
.mccq-support-image {
  position: sticky;
  top: 40px;
  /* Stick to top */
  height: fit-content;
}

.bundle-card.highlight {
    color: #ffffff !important;
}
.mccq-support-image img {
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 592px;
}

/* RIGHT: Content */
/* RIGHT: Content */
.mccq-support-content {
  padding-top: 0;
}

/* Support Blocks */
.support-block {
  margin-bottom: 60px;
}

.support-block h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.support-desc {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 30px;
}

.solutions-header {
  font-size: 18px;
  color: #6b7280;
  /* Gray header */
  font-weight: 500;
  margin-bottom: 15px;
}

/* Solution Items */
.solution-item {
  margin-bottom: 30px;
}

.solution-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.solution-item p.small {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 15px;
}

/* Numbered List Styling */
.numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.numbered-list li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 10px;
  display: flex;
  /* alignment */
  align-items: flex-start;
  line-height: 1.5;
}

.num {
  font-family: monospace, sans-serif;
  /* Monospace for alignment */
  color: #111;
  font-weight: 500;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Button */
.mccq-support-btn {
  display: inline-block;
  background: #facc15;
  color: #000;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mccq-support-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mccq-support-image {
    position: relative;
    /* Unstick on mobile */
    top: 0;
    max-width: 300px;
    margin: 0 auto;
  }

  .mccq-support-content h2 {
    font-size: 30px;
  }

  .mccq-support-intro {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

/*subscribe-plans*/
.pricing-section {
  padding: 80px 20px;
}

.pricing-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* MAIN BOX */
.pricing-box {
  max-width: 1350px;
  margin: auto;
  background: #f9fafb;
  border-radius: 28px;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.pricing-left h3 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.pricing-left span {
  color: #9ca3af;
  font-weight: 500;
}

.pricing-left p {
  font-size: 16px;
  color: #6b7280;
}

/* RIGHT */
.pricing-right {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* CARDS ROW */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: #ffffff;
  padding: 28px 30px;
  border-radius: 22px;
}

.duration {
  font-size: 15px;
  color: #6b7280;
}

.pricing-card h4 {
  font-size: 30px;
  color: #2563eb;
  margin: 6px 0;
}

.note {
  font-size: 16px;
  color: #111;
}

/* BUTTON ROW */
.pricing-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.btn-outline {
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid #2563eb;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  padding: 14px 46px;
  border-radius: 999px;
  background: #facc15;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pricing-box {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .pricing-left {
    text-align: left;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-actions {
    flex-direction: column;
  }
}

.pricing-actions a {
  text-align: center;
}

@media (min-width: 768px) {
  .pricing-actions {
    padding-left: 100px;
  }

  .pricing-actions {
    justify-content: left;
  }

  .pricing-left {
    padding-bottom: 63px;
  }
}

/*bundel section*/
.bundle-section {
  padding: 80px 20px;
  background: #ffffff;
}

.bundle-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #2c5fe0;
  border-radius: 30px;
  padding: 60px 50px;
  text-align: center;
  color: #fff;
}

.bundle-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bundle-subtitle {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

.bundle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bundle-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  position: relative;
}

.bundle-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.bundle-desc {
  font-size: 14px;
  margin-bottom: 20px;
}

.bundle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.bundle-tags span {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
}

.bundle-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}

.bundle-price strong {
  font-size: 18px;
}

.bundle-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 10px 0;
}

.highlight {
  background: rgba(255, 255, 255, 0.22);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffcc00;
  color: #000;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 12px;
}

/* Buttons */
.bundle-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.btn-outline {
  padding: 14px 28px;
  border-radius: 30px;
  background: #eef2ff;
  color: #2c5fe0;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  padding: 14px 34px;
  border-radius: 30px;
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* ===============================
   Responsive – Tablets
================================ */
@media (max-width: 1024px) {
  .bundle-wrapper {
    padding: 50px 30px;
  }

  .bundle-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
     Responsive – Mobile
  ================================ */
@media (max-width: 767px) {
  .bundle-wrapper {
    padding: 40px 20px;
    border-radius: 22px;
  }

  .bundle-title {
    font-size: 28px;
  }

  .bundle-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
  }

  /* 🔑 Single card per row */
  .bundle-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bundle-card {
    padding: 24px;
  }

  .bundle-card h3 {
    font-size: 18px;
  }

  .bundle-desc {
    font-size: 13px;
  }

  .bundle-price strong {
    font-size: 17px;
  }

  /* Buttons stacked & centered */
  .bundle-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
    align-items: center;

  }

  .btn-outline,
  .btn-primary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/*home banner*/
/* ===============================
   NAC Hero Banner
================================ */
.nac-hero {
  background: #f8f9fb;
  padding: 80px 20px;
}

.nac-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */
.nac-eyebrow {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 14px;
}

/* Title */
.nac-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #111;
}

.nac-title span {
  color: #2b5cff;
}

/* Subtitle */
.nac-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}

/* CTA */
.nac-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  margin-bottom: 40px;
}

/* Video Card */
.nac-video-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.nac-video-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* Play Button */
.nac-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===============================
     Responsive
  ================================ */
@media (max-width: 768px) {
  .nac-title {
    font-size: 30px;
  }

  .nac-subtitle {
    font-size: 14px;
  }

  .nac-video-card {
    border-radius: 14px;
  }
}

/*real challanges*/
.nac-challenges {
  padding: 80px 20px;
  background: #ffffff;
}

.nac-container {
  max-width: 1200px;
  margin: 0 auto;
}

.nac-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #111;
}

.nac-title span {
  color: #999;
  font-weight: 700;
}

.nac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.nac-card {
  text-align: left;
  padding: 17px;
}

.nac-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.nac-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.nac-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nac-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .nac-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nac-card {
    text-align: center;
  }

  .nac-icon {
    font-size: 32px;
  }
}

/*support sucess*/
.success-support {
  padding: 90px 20px;
  background: #ffffff;
}

.success-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.success-left h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.success-left h2 span {
  color: #9b9b9b;
}

.success-left p {
  margin: 20px 0 30px;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

.primary-btn {
  display: inline-block;
  padding: 14px 26px;
  background: #ffcc00;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* CENTER */
.success-center {
    max-height: 560px;
}
.success-center img {
    max-width: 100%;
    display: block;
    margin: auto;
    height: 469px !important;
    width: 281px !important;
}

/* RIGHT */
.success-right h3 {
  font-size: 22px;
  font-weight: 700;
}

.success-right p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 12px 0 20px;
}

.solution .label {
  font-size: 13px;
  color: #888;
}

.solution h4 {
  font-size: 18px;
  margin: 6px 0 10px;
}

.solution ol {
  padding-left: 18px;
}

.solution ol li {
  font-size: 14px;
  margin-bottom: 8px;
}

/* STEPS */
/* STEP PROGRESS WRAPPER */
.step-progress {
  margin-top: 40px;
  position: relative;
}

/* BASE LINE */
.progress-line {
  height: 4px;
  background: #e6e6e6;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* BLUE FILLED PART (01 → 02) */
.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33%;
  background: #2f5eff;
  border-radius: 4px;
}

/* NUMBERS */
.step-numbers {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.step {
  font-weight: 600;
  color: #9b9b9b;
}

.step.active {
  color: #2f5eff;
}

/* MOBILE */
@media (max-width: 900px) {
  .step-progress {
    max-width: 300px;
    margin: 30px auto 0;
  }

  .success-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .success-left h2 {
    font-size: 30px;
  }

  .success-right {
    text-align: left;
  }

  .steps {
    justify-content: center;
  }
}

/*subscription plan*/
/* SECTION */
.subscription-section {
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* MAIN TITLE */
.main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* CONTAINER */
.subscription-box {
  max-width: 1100px;
  margin: 0 auto;
  background: #f7f7f7;
  border-radius: 24px;
  padding: 50px 30px;
}

/* SUB TITLE */
.sub-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-title span {
  color: #8a8a8a;
  font-weight: 600;
}

/* DESCRIPTION */
.sub-desc {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1.6;
}

/* PLANS */
.plans-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

/* CARD */
.plan-card {
  background: #fff;
  border-radius: 20px;
  width: 360px;
  text-align: left;
  padding-top: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
}

/* TEXT */
.plan-duration {
  color: #777;
  font-size: 16px;
  margin-bottom: 10px;
}

.plan-price {
  font-size: 26px;
  font-weight: 700;
  color: #2f5eff;
  margin-bottom: 15px;
}

.plan-note {
  font-size: 18px;
  color: #000;
}

/* BUTTONS */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 14px 28px;
  border: 2px solid #2f5eff;
  border-radius: 50px;
  color: #2f5eff;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  padding: 14px 40px;
  background: #ffcc00;
  border-radius: 50px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }

  .sub-title {
    font-size: 22px;
  }

  .plans-row {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: 360px;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/*bundle section*/
.bundle-section-1 {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.bundle-section-1 .bundle-wrapper {
  background: #2f5fe3;
  border-radius: 28px;
  padding: 50px;
  display: flex;
  gap: 40px;
  color: #fff;
  max-width: 1300px;
  margin: auto;
}

/* LEFT */
.bundle-section-1 .bundle-left {
  flex: 1;
}

.bundle-section-1 .bundle-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.bundle-section-1 .bundle-left p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 380px;
}

.bundle-section-1 .bundle-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 260px;
}

.bundle-section-1 .btn-outline-white {
  background: #fff;
  color: #2f5fe3;
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.bundle-section-1 .btn-yellow {
  background: #ffcc00;
  color: #000;
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

/* RIGHT */
.bundle-section-1 .bundle-cards {
  flex: 2;
  display: flex;
  gap: 24px;
}

/* CARD */
.bundle-section-1 .bundle-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  flex: 1;
  backdrop-filter: blur(10px);
}

.bundle-section-1 .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bundle-section-1 .bundle-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.bundle-section-1 .badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.bundle-section-1 .card-sub {
  font-size: 14px;
  margin-bottom: 18px;
}

/* PILLS */
.bundle-section-1 .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.bundle-section-1 .pill-row span {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
}

/* PRICE */
.bundle-section-1 .price-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 14px;
}

.bundle-section-1 .price-row strong {
  font-size: 16px;
}

.bundle-section-1 .price-row p {
  font-size: 13px;
  opacity: 0.9;
}

.bundle-section-1 .price {
  font-size: 18px;
  font-weight: 700;
}

.bundle-section-1 .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 18px 0;
}

/* 📱 MOBILE */
@media (max-width: 900px) {
  .bundle-section-1 .bundle-wrapper {
    flex-direction: column;
  }

  .bundle-section-1 .bundle-cards {
    flex-direction: column;
  }

  .bundle-section-1 .bundle-left p {
    max-width: 100%;
  }

  .bundle-section-1 .bundle-actions {
    max-width: 100%;
  }
}

/*banner*/
.story-section {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.story-wrapper {
  background: linear-gradient(to bottom,
      #f9f9f9 0%,
      #f9f9f9 70%,
      #ffffff 100%);
  border-radius: 28px;
  padding: 50px;
  max-width: 1300px;
  margin: auto;
}

/* TEXT */
.story-label {
  font-size: 14px;
  color: #444;
}

.story-content h1 {
    font-size: 62px;
    line-height: 1.25;
    margin: 14px 0;
    font-weight: 800;
    color: #000;
    width: 74%;
}

.highlight {
  color: #2f5fe3;
}

.story-subtext {
  font-size: 16px;
  color: #333;
  margin-bottom: 24px;
}

.story-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
}

/* IMAGE */
.story-media {
  margin-top: 40px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.story-media img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .story-wrapper {
    padding: 30px 20px;
  }

  .story-content h1 {
    font-size: 28px;
  }

  .story-btn {
    padding: 12px 22px;
  }

  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

/*real challanges*/
.challenge-section {
  padding: 60px 20px;
}

.challenge-box {
  max-width: 1200px;
  margin: auto;
  background: #f9f9f9;
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.challenge-left h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.challenge-left h2 span {
  color: #8a8a8a;
  font-weight: 600;
}

.challenge-left p {
  font-size: 16px;
  color: #555;
  max-width: 520px;
}

.challenge-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.challenge-right li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  margin-bottom: 18px;
  color: #111;
}

.challenge-right .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/*support sucess*/
.support-section {
  padding: 80px 20px;
}

.support-wrapper {
  max-width: 1200px;
  margin: auto;
}

.support-header h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.support-header h2 span {
  color: #8a8a8a;
}

.support-header p {
  max-width: 620px;
  color: #555;
  margin-bottom: 50px;
}

.support-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.phone-wrap img {
  height: 542px;
}

.support-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
p.muted-p {
    border-block: 2px solid #f2f2f2;
    padding-block: 11px;
}
.support-text p {
  color: #121212;;
  margin-bottom: 20px;
}

.solution-block strong {
  font-size: 20px;
  color: #777;
}
.solution-block ul {
    list-style-type: auto;
}

.solution-block h4 {
  margin: 8px 0 12px;
  font-size: 18px;
}

.solution-block ul {
  padding-left: 18px;
}

.solution-block li {
  margin-bottom: 8px;
}

.muted-questions p {
  color: #888;
  font-size: 26px;
  margin-top: 22px;
}

.cta-btn {
  display: inline-block;
  margin-top: 28px;
  background: #ffcc00;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .challenge-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .challenge-left h2 {
    font-size: 28px;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phone-wrap {
    text-align: center;
  }

  .support-header h2 {
    font-size: 30px;
  }
}

/*subscription plan*/
.subscription-section-1 {
  background: #ffffff;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.subscription-section-1 .plan-card {
  width: 1200px;
  margin: 0 auto;
  background: #f7f7f7;
  border-radius: 28px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.subscription-section-1 .plan-content {
  flex: 1;
}

.subscription-section-1 .plan-label {
  font-size: 22px;
  color: #9b9b9b;
  font-weight: 600;
}

.subscription-section-1 .plan-content h3 {
  font-size: 42px;
  margin: 10px 0 20px;
}

.subscription-section-1 .plan-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.subscription-section-1 .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.subscription-section-1 .plan-features li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  font-size: 16px;
}

.subscription-section-1 .plan-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: bold;
}

.subscription-section-1 .plan-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.subscription-section-1 .btn-outline {
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid #2563eb;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  background: #fff;
}

.subscription-section-1 .btn-primary {
  padding: 14px 26px;
  border-radius: 999px;
  background: #facc15;
  color: #000;
  text-decoration: none;
  font-weight: 700;
}

.subscription-section-1 .plan-image {
  flex: 0.9;
  text-align: right;
}

.subscription-section-1 .plan-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .subscription-section-1 .plan-card {
    flex-direction: column;
    padding: 40px 24px;
    gap: 40px;
  }

  .subscription-section-1 .plan-content h3 {
    font-size: 32px;
  }

  .subscription-section-1 .section-title {
    font-size: 28px;
  }

  .subscription-section-1 .plan-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .subscription-section-1 .btn-outline,
  .subscription-section-1 .btn-primary {
    width: 100%;
    text-align: center;
  }

  .subscription-section-1 .plan-image {
    text-align: center;
  }
}

/* HERO */
.pricing-hero-2 {
    margin: 30px;
    padding: 80px 40px;
    border-radius: 22px;
    background-image: url("images/Frame 13 (1).png");
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing-hero-content {
  position: relative;
  z-index: 2;
}

.pricing-hero-2 .hero-tag {
  font-size: 15px;
  opacity: 0.9;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.pricing-hero-2 h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 0 0 25px;
  font-weight: 800;
}

.pricing-hero-2 h1 .highlight {
  color: #3affbd;
  /* Lighter Mint/Green for 'Perfect Plan' */
}

.pricing-hero-2 p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.95;
  line-height: 1.6;
}

/* Response adjustments */
@media (max-width: 768px) {
  .pricing-hero-2 h1 {
    font-size: 32px;
  }
}

/* PRICING */
.pricing-section-2 {
  padding: 80px 30px;
}

.pricing-section-2 .pricing-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.pricing-section-2 .pricing-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-section-2 .pricing-card {
  /* background: #f8f8f8; */
  border-radius: 20px;
  padding: 30px;
  background-image: url("images/ChatGPT Image Jan 12, 2026, 07_50_01 PM.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.pricing-section-2 .pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.pricing-section-2 .card-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0 25px;
}

.pricing-section-2 .card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-section-2 .btn-yellow {
  background: #facc15;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}

.pricing-section-2 .trial-link {
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  align-self: center;
}

.pricing-section-2 .price-list {
  margin-top: 25px;
}

.pricing-section-2 .price-list p {
  margin: 14px 0 2px;
}

.pricing-section-2 .price-list span {
  font-size: 13px;
  color: #777;
}

.pricing-section-2 .learn-more {
  display: inline-block;
  margin-top: 22px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pricing-section-2 .pricing-hero {
    padding: 50px 20px;
    margin: 15px;
  }

  .pricing-section-2 .pricing-hero h1 {
    font-size: 28px;
  }

  .pricing-section-2 .pricing-section {
    padding: 50px 20px;
  }

  .pricing-section-2 .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section-2 .pricing-card {
    padding: 25px;
  }

  .pricing-section-2 .card-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-section-2 .btn-yellow {
    width: 100%;
    text-align: center;
  }
}

/*bundel section*/
.bundle-plans-section {
  padding: 70px 30px;
  background: #2d5fe0;
  border-radius: 24px;
  color: #fff;
  margin: 40px;
}

.bundle-container {
  max-width: 1200px;
  margin: auto;
}

.bundle-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.bundle-left h2 {
  font-size: 32px;
  font-weight: 800;
}

.bundle-left p {
  margin: 15px 0 25px;
  line-height: 1.6;
  opacity: 0.95;
}

.bundle-buttons {
  display: flex;
  gap: 15px;
}

.bundle-btn-yellow {
  background: #facc15;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  cursor: pointer;
}

.bundle-btn-outline {
  background: #fff;
  color: #2563eb;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  cursor: pointer;
}

.bundle-right {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
}

/* CARDS */
.bundle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.bundle-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 25px;
  position: relative;
}

.bundle-card h3 {
  font-size: 18px;
  font-weight: 700;
}

.bundle-sub {
  font-size: 13px;
  margin: 10px 0 15px;
  opacity: 0.9;
}

.bundle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.bundle-tags span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.bundle-price {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 15px;
  margin-top: 15px;
}

.bundle-price span {
  font-size: 12px;
  opacity: 0.85;
}

.bundle-price b {
  font-size: 18px;
}

/* BEST SELLER */
.bundle-card.featured {
  background: rgba(255, 255, 255, 0.18);
}

.best-seller {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #facc15;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .bundle-plans-section {
    margin: 20px;
    padding: 50px 20px;
  }

  .bundle-top {
    grid-template-columns: 1fr;
  }

  .bundle-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .bundle-btn-yellow,
  .bundle-btn-outline {
    width: 100%;
    text-align: center;
  }

  .bundle-cards {
    grid-template-columns: 1fr;
  }
}

/* mccq built */
.mccq-why-section {
  padding: 80px 20px 0px 20px;
  background: #ffffff;
}

.mccq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Header (Top) */
.mccq-section-header {
  margin-bottom: 50px;
  max-width: 800px;
}

.mccq-section-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #000;
}

.mccq-section-header h2 span {
  color: #8b8b8b;
  font-weight: 700;
}

.mccq-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 0;
}

/* Grid Layout */
.mccq-block-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* Image Left, List Right */
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.mccq-block-content.reverse-layout {
  grid-template-columns: 1.1fr 0.9fr;
  /* List Left, Image Right */
}

/* Image */
.mccq-image img {
    width: 399px;
    border-radius: 32px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 328px;
}

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

.mccq-list li {
  margin-bottom: 24px;
}

.mccq-list strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.mccq-list span {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mccq-why-section {
    padding: 60px 20px;
  }

  .mccq-block-content,
  .mccq-block-content.reverse-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .mccq-section-header h2 {
    font-size: 30px;
  }
}

/* FACES SECTION */
/* ===============================
   FACES SECTION
================================ */
.mccq-faces-section {
    padding: 100px 20px;
    background: #ffffff;
  }
  
  .mccq-faces-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .mccq-faces-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #000;
  }
  
  .mccq-faces-title span {
    color: #8b8b8b;
  }
  
  /* GRID */
  .mccq-faces-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 40px;
  }
  
  /* COMMON CARD */
  .mccq-face-card {
    background: #f9fafb;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
  }
  .mccq-face-card.hover-card {
    height: 552px;
}
  /* ===============================
   LEFT CARD – FINAL IMAGE MATCH
================================ */
.mccq-face-card.large {
    display: grid;
    grid-template-columns: 58% 42%;
    background: #f7f7f7;
    border-radius: 32px;
    overflow: hidden;
    height: 552px;
  }
  
  /* CONTENT */
  .mccq-face-content {
    padding: 46px 40px 36px;
    display: flex;
    flex-direction: column;
  }
  
  /* DESCRIPTION TEXT */
  .mccq-face-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #2e2e2e;
    margin-bottom: 16px;
  }
  
  /* PUSH FOOTER DOWN */
  .mccq-face-content p:last-of-type {
    margin-bottom: 28px;
  }
  
  /* LINKEDIN ICON */
  .mccq-linkedin {
    width: 30px;
    height: 30px;
    background: #e39b2f;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  
  /* SIGNATURE */
  .mccq-signature {
    font-family: 'Caveat', cursive;
    font-size: 34px;
    color: #2563eb;
    margin-bottom: 6px;
    text-align: end;

  }
  
  /* ROLE */
  .mccq-role {
    font-size: 13px;
    color: #8c8c8c;
    font-style: italic;
    line-height: 1.45;
    max-width: 90%;
    text-align: end;
  }
  
  /* IMAGE */
  .mccq-face-card.large .mccq-face-image {
    height: 100%;
  }
  
  .mccq-face-card.large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
  }
  
  
  
  /* ===============================
     RIGHT CARD (FIXED)
  ================================ */
  .hover-card {
    cursor: pointer;
  }
  
  .hover-card img {
    filter: grayscale(100%);
    width: -webkit-fill-available;
  }
  
  /* Overlay */
  .mccq-hover-overlay {
    position: absolute;
    inset: 0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.05)
    );
    transition: background 0.4s ease;
  }
  
  /* Always visible */
  .mccq-hover-basic h3 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
  }
  
  .mccq-hover-short {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
  }
  
  /* Hidden content */
  .mccq-hover-text {
    max-height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.45s ease;
  }
  
  .mccq-hover-text p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
  }
  
  /* Hover animation */
  .hover-card:hover .mccq-hover-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.9),
      rgba(0,0,0,0.6)
    );
  }
  
  .hover-card:hover .mccq-hover-text {
    max-height: 220px;
    transform: translateY(0);
  }
  .faces-mobile {
    display: none;
  }
  
  /* ===============================
     RESPONSIVE
  ================================ */
  @media (max-width: 900px) {
    .mccq-faces-title {
        margin-bottom: 0;
    }
    section.mccq-faces-section {
        padding-bottom: 40px;
    }

.mccq-faces-grid {
    display: none;
}
    .mccq-faces-grid,
    .mccq-face-card.large {
      grid-template-columns: 1fr;
    }
  
    .hover-card .mccq-hover-text {
      max-height: none;
      transform: none;
    }

  .mccq-face-card.large .mccq-face-image {
    height: 320px;
  }

  .mccq-face-content {
    padding: 32px 26px;
  }
  .faces-mobile {
    padding: 20px;
   display: block;
  }
  
  .face-card {
    background: #F7F8F9;
    border-radius: 24px;
    padding: 22px 18px 26px;
    margin-bottom: 24px;
  }
  
  .face-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
  }
  
  .face-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 16px;
  }
  
  .linkedin-icon img {
    width: 22px;
    margin-bottom: 12px;
  }
  
  .face-name {
    font-family: 'Pacifico', cursive; /* handwritten look */
    font-size: 20px;
    color: #1a4cff;
    margin-bottom: 6px;
  }
  
  .face-role {
    font-size: 13.5px;
    line-height: 1.5;
    color: #777;
  }
  
}
  



/*real learner*/
.learners-section {
  padding: 80px 20px;
  background: #ffffff;
}

.learners-section .learners-container {
  max-width: 1200px;
  margin: auto;
  background: #f7f7f7;
  border-radius: 32px;
  padding: 60px 50px;
  text-align: center;
}

.learners-section .learners-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.learners-section .learners-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Grid */
.learners-section .learners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.learners-section .learners-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  text-align: left;
}

/* Icon */
.learners-section .learners-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

/* Card Title */
.learners-section .learners-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

/* Card Text */
.learners-section .learners-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 1024px) {
  .learners-section .learners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .learners-section .learners-container {
    padding: 40px 20px;
  }

  .learners-section .learners-title {
    font-size: 26px;
  }

  .learners-section .learners-grid {
    grid-template-columns: 1fr;
  }
}
/*contact*/
.contact-section {
    background: #f7f7f7;
    padding: 80px 20px;
  }
  
  .contact-wrapper {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    display: flex;
    gap: 50px;
  }
  
  .contact-left {
    flex: 1;
  }
  
  .contact-left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .contact-left h2 span {
    color: #777;
  }
  
  .contact-left p {
    margin-top: 16px;
    font-size: 16px;
    color: #555;
    max-width: 420px;
  }
  
  .social-icons {
    margin-top: 40px;
  }
  
  .social-icons a img {
    width: 34px;
    margin-right: 14px;
  }
  
  /* FORM */
  .contact-form {
    flex: 1;
  }
  
  .contact-form form {
    background: #fff;
    border-radius: 30px;
  }
  
  .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid #e3e3e3;
    font-size: 15px;
    outline: none;
  }
  
  textarea {
    border-radius: 24px;
    height: 140px;
    resize: none;
  }
  
  .phone-field {
    display: flex;
    align-items: center;
    border: 1px solid #e3e3e3;
    border-radius: 30px;
    overflow: hidden;
  }
  
  .phone-field select {
    border: none;
    padding: 14px;
    background: transparent;
  }
  
  .phone-field input {
    border: none;
  }
  
  .contact-form button {
    margin-top: 22px;
    background: #ffcc00;
    border: none;
    padding: 14px 50px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }
  
  /* FLOATING ICONS */
  .floating-icons {
    position: fixed;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .floating-icons a {
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
  
  /* RESPONSIVE */
  @media (max-width: 900px) {
    .contact-wrapper {
      flex-direction: column;
      padding: 40px 25px;
    }
  
    .form-row {
      flex-direction: column;
    }
  
    .contact-left h2 {
      font-size: 34px;
    }
  }
  /**float icons**/
  .social-float {
    position: fixed;
    right: 20px;
    top: 70%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
  }
  
  .float-btn {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .float-btn img {
    width: 28px;
    height: 28px;
  }
  
  .float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }
  
  /* Mobile adjustment */
  @media (max-width: 768px) {
    .social-float {
      right: 12px;
    }
  
    .float-btn {
      width: 48px;
      height: 48px;
    }
  
    .float-btn img {
      width: 24px;
      height: 24px;
    }
  }
  