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



/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
  background: transparent;
  transition: 0.3s;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);

}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* ===== LEFT ===== */
.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* ===== LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #246891;
  color: #fff;
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }

  .nested-dropdown:hover > .dropdown-menu {
    display: block;
    top: 0;
    left: 100%;
  }

  .hamburger {
    display: none;
  }
}

/* ===== RIGHT ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  background: #246891;
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .navbar {
    background: #fff;
  }

  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    width: 40%;
    height: calc(100vh - 75px);
    background: #fff;
    flex-direction: column;
    transform: translateX(-100%);
    overflow-y: auto;
    box-shadow: 4px 0 10px rgba(0,0,0,0.1);
    transition: 0.3s;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 15px 20px;
    width: 100%;
    font-size: 18px;
    text-align: start;
  }

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

  .dropdown-menu {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    background: #f8f8f8;
    display: none;
  }

  .dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 10px 25px;
    font-size: 16px;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== SALESFORCE TABS ===== */
.salesforce-menu {
  padding: 10px 0;
}

.sf-tabs {
  
  display: flex;
  border-bottom: 1px solid #ddd;
}

.sf-tab {
  color: #000;
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.sf-tab.active {
  border-bottom: 2px solid #3b6df6;
  color: #3b6df6;
}

.sf-content {
  display: none;
  padding-top: 10px;
}

.sf-content.active {
  display: block;
}






.logo img {
  display: block;
  max-width: 100%;
  height: auto;


  filter:
    drop-shadow(0 2px 2px rgba(0, 0, 0, 1))  /* blur 2px */
    drop-shadow(0 6px 6px rgba(0, 0, 0, 0.18))  /* blur 6px */
    drop-shadow(0 14px 14px rgba(0, 0, 0, 0.12))
    drop-shadow(0 28px 28px rgba(0, 0, 0, 0.08));
}







/* Hero section */

.hero-section {
  background-image: url(images/hero.svg);
  background-size: cover;
  height: auto;
  width:100%;


  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}



.hero-content {
  flex: 1 1 500px;
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
  color: whitesmoke;
}

.hero-description {
  width: 80%;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

/* FEATURES */
.hero-features {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.hero-feature {
  color: #09173e;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.hero-feature::before {
  content: "✔";
  margin-right: 8px;
}

/* LOGOS */
.hero-logos {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-logos img {
  max-height: 100px;
}

/* BUTTONS */
.hero-actions {
  margin-top: 50px;
  display: flex;
  gap: 15px;
}

.hero-btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-btn-primary {
  background: #246891;
  color: #fff;
  border: 2px solid #246891;
}

.hero-btn-primary:hover {
  background: #246891;
}

.hero-btn-outline {
  background: #fff;
  color: #000;
  border: 2px solid #246891;
}

.hero-btn-outline:hover {
  background:#246891;
  color: #fff;
}

/* -------- RIGHT FORM -------- */
.hero-form {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  overflow: hidden;
}

.hero-form-header {
  background: #246891;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 35px 20px 55px;
  border-bottom-left-radius: 50% 35%;
  border-bottom-right-radius: 50% 35%;
}

.hero-form-body {
  padding: 30px 25px 35px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-form-body input {
  padding: 16px 18px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
}

.hero-form-body input:focus {
  border-color: #246891;
  box-shadow: 0 0 0 3px rgba(59,109,246,0.15);
  outline: none;
}

.hero-form-body button {
  background: #246891;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
}

.hero-form-body button:hover {
  background: #fff;
  color: #246891;
  border: 2px solid #246891;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    align-items: center;
  }
}




.stats-container {
      background: #fff;
      padding: 40px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .stat-card {
      flex: 1;
      min-width: 220px;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 24px;
      border-radius: 14px;
    }

    .stat-card h2 {
      margin: 0;
      font-size: 32px;
      font-weight: 700;
    }

    .stat-card p {
      margin: 4px 0 0;
      font-size: 16px;
      color: #555;
    }

    .icon {
      font-size: 36px;
    }

    /* Card colors */
    .yellow { background: #fff4d6; }
    .blue   { background: #e8f4ff; }
    .purple { background: #f1edfb; }
    .teal   { background: #e9f7f7; }





   .courses-title{
  text-align:center;
  font-size:38px;
  font-weight:600;
  margin:40px 0;
  color:#246891;
}

.course-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:25px;
  margin-bottom:40px;
}

.course-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  position:relative;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.course-img img{
  width:100%;
  height:190px;
  object-fit:cover;
}

.course-info{
  padding:16px;
}

.course-tag{
  font-size:12px;
  color:#999;
  margin-bottom:5px;
}

.course-title{
  font-size:18px;
  font-weight:600;
  color:#222;
}

.course-price{
  margin-top:8px;
  font-weight:500;
  color:#444;
}

/* ================= HOVER OVERLAY ================= */

.course-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#246891,#06b6d4);
  color:#fff;
  padding:25px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  transform:translateY(100%);
  transition:0.45s ease;
}

.course-card:hover .course-overlay{
  transform:translateY(0);
}

.overlay-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}

.overlay-text{
  font-size:14px;
  line-height:1.5;
  margin-bottom:20px;
  opacity:0.95;
}

.overlay-buttons{
  display:flex;
  gap:12px;
}

.overlay-buttons a{
  flex:1;
  text-align:center;
  padding:10px 0;
  border-radius:6px;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
}

.btn-learn{
  background:#fff;
  color:#2563eb;
}

.btn-buy{
  background:#111;
  color:#fff;
}

/* ================= VIEW ALL BUTTON ================= */

.view-all-wrapper{
  text-align:center;
  margin-bottom:60px;
}

.view-all-btn{
  display:inline-block;
  padding:14px 36px;
  background:linear-gradient(135deg,#246891,#06b6d4);
  color:#fff;
  font-size:16px;
  font-weight:600;
  border-radius:8px;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

.view-all-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}









.expect-section {
  padding: 70px 6%;
  background: linear-gradient(135deg, #111827, #312e81);
  /* background: linear-gradient(135deg, #eaf1ff, #cfe0ff); */





}

.expect-section h2 {
  text-align: center;
  font-size: 34px;
  color: #fff;
  margin-bottom: 60px;
}

.expect-section h2 span {
  color: #1392e0;
}

/* WRAPPER */
.expect-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= LEFT STEPS ================= */

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* animation */
@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  opacity: 0;
  animation: slideFade 0.9s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

/* number badge */
.step span {
  min-width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-right: 18px;
}

/* text */
.step p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.step small {
  display: block;
  font-size: 13px;
  opacity: 0.85;
}

/* colorful gradients + delay */
.step1 { background: linear-gradient(135deg, #667eea, #764ba2); animation-delay: 0.1s; }
.step2 { background: linear-gradient(135deg, #43cea2, #185a9d); animation-delay: 0.2s; }
.step3 { background: linear-gradient(135deg, #ff9966, #ff5e62); animation-delay: 0.3s; }
.step4 { background: linear-gradient(135deg, #56ccf2, #2f80ed); animation-delay: 0.4s; }
.step5 { background: linear-gradient(135deg, #f7971e, #ffd200); animation-delay: 0.5s; }
.step6 { background: linear-gradient(135deg, #ee0979, #ff6a00); animation-delay: 0.6s; }
.step7 { background: linear-gradient(135deg, #11998e, #38ef7d); animation-delay: 0.7s; }

/* ================= RIGHT CONTENT ================= */

.right-content .small-title {
  color: #2f6cf6;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.right-content h3 {
  color: #fff;
  font-size: 50px;
  margin-bottom: 26px;
  line-height: 1.2;
}

/* video card */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.video-card iframe {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 64px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.play-btn:hover {
  background: rgba(0,0,0,0.5);
  transform: scale(1.05);
}

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

/* ================= IMPROVED RESPONSIVENESS ================= */

@media (max-width: 1200px) {
  .right-content h3 {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .expect-section {
    padding: 60px 5%;
  }

  .expect-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .right-content {
    text-align: center;
  }

  .right-content h3 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .expect-section h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .steps {
    gap: 14px;
  }

  .step {
    padding: 16px 18px;
    border-radius: 14px;
  }

  .step p {
    font-size: 15px;
  }

  .step small {
    font-size: 12px;
  }

  .right-content h3 {
    font-size: 30px;
    line-height: 1.3;
  }
}

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

.video-card {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Remove fake play overlay (iframe already has play) */
.play-btn {
  display: none;
}










/* trends */

.catalog-section {

background: #cde1f6;
  min-height: 100vh;
  margin: 0;
  padding: 60px 20px;
  font-family: 'Inter', system-ui, sans-serif;
}

/* Element: Section Heading */
.catalog-section__title {
  text-align: center;
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 90px;
  /* color: #ffffff; */
  color: #246891;
  letter-spacing: -1px;
}

/* Block: Layout Grid */
.courses-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px 20px;
  justify-content: center;
  padding-bottom: 100px;
}

/* Block: Item Card */
.course-tile {
  background-color: #246891;
  backdrop-filter: blur(12px);
  /* color: #fff; */
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  padding: 35px;
  width: calc(33.333% - 20px);
  min-width: 310px;
  box-sizing: border-box;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

/* Wave logic for 3rd columns */
.course-tile:nth-child(3n-1) {
  transform: translateY(50px);
}

/* Hover States */
.course-tile:hover {
  transform: translateY(-15px);
  background: #124767;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  z-index: 2;
}

/* Maintaining wave logic on hover */
.course-tile:nth-child(3n-1):hover {
  transform: translateY(35px);
}

/* Element: Icon Wrap */
.course-tile__icon-wrapper {
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  margin-bottom: 25px;
}

.course-tile__img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Element: Typography */
.course-tile__headline {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.course-tile__summary {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 25px;
}

/* Element: Star Rating */
.course-tile__stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.course-tile__stars::after {
  content: "★★★★★";
}

/* Responsive: 2 Columns */
@media (max-width: 1024px) {
  .course-tile {
    width: calc(50% - 20px);
  }
  .course-tile:nth-child(3n-1) {
    transform: none;
  }
  .course-tile:nth-child(even) {
    transform: translateY(40px);
  }
  .course-tile:nth-child(even):hover {
    transform: translateY(25px);
  }
}




.footer {
  background: #246891;
  /* background:linear-gradient(135deg,#246891,#033d47); */
  color: #fff;
  padding: 50px 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 12px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #4db8ff;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
text-decoration: none;
  width: 34px;
  height: 34px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: #4db8ff;
}

/* FOOTER BOTTOM */
.footer-bottom {
  /* background: linear-gradient(90deg, #e8ffff, #7ff7f7, #e8ffff); */
  background-color: white;
  padding: 12px 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 15px;
  color: #000;
}



.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

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

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}






/* salesforce  */


/* ================= RESET ================= */




/* ================= HERO / WRAPPER ================= */
.page-wrapper {
  background: linear-gradient(135deg, #246891, #1b4f6f);
  width: 100%;
  padding: 80px 20px;
}

.salesforce-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
}

/* ================= LEFT CONTENT ================= */
.program-title {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  /* color: #f10909; */
  text-shadow: #dc2626 2px 1px 1px;
  margin-bottom: 16px;
}

.brochure-btn {
  display: inline-block;
  background: #3b82f6;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 28px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.brochure-btn:hover {
  background: #2563eb;
}

.program-subtitle {
  color: #e0f2fe;

  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.program-text {
  line-height: 1.75;
  margin-bottom: 18px;
  color: #ffffff;
}

.program-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* ================= LIST SECTIONS ================= */
.section-title {
  text-align: left;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 32px 0 14px;
}

.program-list {
  list-style: none;
}

.program-list li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  color: #e5e7eb;
}

.program-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-size: 14px;
}

/* ================= RIGHT FORM ================= */
.sticky-form-wrapper {
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  padding: 24px;
}

.container h4 {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.container h4 span {
  color: #dc2626;
  font-weight: 700;
}

/* ================= COUNTDOWN ================= */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.countdown .box {
  text-align: center;
}

.countdown .box div {
  font-size: 22px;
  font-weight: 700;
  background: #f1f5f9;
  padding: 12px 0;
  border-radius: 8px;
}

.countdown .box small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #374151;
}

/* ================= FORM ================= */
.container input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
}

.container input:focus {
  outline: none;
  border-color: #246891;
}

.btn {
  width: 100%;
  padding: 13px;
  background: #246891;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #083754;
}

/* ================= FOOTER NOTE ================= */
.seats-left {
  margin-top: 10px;
  font-size: 13px;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.seats-left::before {
  content: "👥";
}

.footer-note {
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
  color: #374151;
}

.footer-note a {
  color: #1d4ed8;
  text-decoration: none;
}

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

/* Tablets */
@media (max-width: 992px) {
  .salesforce-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-title {
    font-size: 32px;
  }

  .sticky-form-wrapper {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .page-wrapper {
    padding: 60px 16px;
  }

  .program-title {
    font-size: 26px;
  }

  .program-subtitle {
    font-size: 18px;
  }

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

  .container {
    padding: 20px;
  }
}



/* salesfocre cards */

salesforce-section{
  background:#f6f8fb;
  padding:100px 20px;
}

/* SECTION TITLE */
.salesforce-section-title{
  text-align:center;
  padding:60px 20px;
  font-size:32px;
  font-weight:700;
  margin-bottom:40px;
}

/* GRID */
.salesforce-card-grid{
  max-width:1200px;
  margin:auto;
  margin-bottom: 50px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

/* CARD */
.salesforce-card{
  background:#fff;
  border-radius:16px;
  padding:25px 20px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
}

.salesforce-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.salesforce-card-img{
  width:150px;
  height:150px;
  margin:auto;
  border-radius:50%;
  overflow:hidden;
  margin-bottom:15px;
}

.salesforce-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CONTENT */
.salesforce-card-title{
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
}

.salesforce-card-desc{
  font-size:13px;
  color:#555;
  line-height:1.6;
  margin-bottom:15px;
}

/* BUTTON */
.salesforce-brochure-btn{
  display:inline-block;
  padding:10px 18px;
  font-size:13px;
  font-weight:600;
  color:#fff;
  background:#246891;
  border-radius:25px;
  text-decoration:none;
  margin-bottom:18px;
  transition:background .3s ease;
}

.salesforce-brochure-btn:hover{
  background:#1c4f6b;
}

/* META */
.salesforce-card-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:#444;
}

.salesforce-card-meta span{
  display:flex;
  align-items:center;
  gap:5px;
}

.salesforce-star{
  color:#f4b400;
}



.cta-section{
    width: 100%;
    min-height:280px;
    background-color: #246891;

}

.cta-container{
    background-color:#246891;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  width: 100%;
  height: auto;
  color: white;
  padding: 50px 30px;
  text-align: center;
    

}

 .cta-link{

text-align: center;
/* text-decoration: none; */
color: rgb(69, 192, 241);
font-weight: 900;
    
}


.cta-container p{
  line-height: 22px;
}



/* Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 28px;
  }

  .cta-container p {
    font-size: 16px;
  }
}




.highlights-wrapper{
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
}

/* ---------- Section Title ---------- */
.highlights-title{
  font-size:28px;
  color: #246891;
  font-weight:700;
  margin-bottom:30px;
  position:relative;
}

.highlights-title::after{
  content:'';
  width:50px;
  height:3px;
  background:#246891;
  display:block;
  margin-top:8px;
}

/* ---------- Grid Layout ---------- */
.highlights-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 30px;
}

/* ---------- Highlight Card ---------- */
.highlight-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:10px 20px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,0.15);
  transition:all 0.3s ease;
}

.highlight-item:hover{
  transform:translateY(-4px);
}

/* ---------- Icon Box ---------- */
.highlight-icon{
  width:44px;
  height:44px;
  min-width:44px;
  border-radius:10px;
  background:#eaf1ff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.highlight-icon img{
  width:24px;
  height:24px;
}

/* ---------- Text ---------- */
.highlight-content{
  font-size:15px;
  font-weight:500;
  color:#2b2b2b;
  line-height:1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px){
  .highlights-layout{
    grid-template-columns:1fr;
  }
}





.curriculum-wrapper {
  width: 94%;
  margin: auto;
  padding: 60px 0px;
  border-radius: 14px;
}

/* Title */
.curriculum-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #246891;
  position: relative;
}

.curriculum-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1e4f7a, #4aa3df);
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

/* Accordion Item */
.accordion-item {
  background: #ffffff;
 
  border: 1px solid #e2ecf5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Header */
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #173f63;
  background: #ffffff;
  transition: background 0.3s ease, color 0.3s ease;
}

.accordion-header:hover {
  background: #eef6ff;
  color: #1e4f7a;
}


.accordion-item.active {
  border-color: #4aa3df;
}

.accordion-item.active .accordion-header {
  background: linear-gradient(90deg, #e9f4ff, #f6fbff);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 10px 22px 25px;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

/* Text Styling */
.accordion-content-inner p {
  margin-bottom: 10px;
}

.accordion-content-inner strong {
  color: #1e4f7a;
}

/* List */
.accordion-content-inner ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.accordion-content-inner li {
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 6px;
}

/* Bullet Accent */
.accordion-content-inner li::marker {
  color: #4aa3df;
}

/* Mobile */
@media (max-width: 768px) {
  .curriculum-title {
    font-size: 26px;
  }

  .accordion-header {
    font-size: 16px;
    padding: 16px 18px;
  }

  .accordion-content-inner {
    font-size: 14.5px;
  }
}












    .key-concepts {
      background-color: #ffffff; /* single background */
      }

    .key {
      max-width: 1000px;
      margin: 40px;
    }

    .key-concepts-title {
      font-size: 28px;
      font-weight: 700;
      color: #246891;
      margin-bottom: 25px;
      text-align: left;
    }

    .key-concepts-title::after{
  content:'';
  width:50px;
  height:3px;
  background:#246891;
  display:block;
}

    .concept-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .concept-list li {
      color: #000;
      font-size: 16px;
      line-height: 1.6;
      padding-left: 25px;
      margin-bottom: 12px;
      position: relative;
    }

    .concept-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #094576;
      font-weight: bold;
    }



    .jobs{
      width: 100%;
      height: auto;
      margin: 20px 0px;
    }

    .jobs img{
      width: 99%;
      padding:0px 40px;
      height: 420px;
      
    }


    .industry{
      padding: 20px 15px 0px 30px;
      font-size: 28px;
      font-weight: 700;
      color: #246891;
      margin-bottom: 25px;
      text-align: left;
    }

    .industry::after{
  content:'';
  width:50px;
  height:3px;
  background:#246891;
  display:block;
}








.certification-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.certification {
  max-width: 1300px;
  margin: auto;
}

.certification-section-title {
  padding-left: 10px;
  font-size: 30px;
  font-weight: 700;
  color: #246891;
}

.title-line {
  display: block;
  width: 60px;
  height: 3px;
  background-color:#246891;
  margin: 5px 10px 20px;
}

/* Grid Layout */
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.certificate-card {
  /* background: #1c1534; */
  padding: 0px;
}

.certificate-card img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #2c2350;
}

/* Responsive */
@media (max-width: 1200px) {
  .certificate-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .certificate-grid {
    grid-template-columns: 1fr;
  }
}





/* Section background */
.french-cards-section {
  padding: 90px 20px;
  /* background: linear-gradient(180deg, #3a5c8a, #dbe6f3); */
}

/* Heading */
.french-cards-header {
  text-align: center;
  margin-bottom: 60px;
}

.french-cards-header h2 {
  font-size: 36px;
  font-weight: 800;
  /* color: #ffffff; */
  color: #246891;
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.french-cards-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffcc00; /* accent underline color */
  margin: 8px auto 0;
  border-radius: 2px;
}

.french-cards-header p {
  font-size: 16px;
  color: #3f6cbf;
  margin: 0;
}

/* Cards container */
.french-cards-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card with full-color background */
.french-card {
  background: rgba(75, 108, 183, 0.85);/* solid color or you can use gradient */
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff; /* text color for contrast */
}

.french-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Icon */
.french-card-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.french-card-icon img {
  max-width: 100px;
}

/* Title */
.french-card-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

/* Subtitle */
.french-card-subtitle {
  margin: 6px 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: #d0e0ff; /* lighter subtitle color for contrast */
}

/* Text */
.french-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e6f1;
}

/* Responsive */
@media (max-width: 992px) {
  .french-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .french-cards-container {
    grid-template-columns: 1fr;
  }
}









.french-hero {

background: linear-gradient(90deg, #0055A4, rgba(239, 65, 53, 0.75));
padding: 70px 20px 90px;
}

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

.french-hero-content h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.french-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: #e6f4ff;
  font-weight: 700;

}

/* FEATURES */
.french-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.french-features li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-weight: 500;
/* color: #0f3554; */
color: #fff;


}

.french-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f1edfb;

  font-weight: bold;
}

/* CTA BUTTONS */
.french-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.cta-btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}

.cta-primary {
  /* background: #246891; */
  background-color: #EF4135;
  color: #fff;
}

.cta-secondary {
  background: #ffffff;
  color: #001b5e;
  border: 1px solid #ccc;
}

/* INFO CARDS */
.french-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.french-info-card {
  border-radius: 14px;
  padding: 25px;
  min-height: 200px;
}

.french-info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.french-info-card ul {
  list-style: none;
  padding: 0;
}

.french-info-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}

.french-info-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

/* CARD VARIANTS */
.card-light {
  background: #ffffff;
color: #102a43;

}

.card-light li::before {
  color: #0f3554;

}

.card-dark {
  /* background: #246891; */
/* background: #0a9b6b; */
background-color: #EF4135;
color: #ffffff;

}

.card-dark li::before {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .french-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .french-info-grid {
    grid-template-columns: 1fr;
  }

  .french-hero-content h1 {
    font-size: 32px;
  }

  .french-cta {
    flex-direction: column;
  }
}



/* german hero */



.german-hero {
  /* background: linear-gradient(180deg, #000000 10%, #DD0000 30%, #FFCE00 100%); */
background: linear-gradient(135deg, #2B2B2B, #B71C1C);

  padding: 70px 20px 90px;
}

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

.german-hero-content h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.german-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: #e6f4ff;
  font-weight: 700;
}

/* FEATURES */
.german-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.german-features li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-weight: 500;
  color: #fff;
}

.german-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f1edfb;
  font-weight: bold;
}

/* CTA BUTTONS */
.german-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.cta-btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}

.cta-primary {
  background-color: #FFCE00;
  color: #fff;
}

.cta-secondary {
  background: #ffffff;
  color: #001b5e;
  border: 1px solid #ccc;
}

/* INFO CARDS */
.german-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.german-info-card {
  border-radius: 14px;
  padding: 25px;
  min-height: 200px;
}

.german-info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.german-info-card ul {
  list-style: none;
  padding: 0;
}

.german-info-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}

.german-info-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

/* CARD VARIANTS */
.card-light {
  background: #ffffff;
  color: #102a43;
}

.card-light li::before {
  color: #0f3554;
}

.card-dark {
  background-color: #DD0000;
  color: #ffffff;
}

.card-dark li::before {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .german-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .german-info-grid {
    grid-template-columns: 1fr;
  }

  .german-hero-content h1 {
    font-size: 32px;
  }

  .german-cta {
    flex-direction: column;
  }
}








 .spanish-hero {
  /* background: linear-gradient(180deg, #000000 10%, #DD0000 30%, #FFCE00 100%); */
background: linear-gradient(
  135deg,
  #f6fbff 5%,
  #2fb2d3 85%
);


  padding: 70px 20px 90px;
}

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

.spanish-hero-content h1 {
  font-size: 42px;
  /* color: #fff; */
  color: #001b5e ;
  margin-bottom: 10px;
}

.spanish-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  /* color: #e6f4ff; */
  color: #001b5e ; 
  font-weight: 700;
}

/* FEATURES */
.spanish-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.spanish-features li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-weight: 500;
  /* color: #fff; */
  color: #001b5e;
}

.spanish-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  /* color: #f1edfb; */
  color: #001b5e;
  font-weight: bold;
}

/* CTA BUTTONS */
.spanish-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.cta-btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}

.cta-primary {
  background-color:  #D32F2F ;
  color: #fff;
}

.cta-secondary {
  background: #ffffff;
  color: #001b5e;
  border: 1px solid #ccc;
}

/* INFO CARDS */
.spanish-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.spanish-info-card {
  border-radius: 14px;
  padding: 25px;
  min-height: 200px;
}

.spanish-info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.spanish-info-card ul {
  list-style: none;
  padding: 0;
}

.spanish-info-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}

.spanish-info-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

/* CARD VARIANTS */
.card-light {
  background: #ffffff;
  color: #102a43;
}

.card-light li::before {
  color: #0f3554;
}

.card-dark {
  /* background-color: #DD0000; */
  background-color: #0f3554;
  color: #4a4646;
}

.card-dark li::before {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .spanish-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .spanish-info-grid {
    grid-template-columns: 1fr;
  }

  .spanish-hero-content h1 {
    font-size: 32px;
  }

  .spanish-cta {
    flex-direction: column;
  }
}









/*  */



.japanese-hero {
  background: linear-gradient(
    135deg,
    #ffe6ec 5%,
    #ff7aa2 85%
  );
  padding: 70px 20px 90px;
}


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

.japanese-hero-content h1 {
  font-size: 42px;
  color: #bc002d;
  margin-bottom: 10px;
}

.japanese-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: #001b5e;
  font-weight: 700;
}

/* FEATURES LIST */
.japanese-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.japanese-features li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-weight: 500;
  color: #bc002d;
}

.japanese-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #001b5e;
  font-weight: bold;
}

/* CTA BUTTONS */
.japanese-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.cta-btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}

.cta-primary {
  background-color:  #bc002d ;
  color: #fff;
}

.cta-secondary {
  background: #ffffff;
  color: #001b5e;
  border: 1px solid #ccc;
}

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

.japanese-info-card {
  border-radius: 14px;
  padding: 25px;
  min-height: 200px;
}

.japanese-info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.japanese-info-card ul {
  list-style: none;
  padding: 0;
}

.japanese-info-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
  padding-left: 22px;
}

.japanese-info-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

/* CARD VARIANTS */
.card-light {
  background: #ffffff;
  color: #102a43;
}

.card-light li::before {
  color: #0f3554;
}

.card-dark {
  background-color:  #bc002d ;
  color: #fff;
}

.card-dark li::before {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .japanese-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .japanese-info-grid {
    grid-template-columns: 1fr;
  }

  .japanese-hero-content h1 {
    font-size: 32px;
  }

  .japanese-cta {
    flex-direction: column;
  }
}



















/* faq */



 .faq-wrapper {
      width: 94%;
      margin: auto;
      padding: 60px 0;
      border-radius: 14px;
    }

    /* Title */
    .faq-title {
      font-size: 34px;
      font-weight: 700;
      margin-bottom: 35px;
      color: #246891;
      position: relative;
    }

    .faq-title::after {
      content: "";
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #1e4f7a, #4aa3df);
      display: block;
      margin-top: 10px;
      border-radius: 2px;
    }

    /* FAQ Item */
    .faq-item {
      background: #ffffff;
      border: 1px solid #e2ecf5;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: all 0.3s ease;
      /* margin-bottom: 14px; */
    }

    .faq-item.active {
      border-color: #4aa3df;
    }

    /* Header */
    .faq-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 22px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 400;
      color: #173f63;
      background: #ffffff;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .faq-header:hover {
      background: #eef6ff;
      color: #1e4f7a;
    }

    .faq-item.active .faq-header {
      background: linear-gradient(90deg, #e9f4ff, #f6fbff);
    }

    /* Content */
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-content-inner {
      padding: 10px 22px 25px;
      color: #444;
      font-size: 15px;
      line-height: 1.7;
    }

    .faq-content-inner strong {
      color: #1e4f7a;
    }

    .faq-content-inner ul {
      margin-top: 12px;
      padding-left: 18px;
    }

    .faq-content-inner li {
      margin-bottom: 8px;
    }

    .faq-content-inner li::marker {
      color: #4aa3df;
    }

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

      .faq-header {
        font-size: 16px;
        padding: 16px 18px;
      }

      .faq-content-inner {
        font-size: 14.5px;
      }
    }






/* admin page */


      .sf-why-section {
      padding: 80px 20px;
      background: #f8fafc;
    }

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

    .sf-section-header {
      text-align: center;
      margin-bottom: 55px;
    }

    .sf-section-title {
      font-size: 34px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .sf-section-subtitle {
      font-size: 16px;
      color: #64748b;
    }

    .sf-benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .sf-benefit-card {
      padding: 28px 24px;
      border-radius: 14px;
      font-size: 15px;
      font-weight: 500;
      color: #0f172a;
      background: #ffffff;
      border-left: 6px solid transparent;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .sf-benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    }

    /* 🌈 UPDATED CARD COLORS */
    .sf-benefit-card:nth-child(1) {
      border-left-color: #0ea5a4;
      background: linear-gradient(135deg, #e6fffa, #ffffff);
    }

    .sf-benefit-card:nth-child(2) {
      border-left-color: #38bdf8;
      background: linear-gradient(135deg, #e0f2fe, #ffffff);
    }

    .sf-benefit-card:nth-child(3) {
      border-left-color: #fb7185;
      background: linear-gradient(135deg, #fff1f2, #ffffff);
    }

    .sf-benefit-card:nth-child(4) {
      border-left-color: #6366f1;
      background: linear-gradient(135deg, #eef2ff, #ffffff);
    }

    @media (max-width: 992px) {
      .sf-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .sf-benefits-grid {
        grid-template-columns: 1fr;
      }

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



    .sf-learn-section {
  padding: 80px 20px;
  background: #ffffff;
}

/* CONTAINER */
.sf-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.sf-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.sf-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

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

/* CARD */
.sf-learn-card {
  padding: 26px 22px;
  background: #f8fafc;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #1e293b;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid transparent;
}

/* HOVER */
.sf-learn-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* CARD COLORS */
.sf-learn-card:nth-child(1) { border-top-color: #0ea5a4; }
.sf-learn-card:nth-child(2) { border-top-color: #38bdf8; }
.sf-learn-card:nth-child(3) { border-top-color: #f59e0b; }
.sf-learn-card:nth-child(4) { border-top-color: #6366f1; }
.sf-learn-card:nth-child(5) { border-top-color: #22c55e; }
.sf-learn-card:nth-child(6) { border-top-color: #fb7185; }
.sf-learn-card:nth-child(7) { border-top-color: #8b5cf6; }
.sf-learn-card:nth-child(8) { border-top-color: #14b8a6; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .sf-learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sf-learn-grid {
    grid-template-columns: 1fr;
  }

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





.enroll-header {
  max-width: 800px;
  margin: 0 auto 0px;
  text-align: center;
}

.enroll-title {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.enroll-description {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}



 .enroll-split-section {
  padding: 90px 20px;
}

.enroll-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}




.enroll-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.enroll-list li {
  font-size: 15px;
  color: #1e293b;
  padding: 12px 0 12px 36px;
  position: relative;
  line-height: 1.5;
}

.enroll-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 12px;
  color: #2563eb;
  font-weight: 700;
}

/* Image Styling */
.enroll-image-wrapper {
  text-align: center;
}

.enroll-image {
  max-width: 100%;
  width: 360px;
  animation: floatImage 3s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 900px) {
  .enroll-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .enroll-list li {
    padding-left: 0;
  }

  .enroll-list li::before {
    display: none;
  }

  .enroll-image {
    margin-top: 30px;
    width: 280px;
  }
}







/* payment page  Start*/




.checkout-wrapper{
  background-color: #f4f8fa;
  padding: 60px 20px 60px; /* 80px navbar + 60px content */
  color: #0f172a;
  width: 100%;
  margin: auto;
}


/* Header */
.checkout-header{
 
  text-align:center;
  margin-bottom:50px;
}

.checkout-header h1{
       color:#246891;
  font-size:46px;
  font-weight: 900;
  margin-bottom:10px;
}

.checkout-header p{
  color:#246891;
  font-size:16px;
}

/* Layout */
.checkout-layout{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:40px;
}

/* Payment Section */
.payment-section{
  background:#ffffff;
  border-radius:22px;
  padding:45px;
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.payment-section h2{
  font-size:24px;
  margin-bottom:30px;
}

/* Payment Method */
.payment-method{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 28px;
  border-radius:16px;
  border:1px solid #e5e7eb;
  margin-bottom:22px;
  background:#fff;
  transition:0.3s;
}

.payment-method:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.08);
}

.payment-method img{
  height:34px;
}

/* Anchor Button */
.pay-link{
  padding:12px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:14px;
  color:#fff;
  text-decoration:none;
  display:inline-block;
  transition:0.2s;
}

.payu{background:#65a30d;}
.razor{background:#2563eb;}
.paypal{background:#1e40af;}

.pay-link:hover{
  opacity:0.9;
}

/* Bank Section */
.bank-section{
  background:#ffffff;
  border-radius:22px;
  padding:45px;
  box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.bank-section h2{
  font-size:24px;
  margin-bottom:30px;
}

/* Bank Table */
.bank-table{
  width:100%;
  border-collapse:collapse;
  background:#f8fafc;
  border-radius:14px;
  overflow:hidden;
  border:1px solid #e5e7eb;
}

.bank-table tr{
  border-bottom:1px solid #e5e7eb;
}

.bank-table tr:last-child{
  border-bottom:none;
}

.bank-table td{
  padding:16px 18px;
  font-size:14px;
}

.bank-table td:first-child{
  width:35%;
  font-weight:600;
  color:#475569;
  background:#f1f5f9;
}

/* Trust Note */
.trust-note{
    padding-left: 10px;
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#475569;
}

/* Responsive */
@media(max-width:900px){
  .checkout-layout{
    grid-template-columns:1fr;
  }
  .payment-section,
  .bank-section{
    padding:35px;
  }
}



/* payment page  end*/





/* placement page */

.placed-students-section {
  height: auto;
  width: 100%;
  background-color: #246891;
  padding: 50px 20px;

}

.placed-container {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.placed-content .badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.placed-content h2 {
  font-size: 54px;
  color: #fff;
  margin-bottom: 15px;
}

.placed-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e9ecef;
  margin-bottom: 20px;
}




.placed-image img {
  width: 50%;
  max-width: 480px;
  display: block;
  margin:auto;
}

/* Responsive */
@media (max-width: 900px) {
  .placed-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .placed-image img {
    margin: auto;
  }
}




 .page-container {
  background-color: #f8f8f8;
  line-height: 1.3;
  color: #1e293b;
  width: 100%;
  padding: 20px;
    }

    /* ===== Headings ===== */
    .section-title {
      font-size: 30px;
      margin: 40px 0 15px;
      color: #246891;
      position: relative;
    }

    .section-title::after {
      content: "";
      width: 60px;
      height: 3px;
      background: #246891;
      display: block;
      margin-top: 6px;
      border-radius: 4px;
    }

    .section-text {
      font-size: 15px;
      max-width: 1100px;
      margin-bottom: 20px;
    }

    /* ===== Filter ===== */
    .placement-filter {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      background: #ffffff;
      padding: 16px 20px;
      border-radius: 10px;
      margin: 30px 0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    .placement-filter label {
      font-weight: 600;
      color: #0f172a;
    }

    .placement-filter select {
      padding: 10px 14px;
      border-radius: 8px;
      border: 1px solid #cbd5e1;
      min-width: 220px;
      font-size: 14px;
      outline: none;
    }

    .filter-btn {
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .btn-sub{
      background: #246891;
      color: #ffffff;
    }

    .btn-submit:hover {
      background: #1e4f73;
    }

    .btn-res{
      background: #ea0505;
      color: #fff;
    }

    .btn-reset:hover {
      background: red;
    }

    /* ===== Table ===== */
    .table-wrapper {
      overflow-x: auto;
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      margin-bottom: 60px;
    }

    .placement-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 850px;
    }

    .placement-table thead {
      /* background: linear-gradient(135deg, #2563eb, #1e40af); */
      background: linear-gradient(135deg, #246891, #1e4f73);

      color: #ffffff;
    }

    .placement-table th,
    .placement-table td {
      padding: 14px 16px;
      text-align: left;
      font-size: 14px;
    }

    .placement-table tbody tr {
      border-bottom: 1px solid #e5e7eb;
      transition: 0.3s ease;
    }

    .placement-table tbody tr:hover {
      background: #f1f5f9;
    }

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

      .placement-filter {
        flex-direction: column;
        align-items: stretch;
      }

      .placement-filter select,
      .filter-btn {
        width: 100%;
      }
    }


    /* sap cards */


     .sap-section{
      background:#f6f8fb;
      padding:20px 20px;
    }

    /* SECTION TITLE */
    .sap-section-title{
      text-align:center;
      padding:40px 20px;
      font-size:40px;
      font-weight:700;
      margin-bottom:40px;
    }

    /* GRID */
    .sap-card-grid{
      max-width:1200px;
      margin:auto;
      margin-bottom:50px;
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:25px;
    }

    /* CARD */
    .sap-card{
      background:#fff;
      border-radius:16px;
      padding:25px 20px;
      text-align:center;
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
      transition:transform .3s ease, box-shadow .3s ease;
    }

    .sap-card:hover{
      transform:translateY(-6px);
      box-shadow:0 16px 35px rgba(0,0,0,0.12);
    }

    /* IMAGE */
    .sap-card-img{
      width:250px;
      height:150px;
      margin:auto;
      
      overflow:hidden;
      margin-bottom:15px;
    }

    .sap-card-img img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    /* CONTENT */
    .sap-card-title{
      font-size:14px;
      font-weight:700;
      letter-spacing:1px;
      margin-bottom:10px;
    }

    .sap-card-desc{
      font-size:13px;
      color:#555;
      line-height:1.6;
      margin-bottom:15px;
    }

    /* BUTTON */
    .sap-brochure-btn{
      display:inline-block;
      padding:10px 18px;
      font-size:13px;
      font-weight:600;
      color:#fff;
      background:#246891;
      border-radius:25px;
      text-decoration:none;
      margin-bottom:18px;
      transition:background .3s ease;
    }

    .sap-brochure-btn:hover{
      background:#1c4f6b;
    }

    /* META */
    .sap-card-meta{
      display:flex;
      justify-content:space-between;
      align-items:center;
      font-size:13px;
      color:#444;
    }

    .sap-card-meta span{
      display:flex;
      align-items:center;
      gap:5px;
    }

    .sap-star{
      color:#f4b400;
    }



    
/* MAIN SECTION */
.contact-section{
  padding:80px 20px;
}

.contact-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT CONTENT */
.contact-tag{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  color:#ffb703;
  font-weight:600;
  letter-spacing:1px;
}

.contact-tag span{
  width:60px;
  height:3px;
  background:#ffb703;
}

.contact-title{
  font-size:52px;
  margin:20px 0;
  color:#111;
}

.contact-text{
  font-size:15px;
  line-height:1.8;
  color:#555;
  max-width:520px;
}

/* CONTACT INFO */
.contact-info{
  display:flex;
  gap:40px;
  margin-top:40px;
}

.info-box{
  display:flex;
  align-items:center;
  gap:15px;
}

.info-icon{
  width:42px;
  height:42px;
  background:#0d6efd;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
}

.info-label{
  font-size:12px;
  color:#777;
}

.info-value{
  font-weight:500;
  color:#111;
}

/* FORM CARD */
.form-card{
  background:#fff;
  padding:40px;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
  position:relative;
}

/* DECOR SHAPES */
.form-card::before{
  content:'';
  width:60px;
  height:60px;
  background:#ffc857;
  position:absolute;
  top:-20px;
  left:40px;
  border-radius:30px 0 30px 30px;
}

.form-card::after{
  content:'';
  width:40px;
  height:40px;
  background:#7b61ff;
  position:absolute;
  top:-30px;
  right:60px;
  border-radius:0 30px 30px 30px;
}

.form-group{
  margin-bottom:20px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:14px 16px;
  border:none;
  background:#f3f5f7;
  border-radius:8px;
  font-size:14px;
  outline:none;
}

textarea{
  resize:none;
  height:140px;
}

.submit-btn{
  background:#0d6efd;
  color:#fff;
  border:none;
  padding:14px 34px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  float:right;
  display:flex;
  align-items:center;
  gap:8px;
  transition:0.3s;
}

.submit-btn:hover{
  background:#084298;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-container{
    grid-template-columns:1fr;
  }
  .contact-title{
    font-size:40px;
  }
  .submit-btn{
    float:none;
    width:100%;
    justify-content:center;
  }
}








/*  */




/* SECTION */
.cards-section{
  padding:80px 20px;
}

.cards-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(3, 0.5fr);
  gap:40px;
}

/* CARD */
.info-card{
  background:#fff;
  padding:20px 40px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  transition:0.3s;
}

.info-card:hover{
  transform:translateY(-6px);
}

/* ICON */
.card-icon{
  width:90px;
  margin:0 auto 30px;
}

.card-icon img{
  width:100%;
}

/* TITLE */
.card-title{
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:16px;
  color:#111;
}

/* TEXT */
.card-text{
  font-size:15px;
  line-height:1.7;
  color:#666;
  margin-bottom:30px;
}

/* BUTTON */
.card-btn{
  display:inline-block;
  padding:14px 36px;
  border-radius:40px;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  text-decoration:none;
}

/* BUTTON COLORS */
.btn-blue{
  background:#e8f1ff;
  color:#0d6efd;
}

.btn-red{
  background:#ffecec;
  color:#ff4d4d;
}

.btn-yellow{
  background:#fff3d9;
  color:#f4a100;
}

/* RESPONSIVE */
@media(max-width:900px){
  .cards-container{
    grid-template-columns:1fr;
  }
}

/* Registration Form */


.form-wrapper{
  max-width:900px;
  margin:60px auto;
  background:#fff;
  padding:40px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.form-title{
  text-align:center;
  font-size:26px;
  font-weight:600;
  margin-bottom:35px;
  color:#1e293b;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.form-group{
  display:flex;
  flex-direction:column;
}
.form-group.full{
  grid-column:span 2;
}
label{
  font-size:14px;
  font-weight:500;
  color:#334155;
  margin-bottom:6px;
}
input, select{
  padding:12px 14px;
  border:1px solid #cbd5e1;
  border-radius:6px;
  font-size:14px;
  outline:none;
}
input:focus, select:focus{
  border-color:#2563eb;
}
.sub{
  margin-top:30px;
}
button{
  background:#246891;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:6px;
  font-size:15px;
  cursor:pointer;
  /* width:100%; */
}
button:hover{
  background:#1669a8;
}
@media(max-width:768px){
  .form-grid{
    grid-template-columns:1fr;
  }
  .form-group.full{
    grid-column:span 1;
  }
}




    /* whatsapp button */

    .whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
