        :root {
            /* Colors from IES Logo */
            --primary-dark: #1e3a52;
            --primary-cyan: #5bc0de;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--primary-dark);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            height: 70px;
            width: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--primary-cyan);
        }
        
        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .lang-switcher {
            color: var(--white);
            text-decoration: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0;
            background: none;
            border: none;
        }
        
        .lang-switcher:hover {
            color: var(--primary-cyan);
        }
        
        .lang-switcher i {
            font-size: 1rem;
        }
        
        .btn-primary {
            padding: 0.75rem 2rem;
            background: var(--primary-cyan);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(91, 192, 222, 0.3);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 80px;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 58, 82, 0.85) 0%, rgba(30, 58, 82, 0.7) 100%);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 1400px;
            padding: 0 2rem;
            text-align: center;
            color: var(--white);
            z-index: 1;
        }
        
        .hero-tag {
            font-size: 0.875rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary-cyan);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.95;
        }
        
        .hero-ctas {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-secondary {
            padding: 0.75rem 2rem;
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-dark);
        }
        
        /* Vision 2030 Banner */
        .vision-banner {
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-dark) 100%);
            padding: 2rem;
            text-align: center;
            color: var(--white);
        }
        
        .vision-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .vision-icon {
            font-size: 3rem;
        }
        
        .vision-text h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .vision-text p {
            opacity: 0.9;
        }
        
        /* Section Styles */
        .section {
            padding: 6rem 2rem;
        }
        
        .section-light {
            background: var(--white);
        }
        
        .section-gray {
            background: var(--light-bg);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            font-size: 0.875rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary-cyan);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Value Proposition */
        .value-props {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .value-item {
            text-align: center;
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--white);
        }
        
        .value-item h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .value-item p {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Sectors Grid */
        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .sector-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-cyan);
        }
        
        .sector-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .sector-icon {
            font-size: 2.5rem;
            color: var(--primary-cyan);
            margin-bottom: 1.5rem;
        }
        
        .sector-card h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .sector-card p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .sector-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .sector-card li {
            padding: 0.5rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .sector-card li i {
            color: var(--primary-cyan);
        }
        
        /* Core Values */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        
        .value-card {
            text-align: center;
            padding: 2rem;
        }
        
        .value-card-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--white);
        }
        
        .value-card h3 {
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .value-card p {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Statistics */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: center;
        }
        
        .stat-item {
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary-cyan);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.125rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        
        /* Differentiators */
        .diff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .diff-item {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .diff-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            flex-shrink: 0;
        }
        
        .diff-content h3 {
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }
        
        .diff-content p {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Contact Form */
        .contact-section {
            background: var(--primary-dark);
            color: var(--white);
        }
        
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-section .section-title {
            color: var(--white);
        }
        
        .contact-section .section-subtitle {
            color: rgba(255,255,255,0.9);
        }
        
        .contact-form {
            margin-top: 3rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--white);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            color: #333;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.5);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-cyan);
            background: rgba(255,255,255,0.15);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 2rem;
        }
        
        .btn-submit {
            padding: 1rem 3rem;
            background: var(--primary-cyan);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background: var(--white);
            color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(91, 192, 222, 0.3);
        }
        
        /* Footer */
        .footer {
            background: #0f1f2e;
            color: rgba(255,255,255,0.8);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-col h4 {
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-col p,
        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }
        
        .footer-col a:hover {
            color: var(--primary-cyan);
        }
        
        .footer-logo {
            height: 60px;
            margin-bottom: 1rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .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 ease;
        }
        
        .social-links a:hover {
            background: var(--primary-cyan);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 3rem;
            }
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }


        /* Mobile Burger Menu */
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .burger-menu span {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        
        .burger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Mobile Navigation Styles */
        @media (max-width: 968px) {
            .burger-menu {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: var(--primary-dark);
                width: 100%;
                text-align: center;
                transition: left 0.3s ease;
                box-shadow: 0 10px 27px rgba(0,0,0,0.3);
                padding: 2rem 0;
                gap: 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                padding: 1rem 0;
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-menu a {
                display: block;
                width: 100%;
                padding: 1rem 0;
            }
            
            .nav-actions {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .lang-switcher,
            .btn-primary {
                font-size: 0.875rem;
                padding: 0.5rem 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .logo-img {
                height: 50px;
            }
            
            .nav-container {
                padding: 1rem;
            }
        }

        :root {
            /* Colors from IES Logo */
            --primary-dark: #1e3a52;
            --primary-cyan: #5bc0de;
            --white: #ffffff;
            --light-bg: #f8f9fa;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--primary-dark);
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            height: 70px;
            width: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--primary-cyan);
        }
        
        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .lang-switcher {
            color: var(--white);
            text-decoration: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0;
            background: none;
            border: none;
        }
        
        .lang-switcher:hover {
            color: var(--primary-cyan);
        }
        
        .lang-switcher i {
            font-size: 1rem;
        }
        
        .btn-primary {
            padding: 0.75rem 2rem;
            background: var(--primary-cyan);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(91, 192, 222, 0.3);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 80px;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 58, 82, 0.85) 0%, rgba(30, 58, 82, 0.7) 100%);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 1400px;
            padding: 0 2rem;
            text-align: center;
            color: var(--white);
            z-index: 1;
        }
        
        .hero-tag {
            font-size: 0.875rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary-cyan);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.95;
        }
        
        .hero-ctas {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-secondary {
            padding: 0.75rem 2rem;
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-dark);
        }
        
        /* Vision 2030 Banner */
        .vision-banner {
            background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-dark) 100%);
            padding: 2rem;
            text-align: center;
            color: var(--white);
        }
        
        .vision-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .vision-icon {
            font-size: 3rem;
        }
        
        .vision-text h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .vision-text p {
            opacity: 0.9;
        }
        
        /* Section Styles */
        .section {
            padding: 6rem 2rem;
        }
        
        .section-light {
            background: var(--white);
        }
        
        .section-gray {
            background: var(--light-bg);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-tag {
            font-size: 0.875rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary-cyan);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Value Proposition */
        .value-props {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .value-item {
            text-align: center;
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--white);
        }
        
        .value-item h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .value-item p {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Sectors Grid */
        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .sector-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-cyan);
        }
        
        .sector-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .sector-icon {
            font-size: 2.5rem;
            color: var(--primary-cyan);
            margin-bottom: 1.5rem;
        }
        
        .sector-card h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .sector-card p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .sector-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .sector-card li {
            padding: 0.5rem 0;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .sector-card li i {
            color: var(--primary-cyan);
        }
        
        /* Core Values */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        
        .value-card {
            text-align: center;
            padding: 2rem;
        }
        
        .value-card-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--white);
        }
        
        .value-card h3 {
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 1rem;
        }
        
        .value-card p {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Statistics */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: center;
        }
        
        .stat-item {
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary-cyan);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.125rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        
        /* Differentiators */
        .diff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .diff-item {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .diff-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            flex-shrink: 0;
        }
        
        .diff-content h3 {
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 0.75rem;
        }
        
        .diff-content p {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Contact Form */
        .contact-section {
            background: var(--primary-dark);
            color: var(--white);
        }
        
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-section .section-title {
            color: var(--white);
        }
        
        .contact-section .section-subtitle {
            color: rgba(255,255,255,0.9);
        }
        
        .contact-form {
            margin-top: 3rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--white);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.1);
            color: #333;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.5);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-cyan);
            background: rgba(255,255,255,0.15);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
            margin-top: 2rem;
        }
        
        .btn-submit {
            padding: 1rem 3rem;
            background: var(--primary-cyan);
            color: var(--white);
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.125rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background: var(--white);
            color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(91, 192, 222, 0.3);
        }
        
        /* Footer */
        .footer {
            background: #0f1f2e;
            color: rgba(255,255,255,0.8);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-col h4 {
            color: var(--white);
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }
        
        .footer-col p,
        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }
        
        .footer-col a:hover {
            color: var(--primary-cyan);
        }
        
        .footer-logo {
            height: 60px;
            margin-bottom: 1rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .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 ease;
        }
        
        .social-links a:hover {
            background: var(--primary-cyan);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 3rem;
            }
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }



/* Additional Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-cyan) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-text h3:first-child {
    margin-top: 0;
}

.content-text p {
    color: var(--text-gray);
    line-height: 1.8;
}

.content-image {
    border-radius: 10px;
    overflow: hidden;
}

/* Sector Cards */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sector-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.sector-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sector-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.sector-card ul li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.sector-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

/* Case Studies */
.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.case-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.case-study h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.case-study p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-metrics span {
    background: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
}

.impact-item i {
    font-size: 3rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.impact-item h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.impact-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Video Section */
.video-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-dark);
    background: transparent;
    color: var(--primary-dark);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-content h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-cyan);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.info-link:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    margin-top: 0;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .content-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid,
    .video-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 6rem 1rem 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

