* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0D47A1;
    --primary-color: #0D47A1;
    --secondary: #FFC107;
    --secondary-color: #FFC107;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

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

/* Topbar */
.topbar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 30px;
}

.topbar-left a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.topbar-left a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.topbar-left a i {
    color: var(--secondary);
    font-size: 16px;
}

.topbar-right {
    display: flex;
    gap: 15px;
}

.topbar-right a {
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
}

.topbar-right a:hover {
    transform: translateY(-2px);
}

.topbar-btn {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.topbar-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.topbar-btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

.topbar-btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

/* Mobile-only links (show only on mobile) */
.mobile-only {
    display: none;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--light-gray);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light);
}

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

.btn-primary, .btn-outline {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #0a3d8a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(13,71,161,0.95) 0%, rgba(10,55,125,0.9) 100%), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 150px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



/* Modern Hero Slider - Complete Redesign */
.modern-hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.15);
    transition: transform 7s ease-out, filter 0.8s ease;
    filter: blur(0px);
}

.slide.active .slide-background {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(13, 71, 161, 0.92) 0%,
        rgba(13, 71, 161, 0.85) 40%,
        rgba(13, 71, 161, 0.7) 70%,
        rgba(13, 71, 161, 0.5) 100%);
    z-index: 1;
}

.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #ffb300);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: slideInFromLeft 0.8s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-title {
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.05;
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}

.title-line {
    display: block;
    transform: translateY(50px);
    opacity: 0;
    animation: slideInFromBottom 0.9s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.25s;
}

.title-line:nth-child(2) {
    animation-delay: 0.45s;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, 
        rgba(255, 193, 7, 0.35), 
        rgba(255, 193, 7, 0.15));
    border-radius: 8px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: expandRight 0.8s ease-out forwards;
    animation-delay: 1s;
}

@keyframes expandRight {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.slide-description {
    font-size: 1.35rem;
    margin-bottom: 48px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.85;
    max-width: 620px;
    transform: translateY(40px);
    opacity: 0;
    animation: slideInFromBottom 0.85s ease-out forwards;
    animation-delay: 0.7s;
    color: rgba(255, 255, 255, 0.95);
}

.slide-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(40px);
    opacity: 0;
    animation: slideInFromBottom 0.85s ease-out forwards;
    animation-delay: 0.95s;
}

.btn-large {
    padding: 20px 52px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #ffb300);
    color: var(--dark);
    border: none;
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.45);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 18px 60px rgba(255, 193, 7, 0.65);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 20;
}

.nav-btn {
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.35rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--secondary);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.nav-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.nav-btn:hover {
    border-color: var(--secondary);
    transform: scale(1.12);
    box-shadow: 0 15px 45px rgba(255, 193, 7, 0.55);
    color: var(--dark);
}

/* Slider Progress */
.slider-progress {
    position: absolute;
    bottom: 130px;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0 50px;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), #ffb300, #ffd54f);
    transition: width 6s linear;
    border-radius: 10px;
}

