 /* Modern Slideshow Styles */
        .modern-slideshow {
            position: relative;
            width: 100%;
            height: calc(100vh - 80px);
            overflow: hidden;
            background: #000;
            margin-top: 0;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
            perspective: 1000px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.95) translateY(50px);
            transition: all 0.11s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
        }

        .slide.active {
            display: block;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transform: scale(1.1);
            transition: transform 1.2s ease-out;
        }

        .slide.active img {
            transform: scale(1);
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 80%;
            max-width: 800px;
            z-index: 2;
            opacity: 0;
            transition: all 0.8s ease 0.3s;
        }

        .slide.active .slide-content {
            opacity: 1;
        }

        .slide-content h2 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            transform: translateY(30px);
            transition: transform 0.8s ease 0.5s;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .slide.active .slide-content h2 {
            transform: translateY(0);
        }

        .slide-content p {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            transform: translateY(30px);
            transition: transform 0.8s ease 0.7s;
            opacity: 0.9;
        }

        .slide.active .slide-content p {
            transform: translateY(0);
        }

        .slide-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            width: 50px;
            height: 50px;
            border: none;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 3;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }

        .prev {
            left: 30px;
            padding-right: 3px;
        }

        .next {
            right: 30px;
            padding-left: 3px;
        }

        .slide-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
            background: rgba(0, 0, 0, 0.3);
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(5px);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        .dot.active {
            background: transparent;
            border-color: white;
            transform: scale(1.4);
        }

        .dot:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .dot.active:before {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Global Styles */
        :root {
            --primary: #1a4f8e;
            --secondary: #f5a623;
            --accent: #2c7dbe;
            --accent-rgb: 44, 125, 190;
            --accent-dark: #1c5d98;
            --light: #f8f9fa;
            --dark: #343a40;
            --text: #333333;
            --text-light: #666666;
            --success: #28a745;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-img {
            height: 45px;
            width: auto;
            max-width: 150px;
            object-fit: contain;
        }
        
        .logo-content {
            margin-left: 0;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            margin: 0;
            line-height: 1.2;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            color: white;
            color: white;
        }
        
        .logo-slogan {
            font-size: 0.85rem;
            color: var(--secondary);
            font-style: italic;
            margin-top: 2px;
            letter-spacing: 0.5px;
            opacity: 0.9;
        }
        
        .logo-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-right: 5px;
        }

        .institute-text {
            color: var(--secondary);
            font-size: 0.7em;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.95;
            background: rgba(255, 255, 255, 0.1);
            padding: 3px 8px;
            border-radius: 4px;
            margin-left: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }

        /* Mobile nav behavior: hide by default and show when .active */
        @media (max-width: 992px) {
            nav { position: fixed; top: calc(var(--header-height,80px)); left: 0; width: 100%; background: rgba(0,0,0,0.9); padding: 18px; transform: translateY(-150%); transition: transform 0.32s ease; z-index: 9999; }
            nav.active { transform: translateY(0); }
            nav ul { display: flex; flex-direction: column; gap: 14px; align-items: center; }
            nav ul li { width: 100%; text-align: center; }
            nav ul li a { display: block; padding: 10px 8px; }
        }
        
        /* Dropdown styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 4px;
            padding: 0.5rem 0;
            z-index: 1000;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
            animation: fadeIn 0.3s ease-in-out;
        }
        
        .dropdown-content li {
            margin: 0;
            padding: 0;
        }
        
        .dropdown-content a {
            color: var(--dark) !important;
            padding: 0.7rem 1.5rem;
            display: block;
            font-weight: normal;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .dropdown-content a:hover {
            background-color: var(--light);
            color: var(--primary) !important;
        }
        
        .dropdown .fa-chevron-down {
            font-size: 0.8em;
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .dropdown:hover .fa-chevron-down {
            transform: rotate(180deg);
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: white;
            padding: 5rem 0;
            text-align: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-text {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        /* Institute Overview Section */
        .institute-overview {
            padding: 6rem 0;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .overview-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .overview-image:hover img {
            transform: scale(1.05);
        }

        .floating-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .floating-badge i {
            color: var(--secondary);
        }

        .section-subtitle {
            color: var(--secondary);
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .overview-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 12px;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature i {
            font-size: 1.5rem;
            color: var(--primary);
        }

        .feature span {
            font-weight: 500;
            color: var(--dark);
        }

        .overview-text {
            margin-bottom: 2rem;
        }

        .overview-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 1rem;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(0,0,0,0.05);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .overview-grid {
                grid-template-columns: 1fr;
            }

            .overview-image {
                max-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .overview-features {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Mission Vision Section */
        .mission-vision-section {
            padding: 6rem 0;
            background: var(--light);
            position: relative;
        }

        .mission-vision-wrapper {
            position: relative;
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 3rem;
        }

        .mission-card, .vision-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-10px);
        }

        .card-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card-image .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
        }

        .card-badge {
            position: absolute;
            bottom: -25px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .card-badge i {
            font-size: 1.5rem;
            color: white;
        }

        .card-content {
            padding: 2.5rem 2rem 2rem;
        }

        .card-content h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .card-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .highlight-item i {
            color: var(--success);
        }

        .highlight-item span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--dark);
        }

        /* Core Values Section */
        .core-values-section {
            position: relative;
            padding: 6rem 0;
            background: var(--light);
        }

        .values-background {
            position: relative;
            overflow: hidden;
        }

        .values-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .values-image {
            position: relative;
            height: 100%;
            min-height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .values-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .values-image:hover img {
            transform: scale(1.05);
        }

        .values-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .value-item {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .value-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .value-item:hover {
            transform: translateX(10px);
        }

        .value-item:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .value-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .value-header i {
            font-size: 1.8rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .value-item:hover .value-header i {
            transform: rotate(360deg);
        }

        .value-header h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 0;
        }

        .value-item p {
            color: #666;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 992px) {
            .values-container {
                grid-template-columns: 1fr;
            }

            .values-image {
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            .values-content {
                gap: 1.5rem;
            }

            .value-item {
                padding: 1.5rem;
            }
        }

        @media (max-width: 992px) {
            .mission-vision-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .highlights {
                grid-template-columns: 1fr;
            }
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .btn:hover {
            background: #e59400;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Styles */
        section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 25%;
        }
        
        /* Programs Section */
        .programs-section {
            padding: 6rem 0;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        .programs-wrapper {
            display: flex;
            flex-direction: column;
            gap: 8rem;
            margin-top: 3rem;
            position: relative;
        }

        .program-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }

        .program-item.reverse {
            grid-template-columns: 1fr 1fr;
        }

        .program-item.reverse .program-image-side {
            order: 2;
        }

        .program-item.reverse .program-content-side {
            order: 1;
        }

        .program-image-side {
            position: relative;
        }

        .program-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            aspect-ratio: 4/3;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .program-item:hover .program-image img {
            transform: scale(1.02);
        }

        .floating-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: var(--dark);
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            opacity: 1;
            transition: transform 0.3s ease;
        }

        .program-content-side {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 500px;
        }

        .program-category {
            color: var(--accent);
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 1;
        }

        .program-title {
            font-size: 2.5rem;
            color: var(--primary);
            line-height: 1.2;
            margin: 0.5rem 0;
            opacity: 1;
        }

        .program-description {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 1;
        }

        .program-specialties {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .specialty-item {
            display: flex;
            align-items: center;
            gap: 12px;
            opacity: 1;
        }

        .specialty-item i {
            font-size: 1.4rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .specialty-item:hover i {
            transform: scale(1.1);
        }

        .specialty-item span {
            font-weight: 500;
            color: var(--text);
        }

        .explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            margin-top: 1rem;
            opacity: 1;
            box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
            width: fit-content;
            transition: all 0.3s ease;
        }

        .explore-btn i {
            transition: transform 0.3s ease;
        }

        .explore-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.4);
        }

        .explore-btn:hover i {
            transform: translateX(5px);
        }

        @media (max-width: 992px) {
            .program-item,
            .program-item.reverse {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .program-item.reverse .program-image-side {
                order: 1;
            }

            .program-item.reverse .program-content-side {
                order: 2;
            }

            .program-content-side {
                max-width: 100%;
                text-align: center;
            }

            .explore-btn {
                margin: 1rem auto 0;
            }

            .program-specialties {
                justify-content: center;
            }

            .specialty-item {
                justify-content: center;
            }
        }
        
        .program-content {
            padding: 2rem;
            position: relative;
            z-index: 1;
        }

        .program-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        
        .program-content h3 {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--primary);
            margin: 0;
            transition: color 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .program-badge {
            background: var(--secondary);
            color: var(--dark);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            opacity: 0.9;
        }

        .program-content p {
            color: var(--text-light);
            margin: 1rem 0 2rem;
            line-height: 1.8;
            font-size: 1.1rem;
            transform: translateY(20px);
            opacity: 0.8;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .program-card:hover .program-content p {
            transform: translateY(0);
            opacity: 1;
        }

        .program-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateY(20px);
            opacity: 0.8;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .program-card:hover .feature-item {
            transform: translateY(0);
            opacity: 1;
        }

        .feature-item i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .feature-item span {
            font-weight: 500;
            color: var(--text);
        }
        
        .program-btn {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            background-color: var(--accent);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transform: translateY(20px);
            opacity: 0.9;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
        }

        .program-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .program-card:hover .program-btn {
            transform: translateY(0);
            opacity: 1;
            background-color: var(--accent-dark);
        }

        .program-card:hover .program-btn i {
            transform: translateX(5px);
        }
        
        /* Features Section */
        .features {
            background-color: var(--light);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
        }
        
        .testimonials .section-title h2 {
            color: white;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-weight: 600;
        }
        
        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            height: 50px;
            width: auto;
            margin-bottom: 1.5rem;
            filter: brightness(0) invert(1);
        }
        
        .footer-links h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
        
        /* Page specific styles */
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        /* About Page */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .mission-card, .vision-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .value-card {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        /* Programs Page - New Design */
        .programs-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .programs-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .programs-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .programs-main-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 1rem 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .programs-hero-description {
            font-size: 1.3rem;
            line-height: 1.6;
            opacity: 0.95;
            margin-bottom: 0;
        }

        .program-category-section {
            padding: 6rem 0;
            position: relative;
        }

        .program-category-section:nth-child(even) {
            background: var(--light);
        }

        .category-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 4rem;
            padding: 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .category-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.3);
            flex-shrink: 0;
        }

        .category-info {
            flex: 1;
        }

        .category-badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--dark);
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .category-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin: 0 0 1rem 0;
            font-weight: 700;
        }

        .category-description {
            font-size: 1.1rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }

        .program-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .program-card-header {
            padding: 2rem 2rem 1rem;
            position: relative;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .program-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3);
        }

        .program-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: var(--secondary);
            color: var(--dark);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .program-card-body {
            padding: 0 2rem 1.5rem;
        }

        .program-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0 0 1rem 0;
            line-height: 1.3;
        }

        .program-description {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
            margin: 0 0 1.5rem 0;
        }

        .program-features {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.5rem 0;
        }

        .feature-item i {
            color: var(--success);
            font-size: 1rem;
            width: 16px;
            flex-shrink: 0;
        }

        .feature-item span {
            color: var(--text);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .program-card-footer {
            padding: 0 2rem 2rem;
        }

        .program-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
        }

        .program-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.4);
            color: white;
        }

        .program-btn i {
            transition: transform 0.3s ease;
        }

        .program-btn:hover i {
            transform: translateX(3px);
        }

        .programs-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .programs-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 0 1.5rem 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .cta-content p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin: 0 0 2.5rem 0;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: white;
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .btn-primary:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .programs-main-title {
                font-size: 2.5rem;
            }

            .programs-hero-description {
                font-size: 1.1rem;
            }

            .category-header {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .category-title {
                font-size: 2rem;
            }

            .programs-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .program-card-header {
                padding: 1.5rem 1.5rem 1rem;
            }

            .program-card-body {
                padding: 0 1.5rem 1.5rem;
            }

            .program-card-footer {
                padding: 0 1.5rem 1.5rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .programs-hero {
                padding: 4rem 0;
            }

            .program-category-section {
                padding: 4rem 0;
            }

            .programs-cta {
                padding: 4rem 0;
            }

            .category-header {
                padding: 1.5rem;
            }

            .category-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }
        
        /* Methodology Page */
        .methodology-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Audience Page */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .audience-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .audience-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }