
        :root {
            --primary-color: #0056b3;
            --secondary-color: #00408c;
            --accent-color: #007bff;
            --text-color: #333;
            --light-text: #666;
            --bg-light: #f8f9fa;
            --bg-dark: #1a1a1a;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            font-weight: 400;
            background-color: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 5;
        }

        section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        /* Background Animations */
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .animated-bg .bubble {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 8s ease-in-out infinite;
            z-index: 1;
        }

        .animated-bg .bubble:nth-child(1) {
            width: 80px;
            height: 80px;
            left: 10%;
            top: 20%;
            animation-delay: 0s;
            animation-duration: 12s;
        }

        .animated-bg .bubble:nth-child(2) {
            width: 120px;
            height: 120px;
            left: 70%;
            top: 30%;
            animation-delay: 1s;
            animation-duration: 10s;
        }

        .animated-bg .bubble:nth-child(3) {
            width: 40px;
            height: 40px;
            left: 30%;
            top: 60%;
            animation-delay: 2s;
            animation-duration: 15s;
        }

        .animated-bg .bubble:nth-child(4) {
            width: 100px;
            height: 100px;
            left: 85%;
            top: 70%;
            animation-delay: 3s;
            animation-duration: 11s;
        }

        .animated-bg .bubble:nth-child(5) {
            width: 60px;
            height: 60px;
            left: 50%;
            top: 80%;
            animation-delay: 4s;
            animation-duration: 13s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-100px) translateX(30px) rotate(180deg);
                opacity: 0.4;
            }
            100% {
                transform: translateY(0) translateX(0) rotate(360deg);
                opacity: 0.8;
            }
        }

        /* Animated Gradient Background */
        .gradient-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: linear-gradient(-45deg, #0056b3, #0077cc, #0099ff, #00408c);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        /* Animated Pattern */
        .pattern-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--bg-light);
            opacity: 0.8;
            z-index: 1;
        }

        .pattern-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(var(--primary-color) 2px, transparent 2px),
                radial-gradient(var(--primary-color) 2px, transparent 2px);
            background-size: 50px 50px;
            background-position: 0 0, 25px 25px;
            opacity: 0.1;
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0% {
                background-position: 0 0, 25px 25px;
            }
            100% {
                background-position: 50px 50px, 75px 75px;
            }
        }

        /* Animated Lines */
        .lines-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .lines-bg .line {
            position: absolute;
            width: 1px;
            height: 100%;
            top: 0;
            left: 50%;
            background: rgba(0, 86, 179, 0.1);
            overflow: hidden;
        }

        .lines-bg .line::after {
            content: '';
            display: block;
            position: absolute;
            height: 15vh;
            width: 100%;
            top: -50%;
            left: 0;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--primary-color) 75%, var(--primary-color) 100%);
            animation: drop 7s 0s infinite;
            animation-fill-mode: forwards;
            animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
        }

        .lines-bg .line:nth-child(1) {
            margin-left: -25%;
        }

        .lines-bg .line:nth-child(1)::after {
            animation-delay: 2s;
        }

        .lines-bg .line:nth-child(3) {
            margin-left: 25%;
        }

        .lines-bg .line:nth-child(3)::after {
            animation-delay: 2.5s;
        }

        @keyframes drop {
            0% {
                top: -50%;
            }
            100% {
                top: 110%;
            }
        }

        /* Header & Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 0.8rem 0;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

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

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 50px;
            margin-right: 15px;
        }

        .logo-text {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
        }

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

        .nav-menu a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 80px 0 40px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 2rem;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            animation: fadeInLeft 1s ease;
        }
        .hero h1 span {
            position: relative;
            color: #ffffff;
            font-weight: 800;
            display: inline-block;
            color: var(--secondary-color)
        }

        .hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' width='100%25' height='100%25' preserveAspectRatio='none'%3E%3Cpath d='M0,10 Q40,0 80,10 T160,10 T200,10' stroke='%23ffffff' stroke-width='4' fill='none' stroke-linecap='round' stroke-dasharray='0, 15' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 100% 100%;
            z-index: -1;
            opacity: 0.8;
            animation: wave 3s ease-in-out infinite;
        }

        @keyframes wave {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(5px);
            }
        }
        .hero-image {
            position: relative;
            z-index: 2;
            animation: fadeInRight 1s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            font-weight: 400;
        }

        .hero .subtitle {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.85;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--white);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--white);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .cta-secondary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--white);
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Scroll Down Indicator */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 5;
            color: var(--white);
            font-size: 0.9rem;
            opacity: 0.8;
            transition: var(--transition);
            cursor: pointer;
        }

        .scroll-down:hover {
            opacity: 1;
        }

        .scroll-down span {
            margin-bottom: 8px;
        }

        .scroll-down .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid var(--white);
            border-radius: 20px;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .scroll-down .mouse::before {
            content: '';
            position: absolute;
            top: 8px;
            width: 4px;
            height: 10px;
            background: var(--white);
            border-radius: 2px;
            animation: scrollAnim 2s infinite;
        }

        @keyframes scrollAnim {
            0% {
                opacity: 1;
                transform: translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateY(20px);
            }
        }

        /* About Section */
        .about {
            background: var(--bg-light);
        }

        .section-title {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--light-text);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--light-text);
            font-size: 1.05rem;
            line-height: 1.8;
        }

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

        .stat-card {
            background: var(--white);
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-bottom: 3px solid transparent;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, rgba(0, 86, 179, 0.1), transparent 30%);
            animation: rotate 10s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            100% {
                transform: rotate(1turn);
            }
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-bottom: 3px solid var(--primary-color);
        }

        .stat-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            color: var(--light-text);
            font-weight: 500;
            margin-top: 0.5rem;
        }

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

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

        .service-card {
            background: var(--bg-light);
            padding: 2.5rem 2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            border-bottom: 3px solid transparent;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .service-card::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, transparent 100%);
            top: 0;
            left: 0;
            z-index: -1;
        }

        .service-card:hover {
            background: var(--white);
            border-bottom: 3px solid var(--primary-color);
            box-shadow: var(--shadow);
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 1.8rem; 
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            display: inline-block;
            background: rgba(0, 86, 179, 0.1);
            padding: 0.8rem;
            border-radius: 50%;
            position: relative;
            z-index: 2;
            width: 60px; 
            height: 60px; 
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 86, 179, 0.05);
            border-radius: 50%;
            top: 0;
            left: 0;
            z-index: -1;
            transform: scale(0);
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-icon::before {
            transform: scale(1.5);
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

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

        /* Contact Section */
        .contact {
            position: relative;
            color: var(--white);
            
        }

        .contact .section-title {
            color: var(--white);
            text-align: center;
            
        }

        .contact .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
            
        }

        .contact-grid {
            
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-info h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 600;
            text-align: center;

        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--white);
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }

        .contact-item:hover::before {
            transform: scaleY(1);
        }

        .contact-item i {
            font-size: 1.5rem;
            margin-right: 1rem;
            color: var(--white);
            margin-top: 0.2rem;
            text-align: center;

        }

        .contact-item div h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-item div p {
            opacity: 0.9;
            line-height: 1.5;
        }
        

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            
        }

        .contact-form::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -50%;
            left: -50%;
            animation: pulse 5s infinite;
            z-index: -1;
        }

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

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

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

        .submit-btn {
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--white);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 86, 179, 0.2);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .submit-btn:hover {
            background: transparent;
            color: var(--white);
            transform: translateY(-3px);
        }

        .submit-btn:hover::before {
            left: 0;
        }

        /* Footer */
        .footer {
            background: var(--bg-dark);
            color: var(--white);
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(var(--primary-color) 1px, transparent 1px);
            background-size: 30px 30px;
            opacity: 0.1;
            z-index: 1;
        }

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

        .footer-about h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-about p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

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

        .social-links a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            top: 100%;
            left: 0;
            transition: top 0.3s ease;
            z-index: -1;
        }

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

        .social-links a:hover::before {
            top: 0;
        }

        .footer-links h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

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

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            padding-left: 0;
        }

        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -15px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 15px;
        }

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

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

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

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .about-grid,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                order: 1;
                padding: 0 1rem;
            }

            .hero-image {
                order: 2;
                margin: 2rem auto 0;
                max-width: 80%;
            }

            .cta-buttons {
                justify-content: center;
            }

            .hero .subtitle {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .scroll-down {
                bottom: 10px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                gap: 1.5rem;
                z-index: 999;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding-top: 100px;
            }

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

            .hero .tagline {
                font-size: 1.1rem;
            }

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

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

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

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

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-button, .cta-secondary {
                width: 100%;
                text-align: center;
            }

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

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-image {
                max-width: 100%;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .logo-img {
                height: 40px;
            }

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

            .section-subtitle {
                font-size: 0.9rem;
            }

            .about-text h3 {
                font-size: 1.4rem;
            }

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

            .contact-item {
                padding: 1rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .scroll-down {
                display: none;
            }
        }

        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

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