.slide.active ~ .slide .progress-fill {
    width: 0%;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 85px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
    z-index: 20;
    padding: 0 30px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.dot.active::before {
    background: var(--dark);
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 2.2s forwards;
    opacity: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.mouse {
    width: 32px;
    height: 54px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    position: relative;
}

.wheel {
    width: 5px;
    height: 12px;
    background: var(--secondary);
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(22px);
        opacity: 0;
    }
}

/* Responsive styles for Modern Hero Slider */
@media (max-width: 1200px) {
    .modern-hero-slider {
        min-height: 650px;
        max-height: 800px;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .modern-hero-slider {
        min-height: 600px;
        max-height: 750px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        height: 85vh;
        min-height: 550px;
        max-height: 700px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
        max-width: 400px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-progress {
        bottom: 70px;
    }
    
    .slider-dots {
        bottom: 40px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .modern-hero-slider {
        height: 80vh;
        min-height: 500px;
        max-height: 650px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
        max-width: 350px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .slider-dots {
        bottom: 35px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .scroll-indicator {
        display: none;
    }
}


/* Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    background: var(--light);
    padding: 80px 0;
}

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

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(13,71,161,0.1);
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card a:hover {
    gap: 12px;
}

/* About Section - Redesigned */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-title span {
    color: var(--primary-color);
    position: relative;
}

.about-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(13, 113, 161, 0.2);
    z-index: -1;
}

.about-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-card:hover .about-main-image {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 113, 161, 0.4);
}

.experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

.about-details {
    display: grid;
    gap: 25px;
}

.about-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.about-feature:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.about-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.about-feature p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive for About Section */
@media (max-width: 992px) {
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.7rem;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
    margin: 0;
    font-size: 0.95rem;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Training Programs */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.program-header {
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.program-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.program-header .price {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Training in Action Gallery Section - Redesigned */
.training-gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.gallery-header-content {
    max-width: 700px;
}

.gallery-subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.gallery-title span {
    color: var(--primary-color);
    position: relative;
}

.gallery-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(13, 113, 161, 0.2);
    z-index: -1;
}

.gallery-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 113, 161, 0.4);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.gallery-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item-enhanced {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-large img {
    min-height: 500px;
}

.gallery-item-small img {
    min-height: 240px;
}

.gallery-item-enhanced:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 113, 161, 0.1) 0%, rgba(13, 113, 161, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item-enhanced:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    transform: translateY(-20px) scale(0.8);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item-enhanced:hover .gallery-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gallery-icon i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.gallery-info {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.15s;
}

.gallery-item-enhanced:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-info p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), #1565c0);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(13, 113, 161, 0.3);
}

.gallery-stat {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive for Training Gallery */
@media (max-width: 1200px) {
    .gallery-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item-large {
        grid-column: span 2;
    }
    
    .gallery-item-small {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gallery-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item-large img {
        min-height: 350px;
    }
    
    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large,
    .gallery-item-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item-large img {
        min-height: 280px;
    }
    
    .gallery-item-small img {
        min-height: 220px;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-title {
        font-size: 1.7rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.4);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
}

.program-header .price span {
    font-size: 1rem;
    font-weight: 400;
}

.program-body {
    padding: 30px;
}

.program-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.program-body li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-body li:last-child {
    border-bottom: none;
}

.program-body li i {
    color: var(--primary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item p, .contact-item a {
    color: var(--gray);
    text-decoration: none;
}

.contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a,
.footer-links li {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links i {
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    opacity: 0.8;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 15px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255,255,255,0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6);
    }
}

/* Page Banner */
.page-banner {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.page-banner .breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .topbar {
        display: none;
    }
    
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    /* Mobile menu when shown */
    .nav-links.show {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 1000;
        border-top: 1px solid var(--light-gray);
    }
    
    .nav-links.show li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-links.show li a {
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
        transition: background 0.3s;
    }
    
    .nav-links.show li a:hover {
        background: var(--light);
    }
    
    .nav-links.show .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        margin-left: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-only {
        display: block;
    }
    
    .topbar .topbar-right {
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    /* Services and programs already 3 per row by default */

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .topbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .topbar-left {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

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

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

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

@media (max-width: 576px) {
    .services-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section - Redesigned */
.why-choose-us-section {
    padding: 100px 0;
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us-subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.why-choose-us-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.why-choose-us-title span {
    color: var(--primary);
    position: relative;
}

.why-choose-us-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(13, 113, 161, 0.2);
    z-index: -1;
}

.why-choose-us-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.why-choose-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.why-choose-us-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.why-choose-us-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-choose-us-image-card:hover .why-choose-us-main-img {
    transform: scale(1.05);
}

.why-choose-us-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary), #1565c0);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(13, 113, 161, 0.4);
    text-align: center;
}

.badge-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
}

.why-choose-us-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-choose-feature {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.why-choose-feature:hover {
    border-left-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.why-choose-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(13, 113, 161, 0.1), rgba(13, 113, 161, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.why-choose-feature:hover .why-choose-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), #1565c0);
    transform: scale(1.1);
}

.why-choose-icon-wrapper i {
    color: var(--primary);
    font-size: 1.7rem;
    transition: all 0.3s ease;
}

.why-choose-feature:hover .why-choose-icon-wrapper i {
    color: var(--white);
}

.why-choose-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-choose-feature p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Styles for Why Choose Us and Hero Slider */
@media (max-width: 1100px) {
    .why-choose-us-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .why-choose-us-title {
        font-size: 2.3rem;
    }
    .why-choose-us-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us-features-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-us-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        border-radius: 10px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-us-title {
        font-size: 2rem;
    }
    .why-choose-feature {
        padding: 25px;
    }
}

/* Services Section with Primary Background */
.services-primary-bg {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), #0B3D8F);
    color: var(--white);
}

.services-section-title {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-subtitle {
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-title span {
    color: var(--secondary);
    position: relative;
}

.services-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 193, 7, 0.3);
    z-index: -1;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.services-grid-primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-primary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.service-card-primary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 193, 7, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.3s ease;
}

.service-card-primary:hover .service-icon-wrapper {
    background: var(--secondary);
    transform: scale(1.1);
}

.service-icon-wrapper i {
    color: var(--secondary);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card-primary:hover .service-icon-wrapper i {
    color: var(--primary);
}

.service-card-primary h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card-primary p {
    font-size: 0.98rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 16px;
}

/* Responsive for Primary Services Section */
@media (max-width: 1100px) {
    .services-grid-primary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-primary {
        grid-template-columns: 1fr;
    }
    .services-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .services-title {
        font-size: 2rem;
    }
    .service-card-primary {
        padding: 30px 25px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: white;
    font-size: 2.2rem;
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 58px;
        height: 58px;
    }
    .whatsapp-float i {
        font-size: 2rem;
    }
}
