
        :root {
            --primary: #F4B400;
            --primary-dark: #D49C00;
            --secondary: #4285F4;
            --accent: #DB4437;
            --accent-dark: #C5221F;
            --success: #0F9D58;
            --neon-glow: 0 0 15px rgba(244, 180, 0, 0.5);
            --neon-glow-accent: 0 0 15px rgba(219, 68, 55, 0.5);
            --neon-glow-secondary: 0 0 15px rgba(66, 133, 244, 0.5);
            --neon-glow-success: 0 0 15px rgba(15, 157, 88, 0.5);
            --dark: #0f172a;
            --darker: #0a0f1d;
            --light: #f8fafc;
            --gray: #cbd5e1;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --gradient-dark: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
            --gradient-success: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Exo 2', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.6;
            color: var(--light);
            background-color: var(--darker);
            overflow-x: hidden;
            background: radial-gradient(ellipse at center, var(--dark) 0%, var(--darker) 100%);
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        h1, h2, h3, h4 {
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
        }

        h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--light);
            text-shadow: var(--neon-glow);
        }

        h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--light);
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
            box-shadow: var(--neon-glow);
        }

        h3 {
            color: var(--light);
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: var(--neon-glow);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--accent);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--neon-glow-accent);
        }

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

        .btn-outline::before {
            background: var(--primary);
        }

        .btn-outline:hover {
            color: white;
        }

        .btn-accent {
            background: var(--accent);
            box-shadow: var(--neon-glow-accent);
        }

        .btn-accent::before {
            background: var(--accent-dark);
        }

        .btn-secondary {
            background: var(--secondary);
            box-shadow: var(--neon-glow-secondary);
        }

        .btn-secondary::before {
            background: var(--primary);
        }

        .btn-success {
            background: var(--success);
            box-shadow: var(--neon-glow-success);
        }

        .btn-success::before {
            background: var(--primary);
        }

        /* Header */
        header {
            background-color: rgba(15, 23, 42, 0.95);
            box-shadow: 0 2px 30px rgba(244, 180, 0, 0.2);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            border-bottom: 1px solid rgba(244, 180, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-family: 'Orbitron', sans-serif;
            text-shadow: var(--neon-glow);
        }

        .logo i {
            margin-right: 12px;
            font-size: 2rem;
        }
        
        .logo-img {
            height: 48px;
            width: auto;
            margin-right: 12px;
        }

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

        .nav-links li {
            margin-left: 25px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: width 0.3s ease;
            box-shadow: var(--neon-glow);
        }

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

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

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: rgba(15, 23, 42, 0.95);
            min-width: 200px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            border: 1px solid rgba(244, 180, 0, 0.2);
            backdrop-filter: blur(15px);
        }

        .dropdown-menu li {
            margin: 0;
            width: 100%;
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 20px;
            color: var(--light);
            transition: all 0.3s;
            border-bottom: 1px solid rgba(244, 180, 0, 0.1);
        }

        .dropdown-menu a:hover {
            background-color: rgba(244, 180, 0, 0.1);
            color: var(--secondary);
        }

        .nav-links li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-dark);
            color: white;
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::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 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%230a0f1d"/></svg>');
            background-size: 100% 150px;
            background-repeat: no-repeat;
            background-position: bottom;
        }

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

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin: 0 auto 3rem;
            color: var(--gray);
            animation: fadeInUp 1.2s ease 0.3s both;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 3rem;
            animation: fadeInUp 1.2s ease 0.6s both;
        }

        /* About Section */
        .about {
            background-color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(244, 180, 0, 0.3);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.6s ease;
            border: 1px solid rgba(244, 180, 0, 0.3);
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 25px 60px rgba(244, 180, 0, 0.4);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }

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

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

        .vm-container {
            display: flex;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .vision, .mission {
            flex: 1;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(244, 180, 0, 0.2);
            transition: all 0.5s ease;
            backdrop-filter: blur(10px);
        }

        .vision:hover, .mission:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(244, 180, 0, 0.4);
            border-color: var(--primary);
        }

        .vm-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 25px;
            display: inline-block;
            padding: 20px;
            border-radius: 50%;
            background: rgba(244, 180, 0, 0.1);
        }

        .mission-list {
            list-style: none;
        }

        .mission-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            color: var(--gray);
        }

        .mission-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

        /* Services Section */
        .services {
            background-color: var(--darker);
            position: relative;
            overflow: hidden;
        }

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

        .service-card {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(244, 180, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(244, 180, 0, 0.4);
            border-color: var(--primary);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            display: inline-block;
            padding: 20px;
            border-radius: 50%;
            background: rgba(244, 180, 0, 0.1);
            transition: all 0.5s ease;
        }

        .service-card:hover .service-icon {
            background: var(--gradient);
            color: white;
            transform: rotateY(180deg);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .service-card p {
            color: var(--gray);
        }

        /* Stats Section */
        .stats {
            background: var(--gradient-dark);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 35px 25px;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(244, 180, 0, 0.2);
            transition: all 0.4s ease;
        }

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

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
            color: var(--primary);
            text-shadow: var(--neon-glow);
        }

        .stat-text {
            font-size: 1.2rem;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Projects Section */
        .projects {
            background-color: var(--dark);
            position: relative;
        }

        .project-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(244, 180, 0, 0.3);
        }

        .project-slides {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .project-slide {
            min-width: 100%;
            padding: 60px 50px;
            background: var(--darker);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.05;
            z-index: 1;
        }

        .project-slide h3 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 1.8rem;
            position: relative;
            z-index: 2;
        }

        .project-slide p {
            position: relative;
            z-index: 2;
            font-size: 1.1rem;
            color: var(--gray);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--dark);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.4s;
            border: 2px solid var(--primary);
        }

        .slider-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
            box-shadow: var(--neon-glow);
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--darker);
            position: relative;
            overflow: hidden;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            position: relative;
            z-index: 2;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            height: 250px;
            border: 1px solid rgba(244, 180, 0, 0.2);
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(244, 180, 0, 0.4);
            border-color: var(--primary);
        }

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

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(10, 15, 29, 0.9), transparent);
            color: white;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(244, 180, 0, 0.3);
        }

        .testimonial-slides {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 60px 50px;
            background: var(--darker);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .testimonial-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0.05;
            z-index: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--gray);
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .author-info p {
            color: var(--gray);
            margin: 0;
            font-size: 1rem;
        }

        /* FAQ Section */
        .faq {
            background-color: var(--darker);
            position: relative;
            overflow: hidden;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .faq-item {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid rgba(244, 180, 0, 0.2);
            transition: all 0.4s ease;
        }

        .faq-item:hover {
            border-color: var(--primary);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(15, 23, 42, 0.9);
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(244, 180, 0, 0.1);
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1.3rem;
            color: var(--light);
        }

        .faq-icon {
            color: var(--primary);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .faq-answer p {
            padding-bottom: 25px;
            margin: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Technology Section */
        .technology {
            background-color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .tech-card {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(244, 180, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(244, 180, 0, 0.4);
            border-color: var(--primary);
        }

        .tech-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            display: inline-block;
            padding: 20px;
            border-radius: 50%;
            background: rgba(244, 180, 0, 0.1);
            transition: all 0.5s ease;
        }

        .tech-card:hover .tech-icon {
            background: var(--gradient);
            color: white;
            transform: scale(1.1);
        }

        .tech-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--light);
        }

        .tech-card p {
            color: var(--gray);
        }

        /* Blog Section */
        .blog {
            background-color: var(--darker);
            position: relative;
            overflow: hidden;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .blog-card {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            border: 1px solid rgba(244, 180, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(244, 180, 0, 0.4);
            border-color: var(--primary);
        }

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

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

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

        .blog-content {
            padding: 30px;
        }

        .blog-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .blog-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Blog Modal Image Styles */
        .modal-body img {
            max-width: 80%;
            height: auto;
            margin: 20px auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Responsive adjustment for modal images */
        @media (max-width: 768px) {
            .modal-body img {
                max-width: 95%;
            }
        }

        /* Careers Section */
        .careers {
            background-color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .career-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .job-listings {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .job-item {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            border: 1px solid rgba(244, 180, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .job-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(244, 180, 0, 0.4);
            border-color: var(--primary);
        }

        .job-item h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .job-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .job-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Contact Section */
        .contact {
            background-color: var(--darker);
            position: relative;
            overflow: hidden;
        }

        .contact-content {
            display: flex;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
            background: rgba(15, 23, 42, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(244, 180, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--light);
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(244, 180, 0, 0.3);
            border-radius: 8px;
            color: var(--light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(244, 180, 0, 0.3);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .contact-map-container {
            margin-top: 40px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(244, 180, 0, 0.3);
            background: white;
        }

        .map-header {
            background: var(--primary);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .map-header h3 {
            margin: 0;
            font-size: 1.3rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stars {
            color: gold;
            font-size: 1.2rem;
        }

        .map-iframe {
            width: 100%;
            height: 400px;
            border: none;
        }

        .map-footer {
            background: #f8f9fa;
            padding: 15px 20px;
            color: #333;
            font-size: 0.9rem;
        }

        .map-footer a {
            color: var(--primary);
            text-decoration: none;
        }

        .nearby-locations {
            margin-top: 20px;
            background: white;
            border-radius: 10px;
            padding: 20px;
            color: #333;
        }

        .nearby-locations h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .location-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 10px;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .location-item:hover {
            background: #f0f0f0;
        }

        .location-icon {
            width: 30px;
            height: 30px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 25px;
            border-radius: 15px;
            background: rgba(15, 23, 42, 0.7);
            transition: all 0.4s ease;
            border: 1px solid rgba(244, 180, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 35px rgba(244, 180, 0, 0.3);
            border-color: var(--primary);
        }

        .contact-icon {
            font-size: 1.8rem;
            color: var(--primary);
            margin-right: 20px;
            min-width: 50px;
            text-align: center;
        }

        .contact-details h3 {
            margin-bottom: 8px;
            color: var(--primary);
        }

        .contact-details p {
            color: var(--gray);
            margin: 0;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient);
        }

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

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            font-size: 1rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(244, 180, 0, 0.1);
            border-radius: 50%;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.4s;
            font-size: 1.3rem;
            border: 1px solid rgba(244, 180, 0, 0.3);
        }

        .social-link:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
            box-shadow: var(--neon-glow);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(244, 180, 0, 0.2);
            color: var(--gray);
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            width: 50px;
            height: 50px;
            background: rgba(244, 180, 0, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
            box-shadow: 0 0 20px rgba(244, 180, 0, 0.3);
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 30px;
            height: 30px;
            animation-duration: 20s;
        }

        .floating-element:nth-child(2) {
            top: 70%;
            left: 80%;
            width: 40px;
            height: 40px;
            animation-duration: 25s;
        }

        .floating-element:nth-child(3) {
            top: 40%;
            left: 85%;
            width: 25px;
            height: 25px;
            animation-duration: 18s;
        }

        .floating-element:nth-child(4) {
            top: 80%;
            left: 15%;
            width: 35px;
            height: 35px;
            animation-duration: 22s;
        }

        .floating-element:nth-child(5) {
            top: 20%;
            left: 75%;
            width: 45px;
            height: 45px;
            animation-duration: 30s;
        }

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

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(20px, 20px) rotate(90deg);
            }
            50% {
                transform: translate(0, 40px) rotate(180deg);
            }
            75% {
                transform: translate(-20px, 20px) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(244, 180, 0, 0.7);
            }
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 15px rgba(244, 180, 0, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(244, 180, 0, 0);
            }
        }

        @keyframes glow {
            0% {
                box-shadow: 0 0 5px rgba(244, 180, 0, 0.5);
            }
            50% {
                box-shadow: 0 0 20px rgba(244, 180, 0, 0.8);
            }
            100% {
                box-shadow: 0 0 5px rgba(244, 180, 0, 0.5);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        .glow {
            animation: glow 3s infinite;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(244, 180, 0, 0.3);
            border-top: 5px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 1000;
            box-shadow: var(--neon-glow);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--neon-glow-accent);
        }

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

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 15, 29, 0.95);
            z-index: 2000;
            overflow-y: auto;
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: var(--darker);
            margin: 5% auto;
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            max-width: 900px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(244, 180, 0, 0.3);
            position: relative;
            animation: fadeInUp 0.5s ease;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 2rem;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .close-modal:hover {
            color: var(--accent);
            transform: rotate(90deg);
        }

        .modal-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(244, 180, 0, 0.3);
        }

        .modal-header h2 {
            text-align: left;
            margin-bottom: 10px;
        }

        .modal-header h2::after {
            left: 0;
            transform: none;
        }

        .modal-meta {
            display: flex;
            gap: 20px;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .modal-body {
            line-height: 1.8;
        }

        .modal-body img {
            width: 100%;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .modal-body h3 {
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .modal-body p {
            margin-bottom: 20px;
        }

        .modal-body ul, .modal-body ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .modal-body li {
            margin-bottom: 10px;
            color: var(--gray);
        }

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

        @media (max-width: 992px) {
            .about-content, .contact-content, .vm-container {
                flex-direction: column;
            }
            
            .about-image, .about-text, .contact-info, .contact-form, .contact-map-container, .vision, .mission {
                width: 100%;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .contact-form {
                margin-top: 40px;
            }
            
            .mission {
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 15px 0;
            }
            
            .logo {
                font-size: 1.4rem;
            }
            
            .logo i {
                font-size: 1.7rem;
            }
            
            .logo-img {
                height: 42px;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(10, 15, 29, 0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 60px;
                transition: left 0.4s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(15px);
                border-top: 1px solid rgba(244, 180, 0, 0.2);
                z-index: 999;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: transparent;
                box-shadow: none;
                border: none;
                margin-top: 10px;
                display: none;
            }
            
            .nav-links li:hover .dropdown-menu {
                display: block;
            }
            
            .hamburger {
                display: block;
                z-index: 1000;
            }
            
            .hero {
                padding: 150px 0 100px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 15px;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            section {
                padding: 80px 0;
            }
            
            .service-card {
                padding: 30px 25px;
            }
            
            .project-slide, .testimonial-slide {
                padding: 50px 30px;
            }
            
            .map-iframe {
                height: 300px;
            }
            
            .modal-content {
                padding: 30px 25px;
                margin: 10% auto;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 25px 20px;
            }
            
            .project-slide, .testimonial-slide {
                padding: 40px 25px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .map-iframe {
                height: 250px;
            }
            
            .vision, .mission {
                padding: 30px 25px;
            }
            
            .contact-form {
                padding: 30px 25px;
            }
            
            .modal-content {
                padding: 25px 20px;
                margin: 15% auto;
            }
        }
    
