   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html, body{
  max-width:100%;
  overflow-x:hidden;
  font-family: 'Poppins', sans-serif;
}


/* WhatsApp Icon */
#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#whatsapp-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}





/* ========================
   Top Bar FIX
======================== */
.top-bar{
    background:#1f4ea3;
    color:#fff;
    font-size:14px;
    padding:6px 0;
}

/* full width layout */
.top-bar .container{
    max-width:1400px;
    width:95%;
    margin:auto;
}

/* keep everything in one row */
.flex-between{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap; /* 🔥 prevents wrapping */
}

/* spacing */
.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:18px;
}


/* ========================
   Navbar
======================== */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 0;
}


/* Logo */
.logo img{
    height:48px;
    margin-left: 30px;
}


/* Menu */
.nav-menu{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.nav-menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:0.3s;
}

.nav-menu li a:hover{
    color:#1f4ea3;
}

/* ===== Dropdown Fix ===== */

.dropdown{
    position:relative;
}

/* keep navbar visible for dropdown */
/* Navbar height control */
.navbar{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    min-height:90px;   /* 🔥 increase white bar height */
    display:flex;
    align-items:center;
}

/* spacing inside */
.nav-wrapper{
    padding:0;  /* remove old padding */
}

/* submenu */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:230px;
    background:#fff;
    border-radius:10px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);

    padding:10px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all .25s ease;

    z-index:9999;
}

/* items */
.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:10px 18px;
    color:#333;
    text-decoration:none;
    font-size:14px;
}

.dropdown-menu li a:hover{
    background:#f5f7fb;
    color:#1f4ea3;
}


/* 🔥 SHOW ON HOVER */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ========================
   Button
======================== */
.btn-start{
    background:#ff7a00;
    color:#fff !important;
    padding:10px 20px;
    border-radius:25px;
    font-weight:600;
}

.btn-start:hover{
    background:#e56700;
}


/* ========================
   Hamburger
======================== */
.hamburger{
    display:none;
    font-size:26px;
    cursor:pointer;
    margin-right: 30px;
}


/* ========================
   Mobile Drawer
======================== */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:#fff;
    box-shadow:-4px 0 20px rgba(0,0,0,0.1);
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
    transition:0.4s;
    z-index:999;
}

.mobile-menu a,
.mobile-dropdown button{
    text-decoration:none;
    color:#333;
    font-size:16px;
    background:none;
    border:none;
    text-align:left;
    cursor:pointer;
}

.mobile-menu.active{
    right:0;
}

.close-menu{
    font-size:24px;
    align-self:flex-end;
    cursor:pointer;
}


/* mobile submenu */
.mobile-submenu{
    display:none;
    padding-left:15px;
    display:flex;
    flex-direction:column;
    gap:10px;
}



