 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     overflow: auto !important;
 }

 body {
     font-family: 'Inter', sans-serif;
     overflow-x: hidden;
     background: #f8fafc;
 }
a.text-dark.text-decoration-none.hover-warning {
    font-size: 18px;
}
.d-none.d-lg-flex.gap-4.fw-semibold.align-items-center{
    font-size: 18px !important;
}
 .primary {
     color: #e8a838;
 }

 .primary-bg {
     background-color: #e8a838;
 }

 .primary-bg:hover {
     background-color: #d4952a;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(232, 168, 56, 0.3);
 }

 .hero-bg {
     background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
     position: relative;
     overflow: hidden;
 }

 /* Premium Course Cards */
 .course-card {
     background: #fff;
     border-radius: 20px;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     height: 100%;
     border: 1px solid rgba(0, 0, 0, 0.05);
     cursor: pointer;
 }

 .course-card:hover {
     transform: translateY(-12px);
     box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
     border-color: #e8a838;
 }

 .course-card .p-5 {
     transition: all 0.4s ease;
 }

 .course-card:hover .p-5 {
     transform: scale(1.05);
 }

 .hero-section p {
     line-height: 1.8;
     letter-spacing: 0.5px;
     font-weight: 500;
 }

 .hero-bg::before {
     content: '';
     position: absolute;
     width: 150%;
     height: 150%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
     top: -25%;
     left: -25%;
     animation: ripple 20s linear infinite;
 }

 @keyframes ripple {
     0% {
         transform: scale(1) translate(0, 0);
     }

     50% {
         transform: scale(1.1) translate(2%, 2%);
     }

     100% {
         transform: scale(1) translate(0, 0);
     }
 }

 .hero-bg::before {
     content: '';
     position: absolute;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
     animation: rotate 35s linear infinite;
 }

 @keyframes rotate {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 .top-header {
     background: #0f172a;
     color: #cbd5e1;
 }

 .marquee {
     overflow: hidden;
     white-space: nowrap;
 }

 .marquee-content {
     display: inline-flex;
     animation: marquee 30s linear infinite;
 }

 .marquee-content:hover {
     animation-play-state: paused;
 }

 @keyframes marquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 nav {
     backdrop-filter: blur(10px);
     background: rgba(255, 255, 255, 0.98);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 }

 /* Mobile Menu - Left aligned */
 .mobile-menu {
     position: fixed;
     top: 0;
     left: -100%;
     width: 85%;
     max-width: 360px;
     height: 100vh;
     background: white;
     z-index: 1000;
     transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: 4px 0 30px rgba(0, 0, 0, 0.1);
     overflow-y: auto;
     padding: 80px 0 20px;
 }

 .mobile-menu.active {
     left: 0;
 }

 .mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s;
     backdrop-filter: blur(3px);
 }

 .mobile-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu .nav-item {
     padding: 0;
     border-bottom: 1px solid #f1f5f9;
 }

 .mobile-menu .nav-link {
     padding: 16px 24px !important;
     font-size: 15px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .mobile-menu .dropdown-content {
     background: #f8fafc;
     display: none;
 }

 .mobile-menu .dropdown-content.show {
     display: block;
 }

 .mobile-menu .dropdown-content a {
     padding: 12px 24px 12px 40px;
     display: block;
     color: #475569;
     font-size: 14px;
     text-decoration: none;
     border-bottom: 1px solid #e2e8f0;
 }

 .mobile-menu .dropdown-btn {
     padding: 16px 24px;
     color: #1e293b;
     font-weight: 500;
     text-decoration: none;
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     background: none;
     border: none;
     border-bottom: 1px solid #f1f5f9;
     text-align: left;
 }

 .mobile-menu .dropdown-btn:hover {
     color: #e8a838;
     background: #f8fafc;
 }

 .hamburger {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     width: 24px;
     height: 18px;
     background: transparent;
     border: none;
     cursor: pointer;
     padding: 0;
     z-index: 1001;
     position: relative;
 }

 .hamburger span {
     width: 100%;
     height: 2px;
     background: #0f172a;
     border-radius: 4px;
     transition: all 0.3s ease;
 }

 .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);
 }

 /* Nav link hover - NO underline */
 nav a {
     transition: color 0.3s;
     text-decoration: none !important;
 }

 .nav-link-hover:hover {
     color: #e8a838 !important;
 }

 /* Course Cards */
 .course-card {
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     cursor: pointer;
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 }

 .course-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.15);
 }

 .course-card img {
     width: 100%;
     object-fit: cover;
 }

 @media (max-width: 767px) {
     .course-card img {
         height: 225px;
     }

     .course-card {
         border-radius: 12px;
     }
 }

 @media (min-width: 768px) {
     .course-card img {
         height: 225px;
     }
 }

 /* Trust Stats Section */
 .trust-section {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     padding: 3rem 1rem;
 }

 .trust-item {
     background: white;
     border-radius: 16px;
     padding: 1.2rem 0.5rem;
     text-align: center;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
     transition: all 0.4s ease;
     border: 1px solid rgba(232, 168, 56, 0.1);
     height: 100%;
 }

 .trust-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(232, 168, 56, 0.15);
     border-color: #e8a838;
 }

 .trust-icon {
     font-size: 1.8rem;
     margin-bottom: 0.5rem;
     animation: iconFloat 3s ease-in-out infinite;
 }

 @keyframes iconFloat {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-5px);
     }
 }

 .trust-item h3 {
     font-size: 1.3rem;
     font-weight: 800;
     background: linear-gradient(135deg, #11337e 0%, #1e40af 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     margin-bottom: 0.2rem;
 }

 .trust-item p {
     color: #475569;
     font-weight: 600;
     font-size: 0.75rem;
 }

 @media (min-width: 768px) {
     .trust-item {
         padding: 2rem 1rem;
     }

     .trust-icon {
         font-size: 2.5rem;
     }

     .trust-item h3 {
         font-size: 2rem;
     }

     .trust-item p {
         font-size: 0.9rem;
     }
 }

 @media (max-width: 768px) {
     .hero-section {
         min-height: 215px !important;
     }
 }

 /* Training Options */
.training-section {
    background: linear-gradient(135deg, #11337e 0%, #1a4aad 100%);
    padding: 3rem 1rem;
}

.journey-highlight-section {
    background:
        radial-gradient(circle at top left, rgba(232, 168, 56, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(17, 51, 126, 0.18), transparent 36%),
        linear-gradient(135deg, #fff8ea 0%, #ffffff 48%, #eef4ff 100%);
}

.journey-highlight-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(11, 26, 67, 0.98) 0%, rgba(17, 51, 126, 0.96) 55%, rgba(232, 168, 56, 0.94) 100%);
    border-radius: 28px;
    padding: 2rem 1.25rem;
    color: #fff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.journey-highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.16), transparent 22%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 45%, transparent 100%);
    pointer-events: none;
}

.journey-highlight-header,
.journey-phase-track {
    position: relative;
    z-index: 1;
}

.journey-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffe6af;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.journey-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
}

.journey-title-highlight {
    display: inline-block;
    color: #ffe39a;
    text-shadow: 0 0 18px rgba(255, 227, 154, 0.35);
    position: relative;
}

.journey-title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.1em;
    background: linear-gradient(90deg, rgba(232, 168, 56, 0.18) 0%, rgba(255, 211, 105, 0.42) 100%);
    border-radius: 999px;
    z-index: -1;
}

