
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }

        /* Fixed Background Classes - Smooth High-Depth Linear Gradients */
        .hero-bg {
            background: linear-gradient(rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.65)),
                        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=1920') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
        }
        
        .home-below-bg {
            background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 35%, #bae6fd 70%, #7dd3fc 100%);
        }
        .about-bg {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #bae6fd 75%, #7dd3fc 100%);
        }
        .services-bg {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #bae6fd 75%, #7dd3fc 100%);
        }
        .gallery-bg {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #bae6fd 75%, #7dd3fc 100%);
        }
        .contact-bg {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #bae6fd 75%, #7dd3fc 100%);
        }
        .service-detail-bg {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 45%, #bae6fd 100%);
        }

        /* Responsive Background Attachment Fix for iOS/Android Mobile Devices */
        @media (max-width: 768px) {
            .hero-bg {
                background-attachment: scroll !important;
                background-position: center !important;
                min-height: 50vh !important; 
                background-size: cover !important;
            }
        }

        .btn-shadow {
            box-shadow: 0 10px 20px -3px rgba(12, 74, 110, 0.3);
        }
        
        .hidden-page {
            display: none !important;
        }

        /* Testimonial Animations & Hover Accent Borders */
        .testimonial-card {
            position: relative;
            background: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #f1f5f9;
        }
        .testimonial-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(45deg, #0c4a6e, #f59e0b, #0c4a6e);
            border-radius: 1.5rem;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -5px rgba(12, 74, 110, 0.15);
        }
        .testimonial-card:hover::before {
            opacity: 1;
        }
        
        .line-clamp-4 {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;  
            overflow: hidden;
        }

        /* Gallery Animations */
        .gallery-item {
            overflow: hidden;
            border-radius: 2rem;
            position: relative;
            cursor: pointer;
        }
        .gallery-img {
            transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
        }
        .gallery-item:hover .gallery-img {
            transform: scale(1.1) rotate(1deg);
        }
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(12, 74, 110, 0.9), rgba(12, 74, 110, 0.2));
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 2rem;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }

        /* Continuous Service Ticker Animation */
        @keyframes scroll-ltr {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        .animate-ticker-ltr {
            display: flex;
            width: max-content;
            animation: scroll-ltr 45s linear infinite;
        }
        .animate-ticker-ltr:hover {
            animation-play-state: paused;
        }

        /* Premium Shadow Cards */
        .service-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(12, 74, 110, 0.1);
        }
        
        .round-service-img {
            transition: all 0.5s ease;
        }
        .group:hover .round-service-img {
            transform: rotate(3deg) scale(1.08);
        }

        /* Custom Deep Blue theme */
        .bg-custom-blue {
            background-color: #082f49; 
        }

        /* Form Inputs */
        .contact-input {
            background-color: #f8fafc;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .contact-input:focus {
            background-color: #fff;
            border-color: #0c4a6e; 
            outline: none;
            box-shadow: 0 0 0 4px rgba(12, 74, 110, 0.1);
        }
        .btn-send {
            background-color: #0c4a6e; 
            transition: all 0.3s ease;
        }
        .btn-send:hover {
            background-color: #082f49;
            transform: translateY(-2px);
        }

        /* Floating WhatsApp Button with circular depth */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .wa-float:hover {
            transform: scale(1.15) translateY(-5px);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
        }
    