/* ========================
   Responsive
======================== */
@media(max-width:992px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:block;
    }

    /* hide blue bar on mobile */
    .top-bar{
        display:none;
    }
}


  /* ================= HERO SECTION ================= */
    .hero-section {
      padding: 80px 6%;
      background: linear-gradient(135deg, #e8f0fe 0%, #f0f4f8 100%);
      overflow: hidden;
      min-height: 100vh;
      position: relative;
    }

    .hero-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto 60px;
    }

    /* ===== LEFT SIDE - CONTENT ===== */
    .hero-left {
      opacity: 0;
      transform: translateX(-100px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hero-left.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .logo-card {
      background: #ffffff;
      padding: 30px;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      display: inline-block;
      margin-bottom: 40px;
      transition: transform 0.3s ease;
    }

    .logo-card:hover {
      transform: translateY(-5px);
    }

    .logo-card img {
      width: 180px;
      height: auto;
      display: block;
    }

    /* Placeholder for logo */
    .logo-placeholder {
      width: 180px;
      height: 60px;
      background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 18px;
    }

    .hero-title {
      font-size: 56px;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .hero-title-blue {
      color: #2563eb;
      display: block;
      position: relative;
    }

    .target-emoji {
      display: inline-block;
      animation: rotate 3s linear infinite;
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .hero-desc {
      font-size: 16px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .hero-desc strong {
      color: #f97316;
      font-weight: 700;
    }

    /* CTA Buttons */
    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 50px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #2563eb;
      color: #ffffff;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
      text-decoration: none;
    }

    .btn-primary:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.5);
    }

    .btn-primary .sparkle {
      display: inline-block;
      animation: sparkle 1.5s ease-in-out infinite;
    }

    @keyframes sparkle {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(1.2); }
    }

    .arrow-icon {
      font-size: 18px;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: #2563eb;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      border: 2px solid #2563eb;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-secondary:hover {
      background: #2563eb;
      color: #ffffff;
      transform: translateY(-2px);
    }

    /* ===== RIGHT SIDE - COURSE CARDS ===== */
    .hero-right {
      opacity: 0;
      transform: translateX(100px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
      position: relative;
    }

    .hero-right.animate {
      opacity: 1;
      transform: translateX(0);
    }

    .courses-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 32px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .course-card {
      background: #ffffff;
      padding: 28px 24px;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .course-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    .course-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 16px;
      border-radius: 12px;
      overflow: hidden;
    }

    .course-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Icon placeholder */
    .icon-placeholder {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 16px;
    }

    .course-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 6px;
    }

    .course-duration {
      font-size: 13px;
      color: #666;
    }

    /* Special badges */
    .badge-certified {
      position: absolute;
      top: 12px;
      right: 12px;
      background: #fef3c7;
      color: #92400e;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .badge-free {
      position: absolute;
      top: 12px;
      right: 12px;
      background: #dcfce7;
      color: #166534;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 600;
    }

    .badge-job-ready {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: #dbeafe;
      color: #1e40af;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ===== STATS CARDS ===== */
    .stats-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .stat-card {
      background: #ffffff;
      padding: 32px 24px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      transform: translateY(60px);
      border: 2px solid transparent;
    }

    .stat-card.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
      border-color: #2563eb;
    }

    .stat-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 16px;
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Icon placeholders with different colors */
    .stat-icon-blue {
      background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
      font-size: 28px;
    }

    .stat-icon-orange {
      background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
      font-size: 28px;
    }

    .stat-icon-purple {
      background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
      font-size: 28px;
    }

    .stat-icon-green {
      background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
      font-size: 28px;
    }

    .stat-number {
      font-size: 32px;
      font-weight: 800;
      color: #2563eb;
      margin-bottom: 6px;
      display: block;
    }

    .stat-label {
      font-size: 13px;
      color: #666;
      font-weight: 500;
    }

    /* Floating animation for logo */
    .logo-card {
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-15px);
      }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .hero-title {
        font-size: 48px;
      }

      .stats-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero-section {
        padding: 60px 5%;
      }

      .hero-title {
        font-size: 36px;
      }

      .courses-grid {
        padding: 30px 24px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: center;
      }
    }

    @media (max-width: 600px) {
      .hero-title {
        font-size: 32px;
      }

      .courses-grid {
        grid-template-columns: 1fr;
      }

      .stats-container {
        grid-template-columns: 1fr;
      }

      .logo-placeholder {
        width: 150px;
        font-size: 16px;
      }
    }

/* ===== Section ===== */
.gov-section{
  padding:90px 8%;
  background:#f8fbff;
  text-align:center;
}

/* container */
.gov-container{
  max-width:1200px;
  margin:auto;
}

/* badge */
.gov-badge{
  display:inline-block;
  background:#eaf1ff;
  color:#2f63ff;
  padding:8px 20px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  margin-bottom:20px;
}

/* title */
.gov-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:10px;
}

.gov-title span{
  color:#ff7a00;
}

/* subtitle */
.gov-sub{
  color:#666;
  margin-bottom:40px;
}

/* card */
.gov-card{
  background:#fff;
  padding:45px;
  border-radius:22px;
  box-shadow:0 12px 40px rgba(0,0,0,.07);
}

/* logos grid */
.gov-logos{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  align-items:center;
  margin-bottom:25px;
}

/* logo box */
.gov-logo{
  opacity:0;
  transform:translateY(40px);
  transition:.6s ease;
}

.gov-logo.show{
  opacity:1;
  transform:translateY(0);
}

/* image */
.gov-logo img{
  max-height:70px;
  width:auto;
  transition:.35s;
}

/* hover zoom */
.gov-logo:hover img{
  transform:scale(1.15);
}

/* bottom text */
.gov-bottom{
  border-top:1px solid #e6ecf7;
  padding-top:18px;
  font-size:14px;
  color:#555;
}

.gov-bottom span{
  color:#2f63ff;
  font-weight:600;
}

/* ===== Responsive ===== */
@media(max-width:992px){
  .gov-logos{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
  }
}

@media(max-width:600px){

  .gov-section{
    padding:60px 20px;
  }

  .gov-title{
    font-size:24px;
  }

  .gov-logos{
    grid-template-columns:1fr;
    gap:25px;
  }
}
/* ===== Responsive ===== */

@media(max-width:992px){
  .gov-logos{
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    justify-items:center;   /* center logos */
    text-align:center;
  }
}

@media(max-width:600px){

  .gov-section{
    padding:50px 20px;
    text-align:center;      /* center all text */
  }

  .gov-card{
    padding:30px 20px;      /* smaller padding for mobile */
  }

  .gov-title{
    font-size:24px;
    text-align:center;
  }

  .gov-sub{
    text-align:center;
  }

  .gov-logos{
    grid-template-columns:1fr;
    gap:25px;
    justify-items:center;   /* center each logo */
  }

  .gov-logo{
    display:flex;
    justify-content:center;
    align-items:center;
  }

  .gov-logo img{
    max-height:60px;
  }

  .gov-bottom{
    text-align:center;
  }
}


/* ================= SECTION ================= */
.skill-programs{
  padding:20px 8%;
  background:#f7faff;
}

/* heading */
.skill-head{
  text-align:center;
  margin-bottom:60px;
}

.skill-badge{
  background:#eaf1ff;
  color:#2f63ff;
  padding:8px 18px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.skill-title{
  font-size:42px;
  margin:18px 0 10px;
  font-weight: 700;
}

.skill-title span{
  color:#ff7a00;
}

.skill-sub{
  max-width:650px;
  margin:auto;
  color:#666;
}


/* ================= GRID ================= */
.skill-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}


/* ================= CARD ================= */
.skill-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);

  transform:translateY(70px);
  opacity:0;
  transition:.6s;
}

.skill-card.show{
  transform:translateY(0);
  opacity:1;
}


/* image */
.skill-img{
  position:relative;
  overflow:hidden;
}

.skill-img img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:.5s;
}

/* zoom OUT effect */
.skill-card:hover .skill-img img{
  transform:scale(0.92);
}

.skill-tag{
  position:absolute;
  top:14px;
  right:14px;
  background:#2f63ff;
  color:#fff;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
}


/* body */
.skill-body{
  padding:22px;
}

.skill-body h3{
  font-size:18px;
  margin-bottom:8px;
}

.skill-meta{
  font-size:13px;
  color:#666;
  margin-bottom:14px;
}


/* chips */
.skill-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}

.skill-chips span{
  background:#eef2ff;
  font-size:12px;
  padding:6px 10px;
  border-radius:14px;
}


/* bottom */
.skill-bottom{
  display:flex;
  justify-content:space-between;
  font-size:13px;
}

.skill-bottom b{
  color:#2f63ff;
}


/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .skill-grid{
    grid-template-columns:1fr;
  }
}
/* ================= MOBILE RESPONSIVE ================= */

