:root {
            /* Brand Colors */
            --primary-black: #121212;
            --primary-maroon: #800020;
            --primary-red: #d32f2f;
            --accent-red: #ff5252;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
            --white: #ffffff;
            
            /* Gradients */
            --gradient-primary: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-red) 100%);
            --gradient-secondary: linear-gradient(45deg, #800020, #d32f2f, #ff5252);
            --gradient-overlay: linear-gradient(135deg, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.9) 100%);
            
            /* Spacing */
            --section-padding: 120px 0;
            --container-padding: 0 20px;
            
            /* Typography */
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            
            /* Shadows */
            --shadow-light: 0 2px 15px rgba(0, 0, 0, 0.1);
            --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
            --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.2);
            --shadow-colored: 0 8px 25px rgba(128, 0, 32, 0.3);
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            
            /* Border Radius */
            --radius-small: 6px;
            --radius-medium: 12px;
            --radius-large: 20px;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 14px;
        }
        /* Preloader - Simple & Clean */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
            max-width: 500px;
            padding: 50px;
        }

        /* Logo Styling - Clean & Centered */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .company-name-preloader {
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -1px;
        }

        .company-name-gradient {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #800020 0%, #d32f2f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* Loading Progress - Clean */
        .loading-progress {
            width: 100%;
            max-width: 300px;
        }

        .progress-text {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .progress-percentage {
            font-weight: 700;
            color: #d32f2f;
            font-size: 1rem;
        }

        .loading-text {
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
        }

        .modern-loader {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .loader-track {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .loader-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, #800020, #d32f2f);
            border-radius: 10px;
            width: 0%;
            animation: loadingProgress 2.5s ease-in-out infinite;
        }

        @keyframes loadingProgress {
            0% { width: 0%; }
            50% { width: 70%; }
            100% { width: 100%; }
        }
        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            color: #fff;
            margin-bottom: 15px;
            font-weight: 600;
        }

        h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
        h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
        h4 { font-size: 1.25rem; font-weight: 600; }

        p {
            margin-bottom: 15px;
            line-height: 1.7;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border: none;
            border-radius: var(--radius-medium);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-colored);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(128, 0, 32, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-maroon);
            color: var(--primary-maroon);
        }

        .btn-outline:hover {
            background: var(--primary-maroon);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(128, 0, 32, 0.3);
        }

        .btn-cta {
            padding: 12px 24px;
            font-size: 0.9rem;
            border-radius: var(--radius-small);
        }

        .logo-loader {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary-black);
        }

        .logo-accent {
            color: var(--primary-red);
        }

        /* Logo Styling */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .company-name-preloader {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -1px;
        }

        .company-name-gradient {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* Loading Progress */
        .loading-progress {
            width: 100%;
            max-width: 300px;
        }

        .progress-text {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .progress-percentage {
            font-weight: 700;
            color: var(--primary-red);
        }

        .loading-text {
            font-style: italic;
        }

        .modern-loader {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .loader-track {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .loader-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-maroon), var(--primary-red));
            border-radius: 10px;
            width: 0%;
            animation: loadingProgress 3s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
        }

        @keyframes loadingProgress {
            0% { width: 0%; }
            50% { width: 70%; }
            100% { width: 100%; }
        }

        /* Particle Effects */
        .preloader::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(128, 0, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(211, 47, 47, 0.1) 0%, transparent 50%);
            animation: floatBackground 6s ease-in-out infinite;
        }

        /* Animated Background Particles */
        .particles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: transparent; /* Changed to transparent */
            backdrop-filter: blur(0px); /* Remove blur when transparent */
            z-index: 1000;
            transition: all var(--transition-normal);
            padding: 20px 0; /* Slightly more padding */
        }

        .header.scrolled {
            background: rgba(18, 18, 18, 0.98); /* Background appears on scroll */
            backdrop-filter: blur(10px); /* Blur appears on scroll */
            box-shadow: var(--shadow-light);
            padding: 15px 0; /* Reduced padding when scrolled */
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        /* Company Name with Gradient */
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .company-name {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .company-text {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            letter-spacing: -0.5px;
        }

        .logo-subtitle {
            font-size: 0.75rem;
            color: var(--medium-gray);
            font-weight: 400;
            margin-top: 2px;
            letter-spacing: 0.5px;
        }
        @media (max-width: 768px) {
            .company-text {
                font-size: 1.5rem;
            }
            
            .footer .company-text {
                font-size: 1.3rem;
            }
            
            .logo {
                gap: 10px;
            }
            
            .footer-logo {
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .company-text {
                font-size: 1.3rem;
            }
            
            .footer .company-text {
                font-size: 1.1rem;
            }
            
            .logo-subtitle {
                font-size: 0.7rem;
            }
        }
        /* Footer specific styles */
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .footer .company-text {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .footer .logo-subtitle {
            font-size: 0.7rem;
            color: #999;
        }

        /* Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-link {
            color: #f8f9fa !important; /* Force white color */
            text-decoration: none;
            font-weight: 600; /* Increased weight for better visibility */
            position: relative;
            padding: 8px 0;
            transition: all var(--transition-normal);
            overflow: visible;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* Stronger shadow */
        }

        /* Remove all the duplicate text effects */
        .nav-link::before {
            display: none;
        }

        /* Active state - red */
        .nav-link.active {
            color: var(--primary-red) !important;
            text-shadow: none;
        }

        /* Hover effect - keep white but add underline */
        .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width var(--transition-normal);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Ensure active state stays red on hover */
        .nav-link.active:hover {
            color: var(--primary-red) !important;
        }


        .nav-link:hover::before,
        .nav-link.active::before {
            opacity: 1; /* Fade in on hover */
            transform: translateY(0);
        }


        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: white !important;
            margin: 3px 0;
            transition: all var(--transition-normal);
            border-radius: 2px;
        }

        .mobile-toggle.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Hero Section */
        .hero {
            min-height: 80vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)), 
                        url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1776&q=80');
            background-size: cover;
            background-position: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-overlay);
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: -150px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            left: -100px;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 20%;
            animation-delay: 4s;
        }

        .hero-content {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 120px 0 80px;
            width: 100%;
        }

        .hero-title {
            color: #ffffff;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .title-line {
            display: block;
            animation: slideInLeft 1s var(--transition-bounce);
        }

        .title-accent {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s var(--transition-bounce) 0.2s both;
        }

        .hero-description {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-text {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-image:hover {
            transform: scale(1.05);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            animation: bounce 2s infinite;
        }

        .scroll-line {
            width: 2px;
            height: 30px;
            background: var(--white);
            border-radius: 1px;
            position: relative;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-red);
            animation: scrollIndicator 2s infinite;
        }

        @keyframes scrollIndicator {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(100%); opacity: 0; }
        }

        /* Section Styles */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #fff;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Section */
        .services {
            background: var(--light-gray);
            position: relative;
            padding: 80px 0;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23800020' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .service-card {
            background: #2a2a2a;
            border-radius: var(--radius-medium);
            padding: 25px 20px;
            box-shadow: var(--shadow-light);
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform var(--transition-normal);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--white);
            box-shadow: var(--shadow-colored);
            transition: all var(--transition-normal);
        }

        .service-card:hover .service-icon {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(128, 0, 32, 0.3);
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #fff;
            line-height: 1.3;
        }

        .service-card p {
            color: #fff;
            line-height: 1.5;
            margin-bottom: 15px;
            font-size: 0.9rem;
            flex-grow: 1;
        }

        .service-features {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .feature-tag {
            background: rgba(128, 0, 32, 0.15); /* Increased opacity from 0.1 to 0.15 */
            color: #fff;
            padding: 5px 10px; /* Slightly increased padding */
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600; /* Increased from 500 to 600 for better visibility */
            white-space: nowrap;
            border: 1px solid rgba(128, 0, 32, 0.2); /* Added subtle border */
        }

        /* About Section */
        .about {
            padding: 80px 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .about-main-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .about-intro {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.5;
            margin: 0;
        }

        .about-details {
            color: #fff;
            line-height: 1.5;
            margin: 0;
            font-size: 0.95rem;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: #2a2a2a;
            border-radius: var(--radius-medium);
            transition: all var(--transition-normal);
        }

        .highlight-item:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-light);
        }

        .highlight-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .highlight-text h4 {
            margin-bottom: 4px;
            color: #fff;
            font-size: 0.95rem;
        }

        .highlight-text p {
            color: #fff;
            margin: 0;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* About Visual - Made more compact */
        .about-visual {
            position: relative;
        }

        .about-image-container {
            position: relative;
            border-radius: var(--radius-medium);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        .about-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .about-image-container:hover .about-image {
            transform: scale(1.03);
        }

        .image-decoration {
            position: absolute;
            top: -10px;
            left: -10px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-red);
            border-radius: var(--radius-medium);
            z-index: -1;
            animation: rotate 20s linear infinite;
        }

        /* Mission & Vision Section */
        .mission-vision {
            background: (var(--medium-gray));
            color: var(--white);
            position: relative;
            padding: 80px 0;
            overflow: hidden;
        }

        .mission-vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(128, 0, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(211, 47, 47, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            animation: floatBackground 20s ease-in-out infinite;
        }

        @keyframes floatBackground {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            50% {
                transform: translateY(-20px) scale(1.02);
            }
        }

        .mv-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
            max-width: 1000px;
            margin: 0 auto;
        }

        .mv-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px);
            padding: 35px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            transition: all var(--transition-normal);
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .card-glow {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, transparent, rgba(128, 0, 32, 0.3), transparent);
            border-radius: 22px;
            opacity: 0;
            transition: opacity var(--transition-normal);
            z-index: -1;
        }

        .mv-card:hover .card-glow {
            opacity: 1;
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .mv-card:hover::before {
            left: 100%;
        }

        .mv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .mv-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            position: relative;
        }

        .mv-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-red) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            transition: all var(--transition-normal);
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(128, 0, 32, 0.4);
        }

        .mv-card:hover .mv-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 25px rgba(128, 0, 32, 0.6);
        }

        .mission-card .mv-icon,
        .vision-card .mv-icon {
            background: linear-gradient(135deg, #800020 0%, #d32f2f 100%);
        }

        .mv-header h3 {
            margin: 0;
            color: #fff;
            font-size: 1.4rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .mv-content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .mv-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1rem;
            position: relative;
        }

        .mv-features {
            display: grid;
            gap: 12px;
            margin-top: auto;
        }

        .feature-point {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-point:last-child {
            border-bottom: none;
        }

        .feature-point i {
            color: var(--white);
            font-size: 0.8rem;
            background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-red) 100%);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Contact Info Side */
        .contact-info h3 {
            margin-bottom: 30px;
            font-size: 1.5rem;
            color: #fff;
        }

        .contact-items {
            display: grid;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px;
            background: #2a2a2a;
            border-radius: var(--radius-medium);
            transition: all var(--transition-normal);
            cursor: pointer;
            border: 1px solid #2a2a2a;
        }

        .contact-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-maroon);
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .contact-details h4 {
            margin-bottom: 4px;
            color: #fff;
            font-size: 0.95rem;
        }

        .contact-details a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: color var(--transition-fast);
        }

        .contact-details a:hover {
            color: var(--primary-maroon);
        }

        /* Contact Note - Compact */
        .contact-note {
            display: flex;
            gap: 15px;
            padding: 18px;
            background: linear-gradient(135deg, rgba(128, 0, 32, 0.08) 0%, rgba(211, 47, 47, 0.08) 100%);
            border-radius: var(--radius-medium);
            border-left: 4px solid var(--primary-maroon);
            margin-bottom: 25px;
        }

        .note-icon {
            width: 35px;
            height: 35px;
            background: var(--primary-maroon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
            font-size: 0.9rem;
        }

        .note-content h4 {
            margin-bottom: 5px;
            color: #fff;
            font-size: 0.95rem;
        }

        .note-content p {
            color: #fff;
            margin: 0;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* Contact Features - Compact */
        .contact-features {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            background: #2a2a2a;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            font-size: 0.8rem;
            color: var(--white); /* Changed from primary-black to dark-gray for better visibility */
            border: 1px solid #2a2a2a;
        }

        .feature-item i {
            color: var(--primary-red);
            font-size: 0.7rem;
        }

        /* Contact Form - Redesigned */
        .contact-form-container {
            background: #2a2a2a;
            padding: 30px;
            border-radius: var(--radius-large);
            box-shadow: var(--shadow-medium);
            position: relative;
            border: 1px solid #2a2a2a;
        }

        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: var(--radius-large) var(--radius-large) 0 0;
        }

        .form-header {
            text-align: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--medium-gray);
        }

        .form-header h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #fff;
        }

        .form-header p {
            color: #fff;
            margin: 0;
            font-size: 0.9rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #fff;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 45px 12px 12px; /* Increased right padding from 40px to 45px */
            border: 1.5px solid var(--dark-gray);
            border-radius: var(--radius-small);
            font-size: 0.9rem;
            font-family: inherit;
            transition: all var(--transition-normal);
            background: #2a2a2a;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary-maroon);
            box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
        }

        .input-icon,
        .textarea-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            pointer-events: none;
            font-size: 1rem;
            z-index: 2;
        }
        .textarea-icon {
            top: 40px; /* Adjusted for better positioning */
            transform: none;
            right: 15px; /* Consistent with other inputs */
        }

        .form-control:focus + .input-icon,
        .form-control:focus + .textarea-icon {
            color: var(--primary-maroon);
        }
        .form-group.full-width .form-control {
            padding-right: 45px; /* Consistent padding */
        }
        .btn-submit {
            width: 100%;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
            padding: 14px 24px;
            font-size: 0.95rem;
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid var(--white);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Footer */
        .footer {
            background: var(--primary-black);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-main {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        

        .footer-description {
            color: #999;
            line-height: 1.6;
            margin: 0;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all var(--transition-normal);
        }

        .social-link:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            color: var(--primary-red);
            margin-bottom: 20px;
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-red);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color var(--transition-fast);
            position: relative;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary-red);
            transition: width var(--transition-fast);
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-links a:hover {
            color: var(--primary-maroon);
            padding-left: 5px;
        }

        .footer-contact-items {
            display: grid;
            gap: 15px;
        }

        .footer-contact .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            background: none;
            margin: 0;
            border: none !important;
        }

        .footer-contact .contact-item i {
            color: var(--primary-red);
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }

        .footer-contact .contact-item a,
        .footer-contact .contact-item span {
            color: #999;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition-fast);
            line-height: 1.4;
        }

        .footer-contact .contact-item a:hover {
            color: var(--primary-maroon);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: #999;
            margin: 0;
            font-size: 0.9rem;
        }

        /* Scroll to Top */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--shadow-medium);
            transition: all var(--transition-normal);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
        }

        /* Animations */
        @keyframes slideInLeft {
            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);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* AOS Animation Overrides */
        [data-aos="fade-up"] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-aos="fade-up"].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        [data-aos="fade-right"] {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-aos="fade-right"].aos-animate {
            opacity: 1;
            transform: translateX(0);
        }

        [data-aos="fade-left"] {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-aos="fade-left"].aos-animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .service-card {
                padding: 25px 20px;
            }
            
             .about-content {
                gap: 40px;
            }
            
            .about-image {
                height: 280px;
            }
            .mv-container {
                gap: 25px;
                max-width: 900px;
            }
            
            .mv-card {
                padding: 30px 25px;
            }
            
            .mv-icon {
                width: 55px;
                height: 55px;
                font-size: 1.4rem;
            }
            
            .contact-container {
                gap: 40px;
            }
            
            .contact-form-container {
                padding: 25px;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 80px 0;
                --container-padding: 0 16px;
            }
            html {
                font-size: 13px;
            }
                    
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: rgba(18, 18, 18, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 40px 0;
                text-align: center;
                transition: left var(--transition-normal);
                box-shadow: var(--shadow-medium);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .header-cta {
                display: none;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
            
             .services {
                padding: 60px 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .service-card {
                padding: 25px 20px;
                max-width: 400px;
                margin: 0 auto;
            }
            .about {
                padding: 60px 0;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .about-highlights {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .about-image {
                height: 250px;
            }
            
            .image-decoration {
                top: -8px;
                left: -8px;
            }
            
            .mission-vision {
                padding: 60px 0;
            }
            
            .mv-container {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 500px;
            }
            
            .mv-card {
                padding: 30px 25px;
                border-radius: 18px;
            }
            
            .mv-header {
                gap: 15px;
                margin-bottom: 20px;
            }
            
            .mv-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                border-radius: 12px;
            }
            
            .mv-header h3 {
                font-size: 1.3rem;
            }
            
            .contact {
                padding: 60px 0;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-info {
                text-align: center;
            }
            
            .contact-items {
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .contact-features {
                justify-content: center;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .contact-form-container {
                padding: 25px 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            
            .contact-features {
                justify-content: center;
            }
            
            .floating-card {
                display: none;
            }
            .footer-contact .contact-item {
                justify-content: center;
                text-align: center;
            }
            
            .footer-contact-items {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                padding: 20px 15px;
            }
            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin-bottom: 15px;
            }
            
            .service-card h3 {
                font-size: 1rem;
            }
            
            .service-card p {
                font-size: 0.85rem;
            }
            .mv-card {
                padding: 25px 20px;
            }
            
            .mv-header {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
            
            .mv-icon {
                width: 50px;
                height: 50px;
            }
            
            .mv-header h3 {
                font-size: 1.2rem;
            }
            
            .mv-card p {
                font-size: 0.95rem;
                text-align: center;
            }
            
            .feature-point {
                justify-content: center;
                text-align: center;
            }

            
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
            
            .about-content {
                gap: 30px;
            }
            
            .about-highlights {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
            
            .highlight-item {
                padding: 12px;
                gap: 10px;
            }
            
            .about-image {
                height: 220px;
            }
            
            .about-intro {
                font-size: 1rem;
            }
            
            .about-details {
                font-size: 0.9rem;
            }
                .contact-container {
                gap: 30px;
            }
            
            .contact-item {
                padding: 15px;
                gap: 12px;
            }
            
            .contact-icon {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .contact-note {
                padding: 15px;
                gap: 12px;
            }
            
            .note-icon {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
            
            .contact-form-container {
                padding: 20px 15px;
            }
            
            .feature-item {
                padding: 6px 10px;
                font-size: 0.75rem;
            }
        }

        /* Print Styles */
        @media print {
            .preloader,
            .particles-container,
            .header,
            .scroll-to-top,
            .floating-card {
                display: none !important;
            }
            
            .hero {
                padding: 40px 0;
            }
            
            .hero-bg,
            .hero-shapes {
                display: none;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                color: var(--primary-black) !important;
            }
            
            section {
                padding: 40px 0;
                page-break-inside: avoid;
            }
            
            .service-card,
            .mv-card,
            .contact-item {
                box-shadow: none !important;
                border: 1px solid #ddd;
            }
        }

        /* High Contrast Mode */
        @media (prefers-contrast: high) {
            .service-card,
            .contact-item,
            .highlight-item {
                border: 2px solid var(--primary-black);
            }
            
            .btn {
                border: 2px solid currentColor;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            html {
                scroll-behavior: auto;
            }
            
            .scroll-indicator {
                animation: none;
            }
            
            .floating-card {
                animation: none;
            }
            
            .achievement-badge {
                animation: none;
            }
        }

        /* Dark Mode Support */
        @media (prefers-color-scheme: dark) {
            :root {
                --white: #1a1a1a;
                --light-gray: #2a2a2a;
                --medium-gray: #3a3a3a;
                --dark-gray: #ffffff;
            }
            
            .service-card,
            .contact-form-container,
            .mv-card {
                background: #2a2a2a;
                color: var(--white);
            }
            
            .form-control {
                background: #2a2a2a;
                color: #fff;
                border-color: #3a3a3a;
            }
        }
