        :root {
            --primary: #00d4ff;
            --primary-dark: #0099cc;
            --accent: #ff2d92;
            --accent-dark: #cc2476;
            --bg-dark: #030014;
            --bg-darker: #010108;
            --bg-card: rgba(10, 15, 30, 0.8);
            --text: #ffffff;
            --text-muted: #8892b0;
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
            --glow-primary: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.1);
            --glow-accent: 0 0 20px rgba(255, 45, 146, 0.5), 0 0 40px rgba(255, 45, 146, 0.3), 0 0 60px rgba(255, 45, 146, 0.1);
        }


        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.7;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        #particles-js {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(255, 45, 146, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
        }

        .hero-image-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/image-0.jpg') center center/cover no-repeat;
            opacity: 0.15;
            filter: blur(2px);
        }

        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% {
                transform: perspective(500px) rotateX(60deg) translateY(0);
            }

            100% {
                transform: perspective(500px) rotateX(60deg) translateY(50px);
            }
        }

        /* Services Hero WoW Animations */
        /* Services Hero - Radial Waves with Image */
        .hero-radial-waves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-radial-waves::before,
        .hero-radial-waves::after {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            border: 2px solid rgba(0, 212, 255, 0.2);
            animation: radialExpand 8s ease-out infinite;
        }

        .hero-radial-waves::after {
            animation-delay: 4s;
            border-color: rgba(255, 45, 146, 0.2);
        }

        @keyframes radialExpand {
            0% {
                transform: scale(0.3);
                opacity: 1;
            }

            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        .hero-text-reveal {
            animation: revealText 1.5s ease-out;
        }

        @keyframes revealText {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
                filter: blur(10px);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
                filter: blur(0);
            }
        }

        .services-title {
            position: relative;
        }

        .services-title::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            animation: titleGlow 3s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes titleGlow {

            0%,
            100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.2);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            padding: 0 1rem;
        }

        .hero-logo {
            width: 180px;
            height: auto;
            margin-bottom: 2rem;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8rem, 5vw, 4rem);
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            line-height: 1.2;
        }

        .hero-title .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(1rem, 2.5vw, 1.8rem);
            font-weight: 300;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            padding: 0 0.5rem;
        }

        .hero-tagline {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(0.95rem, 2vw, 1.2rem);
            color: var(--primary);
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            padding: 0 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--gradient);
            color: var(--text);
            box-shadow: var(--glow-primary);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.4);
        }

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

        .btn-outline:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: var(--glow-primary);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            opacity: 0;
        }

        .scroll-indicator .mouse {
            width: 26px;
            height: 42px;
            border: 2px solid var(--primary);
            border-radius: 15px;
            position: relative;
        }

        .scroll-indicator .wheel {
            width: 3px;
            height: 8px;
            background: var(--primary);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s ease-in-out infinite;
        }

        @keyframes scroll {

            0%,
            100% {
                opacity: 1;
                top: 8px;
            }

            50% {
                opacity: 0.5;
                top: 20px;
            }
        }

        /* Sections Common */
        section {
            padding: 5rem 5%;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            background: rgba(0, 212, 255, 0.1);
            border: 1px solid rgba(0, 212, 255, 0.3);
            border-radius: 30px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.6rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-title .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            max-width: 600px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Mission Section */
        .mission {
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
        }

        .mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .mission-text h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.3rem, 3vw, 2rem);
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .mission-text p {
            color: var(--text-muted);
            font-size: clamp(0.95rem, 1.5vw, 1.15rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .mission-visual {
            position: relative;
        }

        .mission-image {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .mission-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }

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

        .mission-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 45, 146, 0.2) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .mission-image::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: var(--gradient);
            border-radius: 22px;
            z-index: -1;
            opacity: 0.5;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            display: none;
        }

        /* Gallery Section */
        .gallery {
            background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
            padding: 5rem 5%;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-template-rows: repeat(2, 220px);
            gap: 1rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(3, 0, 20, 0.8) 0%, transparent 50%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s;
        }

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

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

        .gallery-item:nth-child(1) {
            grid-column: span 2;
        }

        /* Vision Section */
        .vision {
            background: var(--bg-darker);
            position: relative;
            overflow: hidden;
        }

        .vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 0% 50%, rgba(255, 45, 146, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
        }

        .vision-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .vision-card {
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .vision-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: var(--glow-primary);
        }

        .vision-card:hover::before {
            opacity: 0.05;
        }

        .vision-card .icon {
            width: 50px;
            height: 50px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            color: var(--primary);
            transition: all 0.4s;
            position: relative;
            z-index: 1;
        }

        .vision-card:hover .icon {
            background: var(--gradient);
            color: var(--text);
            box-shadow: var(--glow-primary);
        }

        .vision-card h4 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
            position: relative;
            z-index: 1;
        }

        .vision-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        /* Services Section */
        .services {
            background: var(--bg-dark);
        }

        .services-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .service-item:nth-child(even) {
            direction: rtl;
        }

        .service-item:nth-child(even)>* {
            direction: ltr;
        }

        .service-item:last-child {
            margin-bottom: 0;
        }

        .service-visual {
            position: relative;
        }

        .service-image {
            width: 100%;
            height: 350px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .service-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 45, 146, 0.1) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .service-number {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            box-shadow: var(--glow-primary);
            z-index: 2;
        }

        .service-info h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .service-info h3 .gradient-text {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-info p {
            color: var(--text-muted);
            font-size: clamp(0.9rem, 1.5vw, 1.05rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-features {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .service-feature {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .service-feature .check {
            width: 22px;
            height: 22px;
            min-width: 22px;
            background: rgba(0, 212, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.7rem;
        }

        .service-feature span {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Stats Section */
        .stats {
            background: var(--bg-darker);
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            text-align: center;
            padding: 1.5rem 1rem;
            background: var(--bg-card);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 16px;
            transition: all 0.4s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--glow-primary);
        }

        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Partners Section */
        .partners {
            background: var(--bg-dark);
            padding: 3rem 5%;
        }

        .partners-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .partners-title {
            text-align: center;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        .partners-logos span {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
            transition: all 0.3s;
        }

        .partners-logos span:hover {
            color: var(--primary);
            opacity: 1;
        }

        /* Contact Section */
        .contact {
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background:
                radial-gradient(ellipse at 30% 100%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 100%, rgba(255, 45, 146, 0.15) 0%, transparent 50%);
        }

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

        .contact-card {
            background: var(--bg-card);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 24px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary);
            position: relative;
        }

        .contact-icon::before {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px dashed rgba(0, 212, 255, 0.3);
            border-radius: 50%;
            animation: spin 20s linear infinite;
        }

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

        .contact-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            margin-bottom: 0.8rem;
        }

        .contact-subtitle {
            color: var(--text-muted);
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            margin-bottom: 2rem;
            padding: 0 1rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            flex-wrap: wrap;
        }

        .contact-item i {
            color: var(--primary);
            font-size: 1.3rem;
        }

        .contact-item a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
            word-break: break-all;
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        .contact-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }



        /* Lightning Effect */
        .lightning {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
            background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
        }

        .lightning.flash {
            animation: lightningFlash 0.2s ease-out;
        }

        @keyframes lightningFlash {
            0% {
                opacity: 0.8;
            }

            100% {
                opacity: 0;
            }
        }

        /* ==================== RESPONSIVE DESIGN ==================== */

        /* Large Tablets & Small Desktops */
        @media (max-width: 1200px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-auto-rows: 200px;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
            }
        }

        /* Tablets */
        @media (max-width: 1024px) {
            section {
                padding: 4rem 5%;
            }

            .mission-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .mission-image img {
                height: 350px;
            }

            .service-item {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-bottom: 4rem;
            }

            .service-item:nth-child(even) {
                direction: ltr;
            }

            .service-image {
                height: 300px;
            }

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

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-auto-rows: 180px;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
            }

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

        /* Large Phones / Small Tablets */
        @media (max-width: 768px) {
            section {
                padding: 3.5rem 4%;
            }

            .hero {
                padding: 1.5rem;
            }

            .hero-logo {
                width: 140px;
                margin-bottom: 1.5rem;
            }

            .hero-title {
                margin-bottom: 0.8rem;
            }

            .hero-subtitle {
                margin-bottom: 1rem;
            }

            .hero-tagline {
                margin-bottom: 2rem;
            }

            .hero-cta {
                gap: 0.8rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
                letter-spacing: 1px;
            }

            .scroll-indicator {
                bottom: 1.5rem;
            }

            .scroll-indicator .mouse {
                width: 22px;
                height: 36px;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-badge {
                padding: 0.35rem 1rem;
                font-size: 0.75rem;
            }

            .mission-image img {
                height: 280px;
            }

            .vision-card {
                padding: 1.2rem;
            }

            .vision-card .icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .vision-card h4 {
                font-size: 1.05rem;
            }

            .vision-card p {
                font-size: 0.85rem;
            }

            .service-image {
                height: 250px;
            }

            .service-number {
                width: 45px;
                height: 45px;
                font-size: 1rem;
                top: -12px;
                left: -12px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 160px;
                gap: 0.8rem;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
            }

            .gallery-item {
                border-radius: 10px;
            }

            .stat-card {
                padding: 1.2rem 0.8rem;
            }

            .partners-logos {
                gap: 1.5rem;
            }

            .partners-logos span {
                font-size: 0.9rem;
            }

            .contact-card {
                padding: 2.5rem 1.5rem;
                border-radius: 20px;
            }

            .contact-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .contact-icon::before {
                width: 90px;
                height: 90px;
            }

            .contact-cta .btn {
                flex: 1;
                min-width: 140px;
            }
        }

        /* Mobile Phones */
        @media (max-width: 480px) {
            section {
                padding: 3rem 4%;
            }

            .hero {
                padding: 1rem;
            }

            .hero-logo {
                width: 120px;
                margin-bottom: 1.2rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
            }

            .btn {
                width: 100%;
                padding: 0.85rem 1.2rem;
            }

            .scroll-indicator {
                display: none;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .mission-text {
                text-align: center;
            }

            .mission-image img {
                height: 220px;
            }

            .vision-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .vision-card {
                display: flex;
                align-items: flex-start;
                gap: 1rem;
                padding: 1rem;
            }

            .vision-card .icon {
                margin-bottom: 0;
                flex-shrink: 0;
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .vision-card-content {
                flex: 1;
            }

            .vision-card h4 {
                font-size: 1rem;
            }

            .vision-card p {
                font-size: 0.85rem;
            }

            .service-image {
                height: 200px;
            }

            .service-info {
                text-align: center;
            }

            .service-features {
                align-items: flex-start;
                text-align: left;
            }

            .service-feature span {
                font-size: 0.9rem;
            }

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

            .stat-card {
                padding: 1rem 0.6rem;
                border-radius: 12px;
            }

            .stat-label {
                font-size: 0.75rem;
                letter-spacing: 0.5px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 180px;
                gap: 0.6rem;
            }

            .gallery-item {
                aspect-ratio: auto;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 1;
            }

            .partners {
                padding: 2rem 4%;
            }

            .partners-logos {
                gap: 1rem 1.5rem;
            }

            .partners-logos span {
                font-size: 0.85rem;
            }

            .contact-card {
                padding: 2rem 1rem;
                border-radius: 16px;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .contact-icon::before {
                width: 80px;
                height: 80px;
            }

            .contact-info {
                gap: 1rem;
            }

            .contact-item {
                font-size: 0.9rem;
            }

            .contact-item i {
                font-size: 1.1rem;
            }

            .contact-cta {
                flex-direction: column;
            }

            .contact-cta .btn {
                width: 100%;
            }

            .footer {
                padding: 1.2rem 4%;
            }

            .footer-text {
                font-size: 0.8rem;
            }
        }

        /* Extra Small Phones */
        @media (max-width: 360px) {
            .hero-logo {
                width: 100px;
            }

            .hero-title {
                font-size: 1.5rem;
            }

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

            .stat-number {
                font-size: 1.8rem;
            }

            .partners-logos span {
                font-size: 0.8rem;
            }
        }

        /* Landscape Mode on Mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: auto;
                padding: 2rem;
            }

            .hero-logo {
                width: 80px;
                margin-bottom: 1rem;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }

            .hero-tagline {
                margin-bottom: 1rem;
            }

            .scroll-indicator {
                display: none;
            }
        }

        /* Animations */
        [data-aos] {
            opacity: 0;
            transition: all 0.6s ease-out;
        }

        [data-aos="fade-up"] {
            transform: translateY(30px);
        }

        [data-aos="fade-down"] {
            transform: translateY(-30px);
        }

        [data-aos="fade-right"] {
            transform: translateX(-30px);
        }

        [data-aos="fade-left"] {
            transform: translateX(30px);
        }

        [data-aos="zoom-in"] {
            transform: scale(0.95);
        }

        [data-aos].aos-animate {
            opacity: 1;
            transform: translate(0) scale(1);
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .hero-logo {
                animation: none;
            }

            .hero-grid {
                animation: none;
            }
        }