    /* Dropdown Menu Styles */
    .text-justify{
        text-align: justify;
    }
    .nav-links {
        position: relative;
    }
    
    .dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,.15);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .3s ease;
    margin-top: 38px;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}
    
    
    .dropdown > a::after {
        content: \'\\f078\';
        font-family: \'Font Awesome 6 Free\';
        font-weight: 600;
        font-size: 0.75rem;
        margin-left: 8px;
    }
    
    /* Testimonials Auto-Scroll Styles */
    .testimonials-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        overflow: hidden;
    }
    
    .testimonials-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
    }
    
    .testimonials-track {
        display: flex;
        animation: scrollTestimonials 30s linear infinite;
        gap: 2rem;
        width: fit-content;
    }
    
    .testimonials-track:hover {
        animation-play-state: paused;
    }
    
    @keyframes scrollTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .testimonial-card {
        flex: 0 0 350px;
        background: white;
        border-radius: 1.5rem;
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        transition: all 0.3s;
        margin: 0.5rem;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }
    
    .client-image {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid var(--primary);
    }
    
    .client-name {
        font-weight: 700;
        color: var(--primary-dark);
        margin-top: 0.5rem;
    }
    
    .client-title {
        font-size: 0.875rem;
        color: var(--gray-600);
    }
    
    .testimonial-text {
        color: var(--gray-600);
        font-style: italic;
        margin: 1rem 0;
        line-height: 1.6;
    }
    
    .rating {
        color: #fbbf24;
        margin-top: 0.5rem;
    }
    
    .testimonials-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .testimonials-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-header p {
        color: var(--gray-600);
        max-width: 600px;
        margin: 0 auto;
    }
    
    .scroll-controls {
        text-align: center;
        margin-top: 2rem;
    }
    
    .scroll-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        cursor: pointer;
        margin: 0 0.5rem;
        transition: all 0.3s;
    }
    
    .scroll-btn:hover {
        background: var(--primary-light);
    }
    
    .hero-main {
        background-image: linear-gradient(135deg, rgba(10,46,63,0.88) 0%, rgba(26,82,118,0.85) 100%), url(\'https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&h=700&fit=crop\');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 5rem 0;
        position: relative;
        color: white;
    }
    
    .hero-main .hero-badge {
        background: rgba(255,255,255,0.2);
        color: white;
    }
    
    .hero-main h1 {
        color: white;
        background: none;
    }
    
    .banner-stats {
        background: linear-gradient(135deg, #e8b86b, #d4a043);
    }
    
    .service-banner {
        background: linear-gradient(135deg, #1a5276 0%, #0a2e3f 100%);
        background-image: linear-gradient(135deg, rgba(26,82,118,0.95) 0%, rgba(10,46,63,0.95) 100%), url(\'https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?w=1200&h=400&fit=crop\');
        background-size: cover;
        background-position: center;
    }
    
    .savings-banner {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-image: linear-gradient(135deg, rgba(102,126,234,0.92) 0%, rgba(118,75,162,0.92) 100%), url(\'https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1200&h=400&fit=crop\');
        background-size: cover;
        background-position: center;
    }
    
    .cta-banner {
        background: linear-gradient(135deg, #0f2b3d 0%, #1a5276 100%);
        background-image: linear-gradient(135deg, rgba(15,43,61,0.92) 0%, rgba(26,82,118,0.92) 100%), url(\'https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1200&h=400&fit=crop\');
        background-size: cover;
        background-position: center;
    }
    
    .floating-badge {
        animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    .services-grid .btn-service {
        display: inline-block;
        margin-top: 1rem;
        padding: 0.5rem 1.25rem;
        background: var(--primary);
        color: white;
        text-decoration: none;
        border-radius: 2rem;
        font-size: 0.875rem;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .services-grid .btn-service:hover {
        background: var(--primary-light);
        transform: translateX(5px);
    }
    
    @media (max-width: 768px) {
        .dropdown-content {
            position: static;
            display: none;
            width: 100%;
        }
        .dropdown:hover .dropdown-content {
            display: none;
        }
        .testimonial-card {
            flex: 0 0 280px;
        }
    }

    .image-slider-section{
    display:flex;
    align-items:center;
    gap:15px;
    margin:40px 0;
}

.slider-container{
    overflow:hidden;
    width:100%;
}

.slider-track{
    display:flex;
    gap:20px;
    transition:transform 0.5s ease;
}

.slide-item{
    min-width:300px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.slide-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.slide-item h4{
    padding:15px;
    text-align:center;
    color:#1a5276;
}

.slider-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#1a5276;
    color:#fff;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.slider-btn:hover{
    background:#e8b86b;
    color:#0a2e3f;
}


.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Individual Colors */
.social-icons a:nth-child(1):hover {
    background: #1877f2; /* Facebook */
}

.social-icons a:nth-child(2):hover {
    background: #1da1f2; /* Twitter/X */
}

.social-icons a:nth-child(3):hover {
    background: #e4405f; /* Instagram */
}

.social-icons a:nth-child(4):hover {
    background: #ff0000; /* YouTube */
}

.social-icons a:nth-child(5):hover {
    background: #0a66c2; /* LinkedIn */
}

.social-icons a:nth-child(6):hover {
    background: #bd081c; /* Pinterest */
}
.service-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    background: linear-gradient(135deg, #8b3a2a, #a64b35);
    color: #fff;

    padding: 3px 6px;
    text-decoration: none;

    font-weight: 700;
    letter-spacing: 1px;

    border-radius: 3px;

    transition: 0.3s ease;
    width: 30%;
}

.service-item i {
    font-size: 18px;
    width: 22px;
    text-align: center;
}

.service-item:hover {
    background: linear-gradient(135deg, #a64b35, #8b3a2a);
    transform: translateX(4px);
}
