
 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        /* Top Social Bar */
        .social-bar {
            background: linear-gradient(135deg, #1e4d57 0%, #1a3d47 100%);
            padding: 16px 0;
            border-bottom: 1px solid rgba(74, 168, 156, 0.2);
        }
        
        .social-bar .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-contact {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .top-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #b8cfd4;
            font-size: 13px;
        }
        
        .top-contact-item svg {
            width: 15px;
            height: 15px;
            color: #4aa89c;
        }
        
        .top-contact-item a {
            color: #b8cfd4;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .top-contact-item a:hover {
            color: white;
        }
        
        .social-icons {
            display: flex;
            gap: 10px;
        }
        
        .social-icons a {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b8cfd4;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: #4aa89c;
            border-color: #4aa89c;
            color: white;
            transform: translateY(-2px);
        }
        
        .social-icons svg {
            width: 14px;
            height: 14px;
        }
        
        /* Navigation */
        nav {
            background: #1a3d47;
            padding: 0;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        nav .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 85px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            transition: transform 0.3s;
        }
        
        .logo:hover img {
            transform: scale(1.05);
        }
        
        .nav-links {
            display: flex;
            gap: 5px;
            align-items: center;
            list-style: none;
        }
        
        .nav-links li {
            position: relative;
        }
        
        .nav-links a {
            color: #b8cfd4;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            padding: 32px 22px;
            display: block;
            position: relative;
        }
        
        .nav-links a:hover {
            color: white;
            background: rgba(74, 168, 156, 0.08);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: #4aa89c;
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        
        .nav-links a:hover::after {
            width: 50%;
        }
        
        .phone-btn {
            background: #4aa89c;
            border: 2px solid #4aa89c;
            color: white;
            padding: 14px 30px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(74, 168, 156, 0.25);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .phone-btn:hover {
            background: #3d9b8f;
            border-color: #3d9b8f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 168, 156, 0.35);
        }
        
        .phone-btn svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(26, 61, 71, 0.92), rgba(42, 85, 96, 0.88)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231a3d47;stop-opacity:1" /><stop offset="100%" style="stop-color:%232a5560;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23g)" width="1200" height="600"/><circle cx="100" cy="100" r="80" fill="rgba(74,168,156,0.05)"/><circle cx="900" cy="400" r="120" fill="rgba(74,168,156,0.03)"/><circle cx="1100" cy="150" r="60" fill="rgba(74,168,156,0.04)"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 650px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(74, 168, 156, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(74, 168, 156, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 40px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: 52px;
            color: white;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .hero-content .highlight {
            color: #4aa89c;
            position: relative;
        }
        
        .hero-content p {
            font-size: 19px;
            color: #d4e0e3;
            margin-bottom: 40px;
            line-height: 1.8;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        /* Contact Form Card */
        .contact-card {
            background: rgba(255, 255, 255, 0.98);
            padding: 45px;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-card .logo-center {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .contact-card .logo-center img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
        }
        
        .contact-card h2 {
            color: #1a3d47;
            font-size: 22px;
            text-align: center;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .contact-card .subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
            font-size: 15px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 95%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4aa89c;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            background: #4aa89c;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: #3d9b8f;
        }
        
        /* Services Section */
        .services {
            padding: 120px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
            position: relative;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(74, 168, 156, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .services .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-header h2 {
            font-size: 44px;
            color: #1a3d47;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .section-header p {
            font-size: 19px;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            margin-top: 60px;
        }
        
        .service-card {
            background: white;
            padding: 45px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #4aa89c 0%, #3d9b8f 100%);
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
            border-color: rgba(74, 168, 156, 0.2);
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-card h3 {
            color: #1a3d47;
            font-size: 26px;
            margin-bottom: 18px;
            font-weight: 700;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.8;
            font-size: 16px;
        }
		
		.service-card-image {
			width: 100%;
			height: 350px;
			overflow: hidden;
			border-radius: 8px;
			margin-bottom: 25px;
		}

		.service-card-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
			display: block; /* prevents extra spacing */
			max-width: 100%; /* ensures mobile constraint */
		}

		.service-card:hover .service-card-image img {
			transform: scale(1.08);
		}
        
        /* Why Choose Us */
        .why-choose {
            padding: 120px 0;
            background: white;
            position: relative;
        }
        
        .why-choose::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(74, 168, 156, 0.2) 50%, transparent 100%);
        }
        
        .why-choose .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-top: 70px;
        }
        
        .feature {
            text-align: center;
            padding: 20px;
            transition: transform 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #4aa89c 0%, #3d9b8f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: white;
            box-shadow: 0 8px 25px rgba(74, 168, 156, 0.25);
            transition: all 0.3s;
        }
        
        .feature:hover .feature-icon {
            box-shadow: 0 12px 35px rgba(74, 168, 156, 0.35);
            transform: scale(1.05);
        }
        
        .feature h3 {
            color: #1a3d47;
            font-size: 24px;
            margin-bottom: 18px;
            font-weight: 700;
        }
        
        .feature p {
            color: #666;
            line-height: 1.8;
            font-size: 16px;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #1a3d47 0%, #2a5560 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(74, 168, 156, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .cta::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(74, 168, 156, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .cta .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }
        
        .cta h2 {
            color: white;
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta p {
            color: #b8cfd4;
            font-size: 19px;
            margin-bottom: 45px;
        }
        
        .cta-btn {
            display: inline-block;
            background: #4aa89c;
            color: white;
            padding: 18px 50px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(74, 168, 156, 0.3);
        }
        
        .cta-btn:hover {
            background: #3d9b8f;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(74, 168, 156, 0.4);
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        
        /* Footer */
        footer {
            background: #1a3d47;
            color: #b8cfd4;
            padding: 80px 0 40px;
        }
        
        footer .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 80px;
            margin-bottom: 50px;
        }
        
        .footer-section h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 14px;
        }
        
        .footer-section a {
            color: #b8cfd4;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-logo {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin-bottom: 25px;
        }
        
        .footer-description {
            color: #b8cfd4;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 15px;
        }
        
        .footer-contact {
            margin-top: 25px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: #b8cfd4;
            font-size: 15px;
        }
        
        .footer-contact-item strong {
            color: white;
            min-width: 60px;
            font-weight: 600;
        }
        
        .footer-contact-item a {
            color: #4aa89c;
            text-decoration: none;
            font-weight: 500;
        }
        
        .footer-contact-item a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-links a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b8cfd4;
            font-size: 16px;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: #4aa89c;
            border-color: #4aa89c;
            color: white;
            transform: translateY(-2px);
        }
        
        .service-badge {
            display: inline-block;
            background: rgba(74, 168, 156, 0.15);
            color: #4aa89c;
            padding: 6px 14px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            margin-top: 5px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #b8cfd4;
            font-size: 14px;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            background: #1a3d47;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-nav-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
        }
        
        .mobile-nav-links a {
            color: #b8cfd4;
            text-decoration: none;
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding: 14px 8px;
            text-align: center;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }
        
        .mobile-nav-links a:hover,
        .mobile-nav-links a.active {
            color: white;
            border-bottom-color: #4aa89c;
            background: rgba(74, 168, 156, 0.1);
        }
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
            }
			
			.services-grid {
				grid-template-columns: repeat(2, 1fr);
			}
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            footer .container {
                padding: 0 30px;
            }
        }
        
        @media (max-width: 768px) {
            .top-contact {
                display: none;
            }
            
            .social-bar .container {
                justify-content: center;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-nav {
                display: block;
            }
            
            nav .container {
                min-height: 70px;
            }
            
            .logo img {
                width: 50px;
                height: 50px;
            }
            
            .phone-btn {
                padding: 10px 16px;
                font-size: 11px;
                gap: 6px;
            }
            
            .phone-btn svg {
                width: 13px;
                height: 13px;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .contact-card {
                padding: 30px;
            }
			
			.services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
			
			.service-card-image {
				height: 180px; /* Slightly smaller on mobile */
				margin-bottom: 20px;
			}
    
			.service-card {
				padding: 30px; /* Match your existing mobile padding */
			}
            
            footer {
                padding: 40px 0 20px;
            }
            
            footer .container {
                padding: 0 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .footer-section h3 {
                font-size: 17px;
                margin-bottom: 15px;
            }
            
            .footer-logo {
                width: 80px;
                height: 80px;
            }
            
            .footer-description {
                font-size: 14px;
            }
            
            .contact-item {
                font-size: 14px;
            }
            
            .social-links {
                margin-top: 20px;
            }
            
            .footer-bottom {
                padding-top: 25px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            .footer-content {
                gap: 30px;
            }
			
			.service-card-image {
				height: 160px; /* Even smaller on very small screens */
				border-radius: 6px;
			}
            
            .footer-section ul li {
                margin-bottom: 10px;
            }
            
            .footer-section a {
                font-size: 14px;
            }
        }
    </style>