@media(max-width: 768px){

  .skill-programs{
    padding:50px 20px;  /* smaller side spacing */
  }

  .skill-head{
    margin-bottom:35px;
    text-align:center;
  }

  .skill-title{
    font-size:26px;   /* smaller title */
  }

  .skill-sub{
    font-size:14px;
    padding:0 10px;
  }

  .skill-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .skill-card{
    border-radius:14px;
  }

  /* smaller image height for mobile */
  .skill-img img{
    height:200px;
  }

  .skill-body{
    padding:18px;
    text-align:center;
  }

  .skill-body h3{
    font-size:16px;
  }

  .skill-meta{
    font-size:12px;
  }

  /* center chips */
  .skill-chips{
    justify-content:center;
  }

  .skill-bottom{
    flex-direction:column;
    gap:6px;
    align-items:center;
    text-align:center;
  }
}


/* Extra small devices */
@media(max-width:480px){

  .skill-title{
    font-size:22px;
  }

  .skill-img img{
    height:170px;
  }

  .skill-tag{
    font-size:11px;
    padding:5px 10px;
  }
}



/* Section Background */
.why-choose-us {
    background: linear-gradient(135deg, #2464e8, #2249c7);
    padding: 60px 5%;
    color: #fff;
    text-align: center;
}

/* Top Text */
.why-btn {
    background: #fff;
    color: #2464e8;
    padding: 8px 18px;
    border-radius: 20px;
    border: 0;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-choose-us h2 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
}

.why-choose-us h2 span {
    color: #ff8c2a;
}

.why-choose-us p {
    margin-bottom: 40px;
    font-size: 15px;
    opacity: 0.9;
}

/* Cards Layout */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 25px;
}

/* Card Style */
.card {
    background: rgba(255,255,255,0.13);
    padding: 25px;
    border-radius: 14px;
    text-align: left;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease-out forwards;
}

.card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* Card Image */
.card img {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;

    
    /* make image white */
    filter: brightness(0) invert(1);
}

/* Fade Up Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay each card slightly */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Text */
@media(max-width: 600px) {
    .why-choose-us h2 {
        font-size: 26px;
    }
    .card img {
        width: 45px;
        height: 45px;
    }
}


.journey-section {
    padding: 60px 5%;
    text-align: center;
}

/* Top Heading */
.how-btn {
    background: #e4edff;
    border: none;
    padding: 7px 20px;
    border-radius: 20px;
    color: #4169e1;
    font-weight: 600;
}

.jx-top h2 {
    font-size: 32px;
    margin-top: 10px;
    font-weight: 700;
}

.jx-top h2 span {
    color: #ff7b00;
}

.jx-top p {
    color: #777;
    margin-bottom: 40px;
}

/* Steps Container */
.steps-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
}

/* Blue Line Behind Cards */
.progress-line {
    width: 0;
    height: 4px;
    background: #3b82f6;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    overflow: hidden;
    top: 55px;
}


/* Step Cards */
.step-card {
    position: relative;
    width: 260px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index: 2;

    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

/* Icon Circle */
.icon-circle {
    width: 70px;
    height: 70px;
    margin: -55px auto 10px auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue {
    background: #2e68ff;
}
.orange {
    background: #ff7b00;
}

.icon-circle img {
    width: 32px;
}

/* Card Text */
.num {
    font-size: 26px;
    color: #424242;
    font-weight: 700;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 6px;
}

.step-card p {
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 900px) {
    .steps-container {
        flex-direction: column;
        gap: 70px;
    }
    .progress-line {
        display: none;
    }
}
/* ==============================
   Mobile Responsive Fix
============================== */

@media(max-width: 900px) {

    .steps-container {
        flex-direction: column;
        align-items: center;   /* center cards */
        gap: 60px;
    }

    .progress-line {
        display: none;
    }

    .step-card {
        width: 100%;          /* full width */
        max-width: 320px;     /* nice mobile size */
        margin: 0 auto;
    }
}

@media(max-width: 600px) {

    .journey-section {
        padding: 50px 20px;
    }

    .jx-top h2 {
        font-size: 24px;
    }

    .jx-top p {
        font-size: 14px;
    }

    .step-card {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        margin: -45px auto 10px auto; /* smaller offset */
    }

    .icon-circle img {
        width: 26px;
    }

    .step-card h3 {
        font-size: 18px;
    }

    .step-card p {
        font-size: 13px;
    }
}


/* ================= SECTION ================= */
.contact-section{
  padding:90px 8%;
  background:linear-gradient(135deg,#0f1c2e,#08111f);
  color:#fff;
  font-family:system-ui, sans-serif;
}


/* ===== Heading ===== */
.contact-head{
  text-align:center;
  margin-bottom:60px;
}

.contact-badge{
  background:#1b2a42;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
}

.contact-head h2{
  font-size:38px;
  margin:14px 0;
  font-weight: 700;
}

.contact-head span{
  color:#ff7a00;
}

.contact-head p{
  color:#c8d2e2;
  max-width:650px;
  margin:auto;
}


/* ===== Grid ===== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:50px;
  align-items:center;
}


/* ================= LEFT ================= */
.contact-left{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.contact-card{
  background:#1a2638;
  padding:22px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  transition:.3s;
}

.contact-card:hover{
  transform:scale(1.05);
  background:#22314a;
}

.c-icon{
  width:42px;
  height:42px;
  background:#ff7a00;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.contact-card h4{
  font-size:14px;
  margin-bottom:6px;
}

.contact-card p{
  font-size:13px;
  color:#cbd5e1;
  line-height:1.5;
}


/* ================= RIGHT FORM ================= */
.contact-form{
  background:#fff;
  padding:28px;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:#000;
}

.contact-form input,
.contact-form textarea{
  padding:12px;
  border-radius:8px;
  border:1px solid #ddd;
  font-size:14px;
}

.contact-form textarea{
  min-height:110px;
  resize:none;
}

.contact-form button{
  margin-top:10px;
  background:#2b5cff;
  color:#fff;
  padding:12px;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  transform:scale(1.04);
}


/* ================= ANIMATIONS ================= */
.slide-left{
  transform:translateX(-80px);
  opacity:0;
  transition:1s;
}

.slide-right{
  transform:translateX(80px);
  opacity:0;
  transition:1s;
}

.show{
  transform:translateX(0);
  opacity:1;
}


/* ================= RESPONSIVE ================= */
@media(max-width:992px){

  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-left{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){

  .contact-left{
    grid-template-columns:1fr;
  }

  .contact-head h2{
    font-size:26px;
  }
}


/* =============================
   Footer
============================= */
.bv-footer{
    background:#1f4ea3;
    color:#fff;
    padding-top:60px;
    font-size:14px;
}

/* container */
.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap:50px;
}

/* logo */
.footer-logo{
    height:90px;
    margin-bottom:18px;
    margin-left: 20px;
}

/* about text */
.footer-about p{
    line-height:1.7;
    margin-bottom:20px;
    opacity:0.9;
}

/* headings */
.footer-col h3{
    margin-bottom:18px;
    font-size:16px;
    font-weight:600;
    position:relative;
}

/* list */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

/* links */
.footer-col a{
    color:#fff;
    text-decoration:none;
    opacity:0.9;
    transition:0.3s;
}

.footer-col a:hover{
    opacity:1;
    padding-left:6px;
}

/* social icons */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s;
}

.social-icons a:hover{
    background:#ff7a00;
}

/* contact icons */
.contact-info i{
    margin-right:8px;
}

/* bottom bar */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:50px;
    padding:20px 5%;

    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.footer-links{
    display:flex;
    gap:20px;
}


/* =============================
   Mobile Responsive
============================= */
@media(max-width:992px){

    .footer-container{
        grid-template-columns: 1fr 1fr;
        gap:40px;
    }
}

@media(max-width:600px){

    .footer-container{
        grid-template-columns: 1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}
