       
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .nav-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0A2540, #1E5A9A);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0A2540;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-menu a {
            color: #0A2540;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .nav-menu a:hover {
            color: #1E5A9A;
        }
        
        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #0A2540, #1E5A9A);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .nav-cta:hover {
            box-shadow: 0 10px 25px rgba(10, 37, 64, 0.3);
            transform: translateY(-2px);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        .mobile-menu {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid #e5e5e5;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu a {
            display: block;
            padding: 0.75rem 0;
            color: #0A2540;
            text-decoration: none;
            font-weight: 500;
        }
        
        /* Hero Section */
        .hero {
            padding: 10rem 3rem 5rem;
            background: linear-gradient(135deg, #F8F9FA 0%, #ffffff 50%, #E8F2FF 100%);
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.75rem;
            font-weight: 700;
            color: #0A2540;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #0A2540, #1E5A9A);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            box-shadow: 0 15px 35px rgba(10, 37, 64, 0.3);
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            padding: 1rem 2rem;
            background: white;
            color: #0A2540;
            border: 2px solid #0A2540;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background: #0A2540;
            color: white;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        /* Section Styles */
        section {
            padding: 5rem 3rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.25rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about {
            background: white;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .about h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 1.5rem;
            margin-top:0px;
        }
        
        .about p {
            font-size: 1.125rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .mission-vision-card {
            padding: 1.5rem;
            background: linear-gradient(135deg, #F8F9FA, white);
            border: 1px solid #e5e5e5;
            border-radius: 12px;
        }
        
        .mission-vision-card h3 {
            margin-top:0px;
            font-size: 1.25rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.5rem;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        /* Services Section */
        .services {
            background: linear-gradient(135deg, #F8F9FA, white);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .service-card {
            padding: 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e5e5;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }
        
        .service-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #0A2540, #1E5A9A);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Why Choose Us */
        .why-choose {
            background: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .feature-item {
            text-align: center;
            padding: 2rem;
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #0A2540, #1E5A9A);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .feature-item h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 1rem;
        }
        
        .feature-item p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Industries */
        .industries {
            background: linear-gradient(135deg, #F8F9FA, white);
        }
        
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .industry-card {
            padding: 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e5e5;
            transition: all 0.3s;
        }
        
        .industry-card:hover {
            border-color: #1E5A9A;
        }
        
        .industry-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0A2540;
            margin: 1rem 0 0.5rem;
        }
        
        .industry-card p {
            color: #666;
        }
        
        /* Process */
        .process {
            background: white;
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .process-step {
            text-align: center;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0A2540, #1E5A9A);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
        }
        
        .process-step h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.5rem;
        }
        
        .process-step p {
            color: #666;
        }
        
        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #F8F9FA, white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            padding: 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e5e5;
        }
        
        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }
        
        .star {
            color: #FFC107;
            font-size: 1.25rem;
        }
        
        .testimonial-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .testimonial-author img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-weight: 700;
            color: #0A2540;
        }
        
        .author-info p {
            font-size: 0.875rem;
            color: #666;
            margin: 0;
        }
        
        /* Contact */
        .contact {
            background: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .contact-info h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 2rem;
        }
        
        .contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #0A2540, #1E5A9A);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-item h4 {
            font-weight: 700;
            color: #0A2540;
            margin-bottom: 0.25rem;
                margin-top: 0px;
        }
        
        .contact-item p {
            color: #666;
            margin: 0;
        }
        
        .contact-image {
            margin-top: 3rem;
        }
        
        .contact-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-group label {
            display: block;
            color: #0A2540;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1E5A9A;
            box-shadow: 0 0 0 3px rgba(30, 90, 154, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        /* Footer */
        footer {
            background: #0A2540;
            color: white;
            padding: 4rem 3rem;
        }
        
        .footer-container {
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, white, #e5e5e5);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .footer-description {
            color: #d1d5db;
            margin-bottom: 1.5rem;
            max-width: 400px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }
        
        .social-links a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .footer-links h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: #d1d5db;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-grid,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid,
            .industries-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid,
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 640px) {
            .services-grid,
            .industries-grid,
            .testimonials-grid,
            .features-grid,
            .process-grid {
                grid-template-columns: 1fr;
            }
            
            .mission-vision {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .hero-buttons button {
                width: 100%;
            }
            
            section {
                padding: 3rem 1.5rem;
            }
            
            .hero {
                padding: 8rem 1.5rem 3rem;
            }
            
            .nav-container {
                padding: 0 1.5rem;
            }
        }

        