.journey-subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.8;
}

.journey-stat-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 1.25rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.journey-stat-badge strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff6dc;
    margin-bottom: 0.35rem;
}

.journey-stat-badge span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.6;
}

.journey-phase-track {
    position: relative;
    margin-top: 2rem;
}

.journey-track-line {
    position: absolute;
    top: 1.05rem;
    left: 4%;
    right: 4%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 230, 175, 0.85) 50%, rgba(255, 255, 255, 0.18) 100%);
    display: none;
}

.journey-phase-card {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 1.5rem 1.25rem;
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.journey-phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.2);
    border-color: rgba(255, 230, 175, 0.55);
}

.journey-phase-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.85rem;
    color: #fff;
}

.journey-phase-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.journey-phase-label {
    color: #ffe6af;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.journey-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.journey-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
}

.journey-list li:last-child {
    margin-bottom: 0;
}

.journey-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffd369;
    box-shadow: 0 0 0 4px rgba(255, 211, 105, 0.16);
}

.phase-one {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.09) 100%);
}

.phase-two {
    background: linear-gradient(180deg, rgba(41, 152, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.phase-three {
    background: linear-gradient(180deg, rgba(33, 197, 156, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.phase-four {
    background: linear-gradient(180deg, rgba(232, 168, 56, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
}

@media (min-width: 992px) {
    .journey-highlight-card {
        padding: 3rem;
    }

    .journey-title {
        font-size: 3rem;
    }

    .journey-track-line {
        display: block;
    }

    .journey-phase-card {
        padding: 1.8rem 1.4rem;
    }
}

@media (max-width: 767px) {
    .journey-highlight-card {
        border-radius: 22px;
    }

    .journey-title {
        font-size: 1.7rem;
    }

    .journey-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

.training-card {
    background: white;
    border-radius: 16px;
     padding: 1.2rem 0.8rem;
     transition: all 0.4s ease;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     height: 100%;
 }

 .training-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 35px rgba(232, 168, 56, 0.15);
 }

 .card-icon {
     font-size: 2rem;
     margin-bottom: 0.8rem;
 }

 .card-features {
     list-style: none;
     padding: 0;
 }

 .card-features li {
     padding: 0.3rem 0 0.3rem 1.2rem;
     position: relative;
     color: #334155;
     border-bottom: 1px dashed #e2e8f0;
     font-size: 0.8rem;
 }

 .card-features li::before {
     content: "▹";
     position: absolute;
     left: 0;
     color: #e8a838;
     font-size: 0.9rem;
 }

 @media (min-width: 768px) {
     .training-card {
         padding: 2rem 1.5rem;
         border-radius: 20px;
     }

     .card-icon {
         font-size: 3rem;
     }

     .card-features li {
         font-size: 0.95rem;
         padding: 0.4rem 0 0.4rem 1.5rem;
     }
 }

 /* Methodology Section */
 .methodology-section {
     background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     padding: 3rem 1rem;
 }

 .process-card {
     background: white;
     border-radius: 16px;
     padding: 1.2rem 0.6rem;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
     border: 2px solid transparent;
     transition: all 0.3s ease;
     height: 100%;
     cursor: pointer;
     text-align: center;
 }

 .process-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 30px rgba(232, 168, 56, 0.15);
     border-color: #e8a838;
 }

 .process-number {
     width: 45px;
     height: 45px;
     margin: 0 auto 0.8rem;
     background: linear-gradient(135deg, #11337e 0%, #1e40af 100%);
     color: white;
     font-size: 1.3rem;
     font-weight: 800;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 6px 15px rgba(17, 51, 126, 0.3);
     transition: all 0.4s ease;
     animation: pulseGlow 2.5s ease-in-out infinite;
 }

 .process-card h4 {
     font-size: 0.9rem;
     margin-bottom: 0.3rem;
 }

 .process-card p {
     font-size: 0.7rem;
 }

 @media (min-width: 768px) {
     .process-card {
         padding: 2rem 1rem;
     }

     .process-number {
         width: 60px;
         height: 60px;
         font-size: 1.8rem;
     }

     .process-card h4 {
         font-size: 1.2rem;
     }

     .process-card p {
         font-size: 0.9rem;
     }
 }

 @keyframes pulseGlow {

     0%,
     100% {
         box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.6), 0 6px 15px rgba(17, 51, 126, 0.3);
     }

     50% {
         box-shadow: 0 0 0 10px rgba(232, 168, 56, 0), 0 6px 15px rgba(17, 51, 126, 0.4);
     }
 }

 .process-card:hover .process-number {
     transform: scale(1.1) rotate(360deg);
     background: linear-gradient(135deg, #e8a838 0%, #fbbf24 100%);
     color: #0f172a;
 }

 /* Career Support Section */
 .career-support-section {
     background: linear-gradient(135deg, #11337e 0%, #1a4aad 100%);
     padding: 3rem 1rem;
 }

 .career-card {
     background: white;
     border-radius: 16px;
     padding: 1.5rem 0.8rem;
     height: 100%;
     transition: all 0.4s;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     text-align: center;
 }

 .career-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
     border: 1px solid #e8a838;
 }

 .icon-circle {
     width: 50px;
     height: 50px;
     margin: 0 auto 0.8rem;
     background: linear-gradient(135deg, #e8a838 0%, #fbbf24 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     box-shadow: 0 8px 20px rgba(232, 168, 56, 0.3);
     transition: all 0.4s;
 }

 .career-card h3 {
     font-size: 1rem;
     margin-bottom: 0.3rem;
 }

 .career-card p {
     font-size: 0.75rem;
     color: #475569;
 }

 @media (min-width: 768px) {
     .icon-circle {
         width: 75px;
         height: 75px;
         font-size: 2.2rem;
     }

     .career-card {
         padding: 2.2rem 1.2rem;
         border-radius: 20px;
     }

     .career-card h3 {
         font-size: 1.2rem;
     }

     .career-card p {
         font-size: 0.9rem;
     }
 }

 /* Welcome Section */
 .welcome-section {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     padding: 3rem 1rem;
     position: relative;
     overflow: hidden;
 }

 .timeline-item {
     animation: slideInRight 0.6s ease backwards;
     padding: 0.8rem 1rem;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(10px);
     border-radius: 12px;
     margin-bottom: 0.6rem;
     border-left: 3px solid #ffe45f;
     transition: all 0.3s;
 }

 .timeline-number {
     width: 32px;
     height: 32px;
     background: linear-gradient(135deg, #ffe45f, #e8a838);
     color: #11337e;
     font-weight: 800;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.9rem;
 }

 @media (min-width: 768px) {
     .timeline-item {
         padding: 1.2rem 1.5rem;
         border-radius: 16px;
     }

     .timeline-number {
         width: 45px;
         height: 45px;
         font-size: 1.2rem;
     }
 }

 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(30px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* Footer */
 footer {
     background: #0f172a;
     position: relative;
     overflow: hidden;
     padding: 2.5rem 1rem;
 }

 .section-title {
     font-size: clamp(1.6rem, 5vw, 2.5rem);
     font-weight: 700;
     text-align: center;
     margin-bottom: 0.5rem;
 }

 .title-underline {
     width: 50px;
     height: 3px;
     background: #e8a838;
     margin: 0.5rem auto 1.5rem;
     border-radius: 3px;
 }

 html {
     scroll-behavior: smooth;
 }

 ::-webkit-scrollbar {
     width: 5px;
 }

 ::-webkit-scrollbar-track {
     background: #f1f1f1;
 }

 ::-webkit-scrollbar-thumb {
     background: linear-gradient(135deg, #11337e, #1e40af);
     border-radius: 3px;
 }

 button {
     position: relative;
     overflow: hidden;
 }

 .ripple {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.4);
     transform: scale(0);
     animation: rippleAnim 0.6s ease-out;
     pointer-events: none;
 }

 @keyframes rippleAnim {
     to {
         transform: scale(4);
         opacity: 0;
     }
 }

 .footer-links a {
     transition: color 0.2s;
 }

 .footer-links a:hover {
     color: #e8a838;
 }

 .footer-social a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 35px;
     height: 35px;
     background: #1e293b;
     border-radius: 50%;
     transition: all 0.3s;
 }

 .footer-social a:hover {
     background: #e8a838;
     color: #0f172a;
     transform: translateY(-3px);
 }

 /* Dropdown Menu */
 .dropdown-menu {
     min-width: 220px;
     padding: 0.5rem 0;
     margin-top: 0 !important;
     border: none;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 .dropdown-item {
     padding: 0.6rem 1.2rem;
     transition: all 0.2s;
 }

 .dropdown-item:hover {
     background-color: #f8f9fa;
     color: #e8a838;
     padding-left: 1.5rem;
 }

 .dropdown-header {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     padding: 0.8rem 1.2rem 0.4rem;
 }

 .dropdown-toggle::after {
     margin-left: 0.5rem;
     vertical-align: middle;
 }

 .dropdown:hover .dropdown-menu {
     display: block;
 }

 /* Methodology Row */
 .methodology-row {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
 }

 .methodology-row .col {
     flex: 0 0 auto;
     width: 130px;
     padding: 5px;
 }

 @media (min-width: 768px) {
     .methodology-row .col {
         width: 180px;
     }
 }

 @media (max-width: 767px) {
     .methodology-row {
         justify-content: flex-start;
         overflow-x: auto;
         flex-wrap: nowrap;
         padding-bottom: 10px;
         -webkit-overflow-scrolling: touch;
     }

     .methodology-row .col {
         min-width: 130px;
     }
 }

 /* Remove all underlines */
 a,
 a:hover,
 a:focus,
 .nav-link,
 .dropdown-toggle {
     text-decoration: none !important;
 }

 nav a::after {
     display: none !important;
 }

 /* Buttons */
 .btn-primary-custom {
     background: #e8a838;
     color: #0f172a;
     font-weight: 600;
     padding: 10px 24px;
     border-radius: 40px;
     border: none;
     transition: all 0.3s;
 }

 .btn-primary-custom:hover {
     background: #d4952a;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(232, 168, 56, 0.3);
 }



 /* Hero Section */
 .hero-section {
     /* background: url('../../assets/images/Hero/hero.png') no-repeat center center/cover; */
     background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
     position: relative;
     overflow: hidden;
     padding: 40px 0;
     min-height: 500px;
     display: flex;
     align-items: center;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     /* background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.7) 100%); */
 }

 @media (min-width: 768px) {
     .hero-section {
         min-height: 600px;
         padding: 60px 0;
     }
 }

 @media (min-width: 1024px) {
     .hero-section {
         min-height: 700px;
     }
 }

 /* Counter Area */
 .counter-area {
     background-size: cover;
     background-position: center;
     position: relative;
     padding: 50px 0;
 }

 .counter-area::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(221, 221, 221, 0.85);
 }

 .counter-area .container {
     position: relative;
     z-index: 1;
 }

 .counter1-box {
     text-align: center;
     color: white;
 }

 .about-counter {
     font-size: 36px;
     font-weight: 700;
     color: #e8a838;
     margin-bottom: 0;
     position: relative;
     display: inline-block;
 }

 .title-bar-counter {
     position: relative;
 }

 .title-bar-counter::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 30px;
     height: 2px;
     background: #e8a838;
 }

 .counter1-box p {
     color: rgb(0, 0, 0);
     font-size: 13px;
     font-weight: 500;
 }

 @media (min-width: 768px) {
     .about-counter {
         font-size: 42px;
     }

     .counter1-box p {
         font-size: 15px;
         padding-top: 30px !important;
     }

     .counter-area {
         padding: 70px 0;
     }
 }

 /* Company Marquee Styles with Blur */
 .company-scroll {
     overflow: hidden;
     position: relative;
     width: 100%;
     padding: 5px 0;
 }

 .company-scroll::before,
 .company-scroll::after {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     width: 60px;
     z-index: 2;
     pointer-events: none;
 }

 .company-scroll::before {
     left: 0;
     background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
 }

 .company-scroll::after {
     right: 0;
     background: linear-gradient(to left, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
 }

 @media (min-width: 768px) {

     .company-scroll::before,
     .company-scroll::after {
         width: 100px;
     }
 }

 .company-marquee {
     display: flex;
     width: 100%;
     overflow: hidden;
     user-select: none;
 }

 .company-marquee-content {
     display: flex;
     gap: 1.5rem;
     padding: 0.5rem 0;
     animation: companyScroll 30s linear infinite;
 }

 .company-marquee.reverse .company-marquee-content {
     animation: companyScrollReverse 30s linear infinite;
 }

 .company-logo {

     max-width: fit-content;
     border-radius: 6px;

 }



 @keyframes companyScroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 @keyframes companyScrollReverse {
     0% {
         transform: translateX(-50%);
     }

     100% {
         transform: translateX(0);
     }
 }



 @media (min-width: 768px) {
     /* .company-logo {
                //height: 50px;
                max-width: 150px;
            } */

     .company-marquee-content {
         gap: 2.5rem;
     }
 }

 @media (min-width: 1024px) {
     /* .company-logo {
                height: 60px;
                max-width: 170px;
            } */

     .company-marquee-content {
         gap: 3.5rem;
     }
 }

 /* Float Animation */
 .float-animation {
     animation: float 4s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-8px);
     }
 }

 /* Hero Badge */
 .hero-badge {
     background: rgba(232, 168, 56, 0.15);
     color: #e8a838;
     padding: 5px 14px;
     border-radius: 30px;
     font-size: 12px;
     font-weight: 500;
     display: inline-block;
     margin-bottom: 15px;
     border: 1px solid rgba(232, 168, 56, 0.3);
 }

 .btn-outline-custom {
     background: transparent;
     color: white;
     font-weight: 500;
     padding: 8px 20px;
     border-radius: 40px;
     border: 1.5px solid rgba(255, 255, 255, 0.3);
     transition: all 0.3s;
 }

 .btn-outline-custom:hover {
     border-color: #e8a838;
     color: #e8a838;
 }

 /* --- Course Details Page Styles --- */
 .course-hero {
     background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
     padding: 48px 0 40px;
 }

 .hero-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     align-items: center;
     justify-content: space-between;
 }

 .hero-left {
     flex: 2.4;
 }

 .hero-badge {
     background: rgba(232, 168, 56, 0.15);
     display: inline-block;
     padding: 6px 14px;
     border-radius: 40px;
     font-size: 0.8rem;
     font-weight: 600;
     color: #e8a838;
     margin-bottom: 20px;
     border: 1px solid rgba(232, 168, 56, 0.3);
 }

 .hero-left h1 {
     font-size: 2.7rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 20px;
     color: #0f172a;
 }

 .hero-left p {
     font-size: 1.1rem;
     color: #475569;
     margin-bottom: 28px;
 }

 .stats-row {
     display: flex;
     gap: 32px;
     flex-wrap: wrap;
     margin: 28px 0;
 }

 .stat-item h3 {
     font-size: 2rem;
     font-weight: 800;
     color: #11337e;
 }

 .hero-right {
     flex: 1;
     background: white;
     border-radius: 28px;
     box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
     padding: 28px 24px;
 }

 .form-title {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 16px;
 }

 .form-group {
     margin-bottom: 18px;
 }

 .form-group input,
 .form-group select {
     width: 100%;
     padding: 12px 16px;
     border: 1px solid #e2e8f0;
     border-radius: 16px;
     font-family: inherit;
     outline: none;
 }

 .book-btn {
     background: #e8a838;
     color: #0f172a;
     width: 100%;
     padding: 14px;
     font-weight: 700;
     border: none;
     border-radius: 40px;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .book-btn:hover {
     background: #d4952a;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(232, 168, 56, 0.3);
 }

 .small-note {
     font-size: 12px;
     text-align: center;
     margin-top: 12px;
     color: #64748b;
 }

 .features {
     padding: 60px 0;
     background: white;
 }

 .section-sub {
     text-align: center;
     color: #475569;
     margin-bottom: 48px;
 }

 .feature-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 28px;
     justify-content: center;
 }

 .feat-card {
     background: #f8fafc;
     padding: 24px 20px;
     border-radius: 28px;
     flex: 1 1 200px;
     text-align: center;
     transition: 0.3s;
     border: 1px solid transparent;
 }

 .feat-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 30px rgba(232, 168, 56, 0.15);
     border-color: #e8a838;
 }

 .feat-card i {
     font-size: 2.5rem;
     color: #e8a838;
     margin-bottom: 12px;
 }

 .course-overview {
     background: #f1f5f9;
     padding: 60px 0;
 }

 .overview-stats {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
     margin-bottom: 40px;
 }

 .stat-badge {
     background: white;
     border-radius: 60px;
     padding: 12px 24px;
     font-weight: 600;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
 }

 .stat-badge i {
     color: #e8a838;
     margin-right: 5px;
 }

 .course-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 16px;
     margin: 32px 0;
 }

 .tech-tag {
     background: white;
     padding: 10px 20px;
     border-radius: 40px;
     font-weight: 500;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
     border: 1px solid rgba(232, 168, 56, 0.2);
 }

 .enroll-btn {
     background: #e8a838;
     color: #0f172a;
     border: none;
     padding: 14px 36px;
     border-radius: 40px;
     font-weight: 700;
     font-size: 1rem;
     cursor: pointer;
     transition: all 0.3s;
 }

 .enroll-btn:hover {
     background: #d4952a;
     transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(232, 168, 56, 0.3);
 }

 .projects {
     padding: 60px 0;
     background: white;
 }

 .project-cards {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
     gap: 28px;
     margin-top: 40px;
 }

 .project-card {
     background: #f8fafc;
     border-radius: 24px;
     padding: 24px;
     transition: 0.3s;
     border: 1px solid transparent;
 }

 .project-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(232, 168, 56, 0.15);
     border-color: #e8a838;
 }

 .project-card h4 {
     font-size: 1.25rem;
     margin-bottom: 12px;
     color: #0f172a;
 }

 .tech-stack {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: 16px;
 }

 .tech-stack span {
     background: white;
     padding: 4px 12px;
     border-radius: 30px;
     font-size: 0.7rem;
     font-weight: 600;
     color: #11337e;
 }

 .testimonials {
     background: #f8fafc;
     padding: 60px 0;
 }

 .testi-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 28px;
     margin-top: 40px;
 }

 .testi-card {
     background: white;
     border-radius: 24px;
     padding: 24px;
     flex: 1 1 280px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
     border: 1px solid rgba(232, 168, 56, 0.1);
 }

 .testi-name {
     font-weight: 700;
     margin-top: 16px;
     color: #11337e;
 }

 .company-hired {
     padding: 50px 0;
     text-align: center;
 }

 .hired-logos {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 40px;
     margin: 32px 0;
     font-weight: 600;
     color: #334155;
     font-size: 1.1rem;
 }

 .faq-section {
     padding: 60px 0;
     background: white;
 }

 .faq-list {
     max-width: 800px;
     margin: 0 auto;
 }

 .faq-item {
     border-bottom: 1px solid #e2e8f0;
 }

 .faq-question {
     width: 100%;
     text-align: left;
     background: none;
     border: none;
     padding: 20px 0;
     font-size: 1.1rem;
     font-weight: 600;
     color: #0f172a;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: color 0.3s;
 }

 .faq-question:hover {
     color: #e8a838;
 }

 .faq-question i {
     transition: transform 0.3s ease;
     color: #e8a838;
     font-size: 0.9rem;
 }

 .faq-question.active {
     color: #e8a838;
 }

 .faq-question.active i {
     transform: rotate(180deg);
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
 }

 .faq-answer p {
     padding-bottom: 20px;
     color: #475569;
     margin: 0;
     font-size: 1rem;
     line-height: 1.5;
 }

 /* Responsive fixes for course pages */
 @media (max-width: 991px) {
     .hero-grid {
         flex-direction: column;
         text-align: center;
     }

     .hero-left,
     .hero-right {
         flex: 1 1 100%;
         width: 100%;
     }

     .stats-row {
         justify-content: center;
         gap: 20px;
     }

     .course-tags {
         justify-content: center;
     }
 }

 @media (max-width: 800px) {
     .hero-left h1 {
         font-size: 2rem;
     }

     .stat-item h3 {
         font-size: 1.5rem;
     }
 }

 @media (max-width: 767px) {
     .feature-grid {
         justify-content: flex-start;
         overflow-x: auto;
         flex-wrap: nowrap;
         padding-bottom: 16px;
         -webkit-overflow-scrolling: touch;
     }

     .feat-card {
         min-width: 240px;
         flex: 0 0 auto;
     }
 }

 .course-breadcrumbs {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     font-size: 0.9rem;
     color: #64748b;
     margin-bottom: 14px;
 }

 .course-breadcrumbs a {
     color: #11337e;
 }

 .course-glance {
     border: 1px solid rgba(17, 51, 126, 0.08);
 }

 .glance-list {
     list-style: none;
     padding: 0;
     margin: 0 0 20px;
 }

 .glance-list li {
     display: flex;
     gap: 12px;
     align-items: flex-start;
     color: #334155;
     margin-bottom: 14px;
 }

 .glance-list i {
     color: #e8a838;
     margin-top: 4px;
 }

 .section-heading-row {
     display: flex;
     justify-content: space-between;
     align-items: end;
     gap: 20px;
 }

 .catalog-card {
     background: white;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
     color: inherit;
     border: 1px solid transparent;
 }

 .catalog-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(232, 168, 56, 0.15);
     border-color: #e8a838;
 }

 .catalog-card-top {
     height: 160px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 3.2rem;
 }

 .catalog-card-body {
     padding: 22px;
 }

 .catalog-card-body h3 {
     font-size: 1.15rem;
     font-weight: 800;
     color: #0f172a;
     margin-bottom: 12px;
 }

 .catalog-card-body p {
     color: #475569;
     line-height: 1.6;
     min-height: 78px;
     margin-bottom: 16px;
 }

 .catalog-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .catalog-meta span {
     padding: 8px 14px;
     border-radius: 999px;
     background: #f8fafc;
     border: 1px solid #e2e8f0;
     font-size: 0.8rem;
     font-weight: 600;
     color: #11337e;
 }

 .bg-python {
     background: linear-gradient(135deg, #1d4ed8, #0f172a);
 }

 .bg-java {
     background: linear-gradient(135deg, #ea580c, #7c2d12);
 }

 .bg-mern {
     background: linear-gradient(135deg, #0ea5e9, #0f766e);
 }

 .bg-mean {
     background: linear-gradient(135deg, #4f46e5, #1e293b);
 }

 .bg-react {
     background: linear-gradient(135deg, #06b6d4, #1e3a8a);
 }

 .bg-angular {
     background: linear-gradient(135deg, #dc2626, #7f1d1d);
 }

 .bg-vue {
     background: linear-gradient(135deg, #10b981, #14532d);
 }

 .bg-php {
     background: linear-gradient(135deg, #7c3aed, #312e81);
 }

 .bg-node {
     background: linear-gradient(135deg, #16a34a, #14532d);
 }

 .bg-mongo {
     background: linear-gradient(135deg, #059669, #064e3b);
 }

 .course-listing-section {
     background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
 }

 .curriculum-grid,
 .career-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 24px;
 }

 .module-card,
 .outcome-card {
     background: white;
     border-radius: 22px;
     padding: 24px;
     box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
     border: 1px solid rgba(148, 163, 184, 0.2);
     height: 100%;
     transition: all 0.3s ease;
 }

 .module-card:hover,
 .outcome-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(232, 168, 56, 0.15);
     border-color: #e8a838;
 }

 .module-card .module-number {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: #11337e;
     color: white;
     font-weight: 700;
     margin-bottom: 14px;
 }

 .module-card h4,
 .outcome-card h4 {
     font-size: 1.05rem;
     color: #0f172a;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .module-card p,
 .outcome-card p {
     color: #475569;
     margin-bottom: 0;
     line-height: 1.6;
 }

 .outcome-card i {
     font-size: 1.7rem;
     color: #e8a838;
     margin-bottom: 14px;
 }

 .inline-highlight-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 14px;
     padding: 0;
     margin: 30px 0 0;
     list-style: none;
 }

 .inline-highlight-list li {
     background: white;
     border-radius: 18px;
     padding: 16px 18px;
     border: 1px solid #e2e8f0;
     color: #334155;
     box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
 }

 .cta-strip {
     background: linear-gradient(135deg, #11337e 0%, #0f172a 100%);
     color: white;
     padding: 40px 0;
 }

 .cta-strip h3 {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 8px;
 }

 .cta-strip p {
     color: rgba(255, 255, 255, 0.78);
 }

 @media (max-width: 767px) {
     .catalog-card-body p {
         min-height: auto;
     }

     .section-heading-row {
         align-items: flex-start;
     }

     .cta-strip h3 {
         font-size: 1.4rem;
     }
 }

 /* ========================================= */
 /*       COURSE PAGE CSS ENHANCEMENTS        */
 /* ========================================= */

 .course-page .tech-tag {
     background: #ffffff;
     border: 1px solid #e2e8f0;
     color: #1e293b;
     padding: 10px 24px;
     border-radius: 40px;
     font-size: 1rem;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
     transition: all 0.3s;
 }

 .course-page .tech-tag:hover {
     border-color: #e8a838;
     transform: translateY(-3px);
     box-shadow: 0 10px 15px -3px rgba(232, 168, 56, 0.15);
 }

 .course-page .accordion-button:not(.collapsed) {
     background-color: #fffbeb;
     /* Light yellow active state */
     color: #000000;
     box-shadow: none;
 }

 .course-page .accordion-button:focus {
     box-shadow: none;
     border-color: rgba(232, 168, 56, 0.5);
 }

 .course-page .jobroles p {
     font-size: 1.1rem;
     color: #334155;
     padding: 16px 20px;
     background: #ffffff;
     border-radius: 12px;
     margin-bottom: 12px;
     border: 1px solid #e2e8f0;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     font-weight: 600;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
 }

 .course-page .jobroles p i {
     font-size: 1.4rem;
     margin-right: 14px;
     color: #e8a838;
 }

 .course-page .jobroles p:hover {
     border-color: #e8a838;
     transform: translateX(8px);
     box-shadow: 0 10px 15px -3px rgba(232, 168, 56, 0.1);
 }

 /* Enhanced UI for Skills, Overview, and Projects */
 .skill-card {
     transition: all 0.3s ease;
 }

 .skill-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
     border-color: #e8a838 !important;
 }

 .skill-card:hover .skill-icon {
     background-color: #e8a838 !important;
     color: white !important;
     transform: scale(1.1);
 }

 .skill-icon,
 .icon-wrapper {
     transition: all 0.3s ease;
 }

 .overview-box {
     transition: all 0.3s ease;
 }

 .overview-box:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
 }

 .overview-box:hover .icon-wrapper {
     transform: scale(1.1);
 }

 .project-card .project-img {
     transition: all 0.5s ease;
 }

 .project-card:hover .project-img {
     background-color: #eef2ff !important;
 }

 .project-card:hover .project-img i {
     color: #e8a838 !important;
     opacity: 1 !important;
     transform: scale(1.1);
 }

 /* Scrollable Testimonials */
 .testimonial-scroll {
     display: flex;
     flex-wrap: nowrap;
     overflow-x: auto;
     gap: 1.5rem;
     padding-bottom: 1.5rem;
     scroll-snap-type: x mandatory;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: thin;
     scrollbar-color: #e8a838 #f1f5f9;
     overflow: hidden;
 }

 .testimonial-scroll::-webkit-scrollbar {
     height: 8px;
 }

 .testimonial-scroll::-webkit-scrollbar-track {
     background: #f1f5f9;
     border-radius: 10px;
 }

 .testimonial-scroll::-webkit-scrollbar-thumb {
     background-color: #e8a838;
     border-radius: 10px;
 }

 .testimonial-scroll .testimonial-item-wrap {
     flex: 0 0 auto;
     width: 300px;
     scroll-snap-align: start;
 }

 @media (min-width: 768px) {
     .testimonial-scroll .testimonial-item-wrap {
         width: 350px;
     }
 }

 /* ========================================= */
 /*         MEGA MENU & HEADER REDESIGN       */
 /* ========================================= */

 .sticky-top {
     transition: all 0.4s ease;
 }

 .sticky-top.scrolled {
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(15px);
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
 }

 .nav-link-hover {
     position: relative;
     padding: 0.5rem 0;
 }

 .nav-link-hover::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: #e8a838;
     transition: width 0.3s ease;
 }

 .nav-link-hover:hover::after {
     width: 100%;
 }

 /* Mega Menu Container */
 .dropdown-mega {
     position: static !important;
 }

 .mega-menu {
     position: absolute;
     top: 100%;
     left: 0;
     width: 100vw;
     background: white;
     border: none;
     border-top: 2px solid #e8a838;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
     padding: 2.5rem 0;
     display: none;
     z-index: 1000;
     opacity: 0;
     transform: translateY(10px);
     transition: all 0.3s ease;
 }

 .dropdown-mega:hover .mega-menu {
     display: block;
     opacity: 1;
     transform: translateY(0);
 }

 .mega-menu-content {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
 }

 .mega-menu-category h6 {
     font-size: 0.85rem;
     font-weight: 800;
     text-transform: uppercase;
     color: #11337e;
     letter-spacing: 1px;
     margin-bottom: 1.5rem;
     padding-bottom: 8px;
     border-bottom: 2px solid #f1f5f9;
 }

 .mega-menu-list {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .mega-menu-link {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 10px 12px;
     color: #475569;
     font-size: 0.95rem;
     font-weight: 500;
     border-radius: 8px;
     transition: all 0.2s;
     text-decoration: none !important;
 }

 .mega-menu-link:hover {
     background: #f8fafc;
     color: #e8a838;
     transform: translateX(5px);
 }

 .mega-menu-link i {
     font-size: 1.1rem;
     color: #e8a838;
     opacity: 0.7;
 }

 /* Enhanced Sub-dropdowns */
 .dropdown-menu-custom {
     border: none;
     border-top: 3px solid #e8a838;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
     border-radius: 0 0 12px 12px;
     padding: 15px 0;
     min-width: 280px;
     display: none;
     opacity: 0;
     transform: translateY(10px);
     transition: all 0.3s ease;
 }

 .dropdown:hover .dropdown-menu-custom {
     display: block;
     opacity: 1;
     transform: translateY(0);
 }

 .dropdown-item-custom {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 12px 20px;
     color: #334155;
     font-weight: 500;
     transition: all 0.2s;
 }

 .dropdown-item-custom:hover {
     background: #f8fafc;
     color: #e8a838;
     padding-left: 28px;
 }

 .dropdown-item-custom .icon-wrap {
     width: 38px;
     height: 38px;
     background: #f1f5f9;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     color: #11337e;
     transition: all 0.2s;
 }

 .dropdown-item-custom:hover .icon-wrap {
     background: #e8a838;
     color: white;
 }

 .dropdown-item-custom .text-wrap span {
     display: block;
     font-size: 0.75rem;
     color: #64748b;
     font-weight: 400;
 }

 /* --- Counter Section --- */
 .counter-area {
     padding: 80px 0;
 }

 .counter1-box {
     text-align: center;
     padding: 20px;
 }

 .counter1-box h2 {
     font-size: 3.5rem;
     font-weight: 800;
     color: #e8a838;
     margin-bottom: 0;
 }

 .counter1-box p {
     color: #64748b;
     font-size: 1rem;
     margin-top: 10px;
     font-weight: 600;
 }

 /* --- Mobile Menu Polish --- */
 .mobile-menu-footer {
     padding: 20px;
     border-top: 1px solid rgba(0, 0, 0, 0.05);
 }

 .mobile-menu .btn-primary-custom {
     display: block;
     width: calc(100% - 40px);
     margin: 20px;
     text-align: center;
     padding: 15px;
     font-size: 1.1rem;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(234, 88, 12, 0.2);
     text-decoration: none !important;
 }

 @media (max-width: 768px) {
     .counter1-box h2 {
         font-size: 2.5rem;
     }
 }

 /* =========================================
   NAVIGATION & UI STYLES 
   ========================================= */

 /* Top level nav custom hover */
 .hover-warning {
     transition: color 0.3s ease;
 }

 .hover-warning:hover {
     color: #e8a838 !important;
 }

 /* Custom Dropdown Styling for Desktop */
 @media (min-width: 992px) {
     .dropdown:hover .dropdown-menu {
         display: block;
         margin-top: 0;
         animation: fadeIn 0.3s ease;
     }
 }

 .dropdown-menu-custom {
     border: none;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     border-radius: 12px;
     padding: 1rem;
     min-width: 320px;
     background: #fff;
 }

 .dropdown-item-custom {
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 12px 15px;
     border-radius: 8px;
     text-decoration: none;
     color: #333;
     transition: all 0.3s ease;
     margin-bottom: 5px;
 }

 .dropdown-item-custom:hover {
     background-color: #f8fafc;
     transform: translateX(5px);
 }

 .dropdown-item-custom .icon-wrap {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f1f5f9;
     border-radius: 8px;
     color: #e8a838;
     font-size: 1.2rem;
     transition: all 0.3s ease;
 }

 .dropdown-item-custom:hover .icon-wrap {
     background: #e8a838;
     color: #fff;
 }

 .dropdown-item-custom .text-wrap b {
     display: block;
     font-size: 0.95rem;
     margin-bottom: 2px;
 }

 .dropdown-item-custom .text-wrap span {
     display: block;
     font-size: 0.75rem;
     color: #64748b;
 }

 /* Mobile Menu & Hamburger */
 .hamburger {
     background: none;
     border: none;
     width: 30px;
     height: 24px;
     position: relative;
     cursor: pointer;
     z-index: 1001;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .hamburger span {
     display: block;
     height: 3px;
     width: 100%;
     background: #333;
     border-radius: 3px;
     transition: all 0.3s ease;
 }

 .hamburger.active span:nth-child(1) {
     transform: translateY(10px) rotate(45deg);
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: translateY(-11px) rotate(-45deg);
 }

 .mobile-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .mobile-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu {
     position: fixed;
     top: 0;
     right: -300px;
     width: 300px;
     height: 100vh;
     background: #fff;
     z-index: 1000;
     padding: 0px 20px 30px;
     overflow-y: auto;
     transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
 }

 .mobile-menu.active {
     right: 0;
 }

 .mobile-menu .nav-link,
 .mobile-menu .dropdown-btn {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     padding: 15px;
     color: #333;
     text-decoration: none;
     font-weight: 600;
     border-bottom: 1px solid #eee;
     background: none;
     border: none;
     font-family: inherit;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .mobile-menu .nav-link:hover,
 .mobile-menu .dropdown-btn:hover {
     color: #e8a838;
 }

 .mobile-menu .dropdown-content {
     display: none;
     background: #f8fafc;
     border-radius: 8px;
     margin: 5px 0;
 }

 .mobile-menu .dropdown-content.active {
     display: block;
 }

 .mobile-menu .dropdown-content a {
     display: block;
     padding: 12px 20px;
     color: #475569;
     text-decoration: none;
     font-size: 0.9rem;
     border-bottom: 1px solid #eee;
 }

 .mobile-menu .dropdown-content a:last-child {
     border-bottom: none;
 }

 .mobile-menu .dropdown-content a:hover {
     color: #e8a838;
     background: rgba(232, 168, 56, 0.05);
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 991px) {
     .dropdown-menu-custom {
         display: none;
         /* Handled by mobile menu */
     }
 }

 /* Mobile Menu Logo */
 .mobile-menu-logo {
     padding: 20px;
     text-align: center;
     background: #fff;
     border-bottom: 1px solid #f1f5f9;
     margin-bottom: 10px;
 }

 .mobile-menu-logo img {
     height: 50px;
     border-radius: 25px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

 /* Methodology Horizontal Scroll */
 .methodology-row {
     display: flex;
     flex-wrap: nowrap;
     overflow-x: auto;
     gap: 20px;
     padding: 20px 10px;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
     /* Firefox */
 }

 .methodology-row::-webkit-scrollbar {
     display: none;
     /* Chrome/Safari */
 }

 .methodology-row .col {
     flex: 0 0 280px;
     /* Fixed width for horizontal items */
     max-width: 280px;
 }

 @media (min-width: 992px) {
     .methodology-row {
         flex-wrap: wrap;
         justify-content: center;
         overflow-x: visible;
     }

     .methodology-row .col {
         flex: 0 0 calc(25% - 20px);
         max-width: calc(25% - 20px);
     }
 }

 /* Footer Refined Style */
 footer h5 {
     color: #e8a838 !important;
     font-size: 1.1rem !important;
     font-weight: 700 !important;
     margin-bottom: 1.5rem !important;
     position: relative;
     padding-bottom: 10px;
 }

 footer h5::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 30px;
     height: 3px;
     background: #e8a838;
     border-radius: 2px;
 }

 /* Hero Stats Responsive Fix */
 .hero-stats-card {
     transition: transform 0.3s ease;
 }

 .hero-stats-card:hover {
     transform: translateY(-5px);
 }

 /* Accordion Text Color Fix */
 .accordion-button {
     color: #000000 !important;
     font-weight: 600;
     background-color: #fff !important;
 }

 .accordion-button:not(.collapsed) {
     color: #000000 !important;
     background-color: #eef2ff !important;
     box-shadow: none;
 }

 .accordion-button::after {
     filter: none;
     /* background-color: #000000 !important; */
     opacity: 1 !important;
 }

 .accordion-button:not(.collapsed)::after {
     /* background-color: #000000 !important; */
     opacity: 1 !important;
 }


 /* The following change was applied */
.accordion-body {
    visibility: visible !important;
}

#accordion-ptag {
    visibility: visible !important;
}

 .accordion-body {
     color: #000000 !important;
     background-color: #ffffff !important;
 }

 .accordion-body p,
 .accordion-body p#accordion-ptag {
     color: #000000 !important;
     margin: 0;
 }

 .accordion-item {
     background-color: #ffffff;
     border: 1px solid #e2e8f0;
 }
