        :root {
            --primary: #ff9800;
            --primary-dark: #e68900;
            --primary-light: #ffb74d;
            --secondary: #2c3e50;
            --secondary-light: #3c5a78;
            --dark: #1a1a1a;
            --darker: #121212;
            --light: #f5f5f5;
            --lighter: #f8f9fa;
            --gray: #8a8a8a;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.25);
        }

        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffffff, #594d36,rgb(242, 242, 242));
            background-size: 400% 400%;
            animation: gradientShift 4s ease infinite;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease-out;
        }

        #preloader.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .preloader-content {
            text-align: center;
            color: white;
            max-width: 300px;
            width: 90%;
        }

        .preloader-logo {
            margin-bottom: -50px;
            margin-left:-40px;
            animation: logoFloat 2s ease-in-out infinite;
        }

        .preloader-logo img {
            width: 350px;
            height: auto;
          
        }

        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .preloader-text h3 {
            font-family: 'Roboto Slab', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
        }

        .preloader-text p {
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .loading-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .loading-progress {
            height: 100%;
            background: linear-gradient(90deg, #ffffff, #ff9800, #ffffff);
            background-size: 200% 100%;
            border-radius: 10px;
            width: 0%;
            animation: loadingAnimation 2s ease-in-out, progressShine 1.5s ease-in-out infinite;
        }

        @keyframes loadingAnimation {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

        @keyframes progressShine {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .loading-percentage {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Hide main content during loading */
        body.loading {
            overflow: hidden;
        }

        body.loading #particles-js,
        body.loading header,
        body.loading .hero,
        body.loading .about,
        body.loading .services,
        body.loading .stats,
        body.loading .contact,
        body.loading footer {
            visibility: hidden;
        }

        /* Responsive preloader */
        @media (max-width: 768px) {
            .preloader-logo {
                margin-bottom: -30px;
                margin-left: -20px;
            }
            
            .preloader-logo img {
                width: 280px;
            }
            
            .preloader-text h3 {
                font-size: 1.4rem;
                letter-spacing: 1.5px;
            }
            
            .preloader-text p {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            
            .preloader-content {
                max-width: 320px;
                width: 95%;
            }
        }

        @media (max-width: 480px) {
            .preloader-logo {
                margin-bottom: -20px;
                margin-left: -15px;
            }
            
            .preloader-logo img {
                width: 220px;
            }
            
            .preloader-text h3 {
                font-size: 1.2rem;
                letter-spacing: 1px;
                margin-bottom: 6px;
            }
            
            .preloader-text p {
                font-size: 0.9rem;
                margin-bottom: 20px;
            }
            
            .preloader-content {
                max-width: 280px;
                width: 90%;
            }
            
            .loading-bar {
                height: 3px;
                margin-bottom: 12px;
            }
            
            .loading-percentage {
                font-size: 1rem;
            }
        }

        @media (max-width: 360px) {
            .preloader-logo {
                margin-bottom: -15px;
                margin-left: -10px;
            }
            
            .preloader-logo img {
                width: 180px;
            }
            
            .preloader-text h3 {
                font-size: 1.1rem;
                letter-spacing: 0.5px;
                margin-bottom: 5px;
            }
            
            .preloader-text p {
                font-size: 0.85rem;
                margin-bottom: 18px;
                line-height: 1.4;
            }
            
            .preloader-content {
                max-width: 250px;
                width: 85%;
            }
            
            .loading-bar {
                height: 2px;
                margin-bottom: 10px;
            }
            
            .loading-percentage {
                font-size: 0.95rem;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        body:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(44, 62, 80, 0.1) 0%, rgba(18, 18, 18, 0.95) 80%);
            z-index: -1;
        }

        h1, h2, h3, h4 {
            font-family: 'Roboto Slab', serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light);
        }

        h1 {
            font-size: 3.8rem;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        h2 {
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

        .container {
            width: 90%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        @media (max-width: 400px) {
            .container {
                width: 95%;
                padding: 0 10px;
            }
        }

        .btn {
            display: inline-block;
            padding: 14px 36px;
            background: var(--primary);
            color: var(--darker);
            border: none;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 1rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 10;
        }

        .btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.8s;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .btn:hover:after {
            left: 100%;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--darker);
        }

        section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Particles Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            padding: 15px 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-bottom: 1px solid rgba(255, 152, 0, 0.2);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        header.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
            border-bottom: 1px solid rgba(255, 152, 0, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo img {
            height: 60px;
            width: auto;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
        }

        .logo img:hover {
            transform: scale(1.05) rotate(2deg);
        }

        header.scrolled .logo img {
            height: 50px;
        }

        /* Enhanced Navigation */
        nav {
            position: relative;
            z-index: 1000;
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 5px;
        }

        nav ul li {
            position: relative;
        }

        nav ul li a {
            display: block;
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            padding: 12px 18px;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            overflow: hidden;
        }

        nav ul li a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: -1;
            border-radius: 8px;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateX(-50%);
        }

        nav ul li a:hover {
            color: white;
            transform: translateY(-2px);
        }

        nav ul li a:hover:before {
            width: 100%;
        }

        nav ul li a:hover:after {
            width: 80%;
        }

        /* Active link styling */
        nav ul li a.active {
            color: var(--primary);
            background: rgba(255, 152, 0, 0.1);
        }

        nav ul li a.active:after {
            width: 80%;
        }

        /* Mobile Toggle Button - Hamburger */
        .mobile-toggle {
            display: none;
            cursor: pointer;
            z-index: 1001;
            position: relative;
            width: 45px;
            height: 45px;
            border-radius: 8px;
            align-items: center;
            justify-content: center;
            background: rgba(255, 152, 0, 0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            flex-direction: column;
            padding: 8px;
        }

        .mobile-toggle:hover {
            background: rgba(255, 152, 0, 0.2);
            border-color: var(--primary);
        }

        /* Hamburger Lines */
        .mobile-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-origin: center;
        }

        .mobile-toggle span:nth-child(1) {
            margin-bottom: 5px;
        }

        .mobile-toggle span:nth-child(2) {
            margin-bottom: 5px;
        }

        /* Hamburger Animation when Active */
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            background: var(--primary);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            background: var(--primary);
        }

        .mobile-toggle:hover span {
            background: var(--primary);
        }

        /* Contact CTA Button in Navigation */
        .nav-cta {
            margin-left: 20px;
            padding: 10px 20px !important;
            background: var(--primary) !important;
            color: white !important;
            border-radius: 25px !important;
            font-weight: 700 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            font-size: 0.85rem !important;
            box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3) !important;
            border: 2px solid var(--primary) !important;
        }

        .nav-cta:hover {
            background: transparent !important;
            color: var(--primary) !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4) !important;
        }

        .nav-cta:before,
        .nav-cta:after {
            display: none !important;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 10;
        }

        .hero-content h1 {
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: #ccc;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        .hero-btns {
            display: flex;
            gap: 25px;
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
        }

        .hero-highlight {
            display: inline-block;
            background: rgba(255, 152, 0, 0.2);
            padding: 5px 15px;
            border-radius: 30px;
            margin: 15px 0;
            font-weight: 600;
            color: var(--primary);
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }

        /* About Section */
        .about {
            background-color: var(--dark);
            position: relative;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about-text {
            position: relative;
            z-index: 5;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
            z-index: 100;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 35px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .value-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(255, 152, 0, 0.1);
            z-index: -1;
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .value-card:hover:before {
            height: 100%;
        }

        .value-card i {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 25px;
        }

        /* Services */
        .services {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.518), rgba(119, 119, 119, 0.137) 100%), url('servicePic.svg') no-repeat center center/cover;
            background-attachment: fixed;
            position: relative;
        }

        .services:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(18, 18, 18, 0.85);
            z-index: 0;
        }

        .services .container {
            position: relative;
            z-index: 2;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 45px 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--shadow);
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--primary);
            z-index: -1;
            transition: var(--transition);
            opacity: 0.15;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .service-card:hover:before {
            height: 100%;
        }

        .service-card i {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .service-card:hover i {
            transform: scale(1.2);
        }

        /* Stats */
        .stats {
            background: linear-gradient(45deg, var(--secondary) 0%, var(--darker) 100%);
            padding: 80px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item i {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }

        /* Contact */
        .contact {
            background-color: var(--dark);
            position: relative;
            z-index: 10;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            position: relative;
            z-index: 10;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .contact-item i {
            font-size: 1.8rem;
            color: var(--primary);
            min-width: 40px;
            padding-top: 5px;
        }

        .contact-form .form-group {
            margin-bottom: 25px;
        }

        .contact-form {
            position: relative;
            z-index: 20;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--light);
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            font-size: 1rem;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 15px rgba(255, 152, 0, 0.2);
        }

        .contact-form textarea {
            min-height: 180px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 100px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 10;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-size: 1.6rem;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links li a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links li a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 18px;
            margin-top: 25px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: var(--light);
            transition: var(--transition);
            font-size: 1.2rem;
            position: relative;
            z-index: 15;
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--darker);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3.2rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-img {
                max-width: 80%;
                margin: 0 auto 50px;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }
            
            /* Full Screen Overlay Menu */
            nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(44, 62, 80, 0.98) 100%);
                backdrop-filter: blur(15px);
                transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transform: scale(0.8);
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            nav.active {
                opacity: 1;
                visibility: visible;
                transform: scale(1);
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 0;
                width: 100%;
                max-width: 400px;
                list-style: none;
                text-align: center;
                padding: 0;
            }
            
            nav ul li {
                margin: 0 0 20px 0;
                width: 100%;
                opacity: 0;
                transform: translateY(30px);
                animation: none;
            }

            nav.active ul li {
                animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            }

            nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
            nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
            nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
            nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
            nav.active ul li:nth-child(5) { animation-delay: 0.5s; }
            nav.active ul li:nth-child(6) { animation-delay: 0.6s; }
            
            nav ul li a {
                padding: 20px 40px;
                font-size: 1.4rem;
                color: var(--light);
                border-radius: 12px;
                display: block;
                width: 100%;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                text-decoration: none;
                box-sizing: border-box;
                min-height: 70px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                position: relative;
                overflow: hidden;
                border: 2px solid transparent;
                font-weight: 600;
                letter-spacing: 1px;
                text-transform: uppercase;
            }
            
            nav ul li a:before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, var(--primary), var(--primary-light));
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                z-index: -1;
            }
            
            nav ul li a:after {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                width: 0;
                height: 0;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                transform: translate(-50%, -50%);
                transition: all 0.4s ease;
                z-index: -1;
            }
            
            nav ul li a:hover,
            nav ul li a.active {
                color: var(--darker);
                transform: translateY(-5px) scale(1.05);
                border-color: var(--primary);
                box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
            }

            nav ul li a:hover:before,
            nav ul li a.active:before {
                left: 0;
            }

            nav ul li a:hover:after {
                width: 300px;
                height: 300px;
            }
            
            .nav-cta {
                background: var(--primary) !important;
                color: var(--darker) !important;
                border: 2px solid var(--primary) !important;
                margin-top: 30px !important;
                border-radius: 50px !important;
                text-align: center !important;
                font-size: 1.1rem !important;
                padding: 18px 40px !important;
                box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4) !important;
            }
            
            .nav-cta:hover {
                background: transparent !important;
                color: var(--primary) !important;
                transform: translateY(-8px) scale(1.08) !important;
                box-shadow: 0 12px 35px rgba(255, 152, 0, 0.5) !important;
            }

            .nav-cta:before {
                background: transparent !important;
            }
            
            .logo img {
                height: 55px;
            }
            
            header.scrolled .logo img {
                height: 45px;
            }
            
            @media (max-width: 480px) {
                nav ul {
                    max-width: 350px;
                    padding: 0 20px;
                }
                
                nav ul li a {
                    padding: 18px 30px;
                    font-size: 1.2rem;
                    min-height: 65px;
                }
                
                .nav-cta {
                    margin: 25px 0 0 0 !important;
                    padding: 16px 35px !important;
                    font-size: 1rem !important;
                }
                
                .logo img {
                    height: 50px;
                }
                
                header.scrolled .logo img {
                    height: 40px;
                }

                .mobile-toggle {
                    width: 40px;
                    height: 40px;
                    padding: 6px;
                }

                .mobile-toggle span {
                    width: 22px;
                    height: 2.5px;
                }
            }
            
            nav ul li {
                margin: 0 0 25px 0;
            }
            
            .hero {
                padding-top: 100px;
                margin-bottom: 0;
            }
            
            .hero-content {
                margin-top: 0;
            }
            
            section {
                padding: 80px 0;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 20px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            section {
                padding: 90px 0;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.4rem;
            }
            
            h2 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            h3 {
                font-size: 1.5rem;
            }
            
            .hero {
                min-height: 650px;
                padding-top: 100px;
                margin-top: 0;
            }
            
            .hero-content {
                text-align: center;
                padding: 0 10px;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .hero-highlight {
                font-size: 0.9rem;
                padding: 5px 10px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .services-grid,
            .values-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            
            .stat-item h3 {
                font-size: 2.5rem;
            }
            
            .contact-item {
                gap: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .footer-col h3:after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .social-links {
                justify-content: center;
            }
        }
        
        /* Extra Small Phones */
        @media (max-width: 400px) {
            h1 {
                font-size: 2.1rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .logo img {
                height: 40px;
            }
            
            header {
                padding: 10px 0;
            }
            
            .header-container {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            
            .hero {
                padding-top: 90px;
            }
            
            .hero-btns {
                gap: 15px;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-form input, 
            .contact-form textarea {
                padding: 12px 15px;
                font-size: 0.9rem;
            }
            
            .footer-links li {
                margin-bottom: 10px;
            }
        }