 :root {
            --primary: #1A3A5F; /* Professional navy blue */
            --secondary: #D4AF37; /* Gold accent for prestige */
            --accent: #0A558C; /* Darker blue for contrast */
            --light: #F8F9FA;
            --dark: #212529;
            --gray: #6C757D;
            --light-gray: #E9ECEF;
            --border-radius: 10px;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Source Serif Pro', serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.2rem;
        }
        
        h1 {
            font-size: 3.2rem;
            letter-spacing: -0.5px;
        }
        
        h2 {
            font-size: 2.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), #F1C40F);
            border-radius: 2px;
        }
        
        h3 {
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.05rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn-contact{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--secondary), #E6B800);
            color: var(--primary);
            border-radius: var(--border-radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1rem;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
        }

        .btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
            color: var(--primary);
            background: #fff;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            background: linear-gradient(135deg, var(--secondary), #E6B800);
            color: var(--primary);
            border-radius: var(--border-radius);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1rem;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
            color: var(--primary);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background: var(--secondary);
            color: var(--primary);
        }
        
        section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 18px 0;
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 12px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.4rem;
            font-weight: 700;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 0;
            color: var(--primary);
            letter-spacing: -0.5px;
        }
        
        .logo-text p {
            font-size: 0.8rem;
            margin-bottom: 0;
            color: var(--gray);
            letter-spacing: 1px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 35px;
        }
        
        .nav-menu a {
            font-weight: 600;
            color: var(--dark);
            position: relative;
            font-size: 1rem;
        }
        
        .nav-menu a:hover {
            color: var(--secondary);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .nav-menu a:not(:last-child):hover:after {
        width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            z-index: 1001;
        }
        
        /* Hero Section */
        .hero {
            padding-top: 180px;
            padding-bottom: 120px;
            background: linear-gradient(135deg, rgba(26, 58, 95, 0.9) 0%, rgba(10, 85, 140, 0.95) 100%), url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: white;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 45px 35px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border-top: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-top-color: var(--secondary);
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), #F1C40F);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(26, 58, 95, 0.1), rgba(10, 85, 140, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        /* About Section */
        .about {
            background-color: var(--light);
            position: relative;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text h2 {
            margin-bottom: 25px;
        }
        
        .founder-highlight {
            background: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-top: 30px;
            border-left: 4px solid var(--secondary);
        }
        
        .founder-highlight h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .about-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
            z-index: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Why Choose Us - 2x2 Grid */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .why-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .why-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), #F1C40F);
        }
        
        .why-icon {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 25px;
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info h3 {
            margin-bottom: 30px;
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(26, 58, 95, 0.1), rgba(10, 85, 140, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--primary);
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            margin-bottom: 8px;
            color: var(--primary);
        }
        
        .contact-form {
            background-color: white;
            padding: 50px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), #F1C40F);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background-color: #fefefe;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }
        
        /* Success Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background-color: white;
            border-radius: var(--border-radius);
            width: 90%;
            max-width: 500px;
            padding: 50px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            transform: translateY(30px);
            transition: all 0.4s ease;
            position: relative;
            text-align: center;
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .modal-close:hover {
            color: var(--primary);
        }
        
        .modal-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary), #E6B800);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--primary);
            font-size: 2.5rem;
        }
        
        .modal h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .modal p {
            margin-bottom: 25px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 80px 0 30px;
            position: relative;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), #F1C40F);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo h2 {
            font-size: 1.8rem;
            color: white;
            margin-bottom: 10px;
        }
        
        .footer-logo h2:after {
            display: none;
        }
        
        .footer-logo p {
            color: rgba(255, 255, 255, 0.7);
            max-width: 300px;
        }
        
        .footer-links h3,
        .footer-services h3,
        .footer-newsletter h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h3:after,
        .footer-services h3:after,
        .footer-newsletter h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .footer-links ul,
        .footer-services ul {
            list-style: none;
        }
        
        .footer-links li,
        .footer-services li {
            margin-bottom: 15px;
        }
        
        .footer-links a,
        .footer-services a {
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .footer-links a:hover,
        .footer-services a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }
        
        .footer-links i,
        .footer-services i {
            margin-right: 10px;
            font-size: 0.9rem;
            color: var(--secondary);
        }
        
        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-family: 'Inter', sans-serif;
        }
        
        .newsletter-form button {
            background: linear-gradient(135deg, var(--secondary), #E6B800);
            color: var(--primary);
            border: none;
            padding: 0 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .newsletter-form button:hover {
            opacity: 0.9;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-icons a {
            width: 42px;
            height: 42px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }
        
        .social-icons a:hover {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            margin-left: 20px;
        }
        
        .footer-bottom-links a:hover {
            color: var(--secondary);
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .why-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .about-image {
                order: -1;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .footer-bottom-links a {
                margin: 0 10px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 40px 40px;
                transition: var(--transition);
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 0 0 25px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding-top: 150px;
                padding-bottom: 100px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .hero-btns .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 15px;
            }
            
            section {
                padding: 80px 0;
            }
            
            .contact-form {
                padding: 35px;
            }
            
            .modal {
                padding: 30px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }