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

        :root {
            --primary: #1a2b3c;
            --secondary: #2c3e50;
            --accent: rgb(3, 70, 114);
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #333;
            --text-light: #7f8c8d;
            --success: #27ae60;
            --warning: #f39c12;
            --border: #ddd;
            --gray: #ccc;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: rgb(3, 70, 114);
            overflow-x: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f1 100%);
            background-attachment: fixed;
        }

        body p {
            color: rgb(3, 70, 114);
        }

        body h3, body h4, body h5, body h6 {
            color: rgb(3, 70, 114);
        }

        /* Navigation */
        nav {
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: rgb(3, 70, 114);
            letter-spacing: -0.5px;
        }

        .logo img {
            width: 80px;
            height: auto;
            margin-right: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: rgb(3, 70, 114);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: url('back2.png');
            background-size: cover;
            background-position: center;
            color: var(--accent);
            padding: 120px 2rem 80px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            max-width: none;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            padding: 3rem 2rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease;
            text-shadow: 0 2px 10px rgba(0,0,0,0.15);
            white-space: nowrap;
            color: #F4D27A;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease 0.2s;
            animation-fill-mode: both;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.85;
            animation: fadeInUp 0.8s ease 0.4s;
            animation-fill-mode: both;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: white;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            animation: fadeInUp 0.8s ease 0.6s;
            animation-fill-mode: both;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--accent) 0%, #2980b9 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(52, 152, 219, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #2980b9 0%, var(--accent) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-3px);
        }

        /* Section Styles */
        .section {
            padding: 50px 2rem;
            max-width: 1200px;
            margin: 0 auto;
            scroll-margin-top: 120px;
        }

        .section-title {
            font-size: 2.8rem;
            text-align: center;
            margin: 2rem 0;
            color: rgb(3, 70, 114);
            position: relative;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent) 0%, #2c3e50 100%);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.8);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
            position: relative;
            overflow: hidden;
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent), #2c3e50);
        }

        .about-card h3 {
            color: rgb(3, 70, 114);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .about-text {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
            color: rgb(3, 73, 114);
            font-size: 1.2rem;
            text-align: justify;
        }

        .stat-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.95) 100%);
            color: white;
            border-radius: 16px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.25);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(41, 128, 185, 0.9) 0%, rgba(52, 152, 219, 0.95) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(52, 152, 219, 0.35);
        }

        .stat-number {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        /* Services Section */
        .services-section {
            background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.5)"/></svg>');
            background-size: 100% 100%;
            opacity: 0.3;
            z-index: 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.85);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            text-align: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            background: rgba(255, 255, 255, 0.95);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent) 0%, #2c3e50 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
        }

        .service-card h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Products Section */
        .products-section {
            background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
            position: relative;
            overflow: hidden;
            padding-top: 0;
        }

        .products-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.5)"/></svg>');
            background-size: 100% 100%;
            opacity: 0.3;
            z-index: 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.85);
            padding: 2.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            text-align: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
            position: relative;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            background: rgba(255, 255, 255, 0.95);
        }

        .product-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent) 0%, #2c3e50 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .product-card:hover .product-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
        }

        .product-card h3 {
            color: rgb(3, 70, 114);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .product-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .product-card ul {
            column-count: 2;
            column-gap: 1rem;
            margin: 1rem 0;
        }

        /* Industries Section */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .industry-item {
            background: rgba(255, 255, 255, 0.85);
            padding: 1.8rem 1rem;
            text-align: center;
            border-radius: 12px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
            position: relative;
            overflow: hidden;
        }

        .industry-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            background: rgba(255, 255, 255, 0.95);
        }

        .industry-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent), #2c3e50);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .industry-item:hover::before {
            opacity: 1;
        }

        .industry-icon {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        .industry-item:hover .industry-icon {
            transform: scale(1.1);
        }

        .industry-item h4 {
            font-size: 1rem;
            color: var(--primary);
            font-weight: 500;
        }

        /* Leadership Section */
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .leadership-card {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
        }

        .leadership-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            background: rgba(255, 255, 255, 0.95);
        }

        .leadership-photo {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, var(--accent) 0%, #2c3e50 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4.5rem;
            position: relative;
            overflow: hidden;
        }

        .team-photo {
            width: 100%;
            height: 280px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4.5rem;
            position: relative;
            overflow: hidden;
        }

        .leadership-photo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: 100% 100%;
            opacity: 0.3;
        }

        .leadership-info {
            padding: 1.8rem;
        }

        .leadership-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        .leadership-info .title {
            color: var(--accent);
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
            display: block;
            font-weight: 500;
        }

        .leadership-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .leadership-info p strong {
            color: var(--primary);
        }

        .team-info {
            padding: 1.8rem;
        }

        .team-info h3 {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        .team-info .title {
            color: var(--accent);
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
            display: block;
            font-weight: 500;
        }

        .team-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .team-info p strong {
            color: var(--primary);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            background: rgba(255, 255, 255, 0.95);
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
            position: relative;
            overflow: hidden;
            padding-top: 0;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L0,100 L100,100 Z" fill="rgba(52, 152, 219, 0.05)"/></svg>');
            background-size: 100% 100%;
            opacity: 0.3;
            z-index: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 12px;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
        }

        .contact-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            background: rgba(255, 255, 255, 0.95);
        }

        .contact-item i {
            color: var(--accent);
            font-size: 1.5rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .contact-item div h4 {
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        .contact-item div p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.85);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
        }

        .contact-form h3 {
            margin-bottom: 1.8rem;
            color: rgb(3, 70, 114);
            font-size: 1.4rem;
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 500;
            color: var(--primary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.7);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

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

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary) 0%, #0d1b26 100%);
            color: white;
            padding: 4rem 2rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
            background-size: 100% 100%;
            opacity: 0.2;
            z-index: 0;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-column h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .footer-column p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .policy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .policy-content h2 {
            color: rgb(3, 70, 114);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .policy-content p {
            margin-bottom: 1.5rem;
            line-height: 1.7;
            color: rgb(3, 73, 114);
            font-size: 1rem;
            text-align: justify;
        }

        .footer-content p {
            max-width: 700px;
            margin: 0 auto 1.5rem;
            opacity: 1;
            line-height: 1.7;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

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

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

            .hero .subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

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

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

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

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
            }
        }

        /* Forms */
        .form-success {
            background: rgba(46, 204, 113, 0.15);
            color: #27ae60;
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: none;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(39, 174, 96, 0.2);
        }

        .form-error {
            background: rgba(231, 76, 60, 0.15);
            color: #c0392b;
            padding: 1.2rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: none;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(192, 57, 43, 0.2);
        }

        /* Loading Spinner */
        .spinner {
            border: 3px solid rgba(255,255,255,0.3);
            border-top: 3px solid var(--accent);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
            display: none;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Mobile Menu */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: -5px 0 25px rgba(0,0,0,0.1);
            transition: right 0.4s ease;
            z-index: 2000;
            padding: 100px 2rem 2rem;
            border-left: 1px solid rgba(0,0,0,0.05);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: block;
        }

        .mobile-nav-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }

        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: none;
            z-index: 1500;
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
        }

        .mobile-nav-overlay.active {
            display: block;
        }

        .close-mobile-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-mobile-menu:hover {
            background: rgba(0,0,0,0.05);
            color: var(--accent);
        }