/* Custom Styling overrides to make Abhi Enterprises highly attractive, modern, and professional */

/* 1. Hero Area Overlay and Gradient Layer */
.vs-hero__item2 {
    position: relative;
    overflow: hidden;
}

.vs-hero__item2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Soft light gradient fading to clear on the right to keep the technician image perfectly visible */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%) !important;
    z-index: 1;
}

.vs-hero__item2 > * {
    position: relative;
    z-index: 2;
}

/* 2. Premium Capsule Badge for Subtitle */
.vs-hero__subtitle {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: rgba(2, 132, 199, 0.08) !important;
    border: 1px solid rgba(2, 132, 199, 0.22) !important;
    padding: 6px 15px !important;
    border-radius: 50px !important;
    color: #0284c7 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-bottom: 24px !important;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.04) !important;
    backdrop-filter: blur(4px);
    text-shadow: none !important;
}

.vs-hero__subtitle .icon {
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.vs-hero__subtitle .icon img {
    width: 18px;
    height: 18px;
}

/* 3. Modern Typography and Titles (Dark slate for readability on light background) */
.vs-hero__title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 40px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -1px !important;
    margin-bottom: 20px !important;
    text-shadow: none !important;
    text-transform: uppercase !important;
}

@media (max-width: 991px) {
    .vs-hero__title {
        font-size: 38px !important;
    }
}

.vs-hero__title--highlight {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
}

.vs-hero__text {
    font-family: 'Inter', sans-serif !important;
    color: #475569 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    margin-bottom: 35px !important;
    max-width: 90%;
    font-weight: 500 !important;
    text-shadow: none !important;
    text-transform: none !important; /* Fix capitalized words issue */
}

/* 4. Elegant Interactive Buttons */
.vs-btn2 {
    background: linear-gradient(85deg, rgb(23, 167, 191) 0%, rgb(103, 184, 70) 72%) !important;
    color: #ffffff !important;
    border: 2px solid #65B047 !important;
    box-shadow: 0 4px 20px rgba(103, 184, 70, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border-radius: 50px !important;
    padding: 7px 20px  !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    font-size: 15px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.vs-btn2:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(103, 184, 70, 0.5) !important;
    color: #ffffff !important;
}

.vs-btn2 i {
    transition: transform 0.3s ease;
}

.vs-btn2:hover i {
    transform: translateX(5px);
}

/* Phone/Helpline Action Button Pulse Effect */
.vs-hero .play-btn {
    width: 60px !important;
    height: 60px !important;
    background: rgba(2, 132, 199, 0.08) !important;
    border: 2px solid rgba(2, 132, 199, 0.2) !important;
    color: #0284c7 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 20px !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    position: relative;
}

.vs-hero .play-btn:hover {
    background: #0284c7 !important;
    border-color: #0284c7 !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(2, 132, 199, 0.4) !important;
    transform: scale(1.05);
}

.vs-hero .play-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(2, 132, 199, 0.4);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: phonePulse 2s infinite;
    pointer-events: none;
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ==========================================================================
   5. Attractive, Responsive, & Beautiful Google Testimonial Section
   ========================================================================== */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.testimonial-rating-summary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 4px;
}

.testimonial-rating-summary .summary-rating-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.testimonial-rating-summary .rating-stars-gold {
    color: #ffb700;
    font-size: 24px;
    display: flex;
    gap: 3px;
    margin-bottom: 2px;
}

.testimonial-rating-summary .rating-count-text {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial-rating-summary .rating-count-text strong {
    color: #0f172a;
    font-weight: 700;
}

.testimonial-rating-summary .google-wordmark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    margin: 15px 10px;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(2, 132, 199, 0.15);
}

.testimonial-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
}

.testimonial-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #8b5cf6; /* default purple fallback background */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.testimonial-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user-info {
    display: flex;
    flex-direction: column;
}

.testimonial-user-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.testimonial-review-date {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

.testimonial-source-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.testimonial-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.testimonial-stars {
    color: #ffb700;
    font-size: 15px;
    display: flex;
    gap: 2px;
}

.testimonial-verified-icon {
    color: #2563eb;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.testimonial-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    margin: 0;
    font-weight: 450;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-action-row {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.testimonial-btn-primary {
    background: #0284c7;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 6px;
    text-transform: none;
    border: none;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.testimonial-btn-primary:hover {
    background: #0369a1;
    box-shadow: 0 6px 18px rgba(3, 105, 161, 0.35);
    transform: translateY(-2px);
    text-decoration: none;
}

.trustindex-verified-badge {
    background-color: #15803d;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.trustindex-verified-badge a {
    color: #ffffff;
    text-decoration: none;
}

.trustindex-verified-badge i.fa-info-circle {
    opacity: 0.8;
    font-size: 10px;
}

@media (max-width: 767px) {
    .testimonial-section {
        padding: 50px 0;
    }
    .testimonial-action-row {
        gap: 12px;
    }
}

/* ==========================================================================
   6. Unique RO Service Card Design Styles
   ========================================================================== */
.uniq-service-section {
    background: linear-gradient(180deg, #f8fafd 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
}

.uniq-card {
    background: #ffffff;
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(2, 41, 118, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.uniq-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0d6efd 0%, #00d2ff 100%);
    z-index: 5;
    transition: height 0.3s ease;
}

.uniq-card:hover::before {
    height: 8px;
}

.uniq-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

.uniq-img-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 23px 23px 0 0;
}

.uniq-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.uniq-card:hover .uniq-img-container img {
    transform: scale(1.12);
}

.uniq-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(2, 41, 118, 0.5) 100%);
}

.uniq-floating-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #022976;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.uniq-card:hover .uniq-floating-tag {
    background: #0d6efd;
    color: #fff;
}

.uniq-card-body {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.uniq-card-title {
    font-size: 26px;
    font-weight: 800;
    color: #022976;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.uniq-card-title-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, rgba(13, 110, 253, 0.05));
    border-radius: 1px;
}

.uniq-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.uniq-list-item {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.uniq-card:hover .uniq-list-item:hover {
    color: #022976;
}

.uniq-list-icon {
    position: absolute;
    left: 0;
    top: 0px;
    width: 24px;
    height: 24px;
    background: rgba(13, 110, 253, 0.06);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.uniq-card:hover .uniq-list-icon {
    background: rgba(13, 110, 253, 0.1);
}

.uniq-list-item:hover .uniq-list-icon {
    background: #0d6efd;
    color: #fff;
    transform: scale(1.1) rotate(360deg);
}

.uniq-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #0088ff 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 12px;
    padding: 16px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.uniq-btn:hover {
    background: linear-gradient(135deg, #0088ff 0%, #022976 100%);
    box-shadow: 0 10px 30px rgba(2, 41, 118, 0.3);
    transform: translateY(-3px);
}

.uniq-btn i {
    transition: transform 0.3s ease;
}

.uniq-btn:hover i {
    transform: translateX(6px);
}

/* ==========================================================================
   7. Beautiful and Perfectly Aligned SEO, FAQ & Locations Section
   ========================================================================== */
.uniq-seo-section {
    background: #ffffff;
    padding: 90px 0;
    position: relative;
}

.faq-title-area {
    margin-bottom: 40px;
}

.faq-title-area .sec-subtitle {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-title-area .sec-title {
    color: #022976;
    font-size: 32px;
    font-weight: 800;
    margin-top: 8px;
}

.faq-title-area .sec-text {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 10px;
}

/* Accordion modern styles */
.uniq-accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    transition: all 0.3s ease;
}

.uniq-accordion-item:hover {
    border-color: rgba(13, 110, 253, 0.15) !important;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.04);
}

.uniq-accordion-button {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    background-color: #ffffff !important;
    border: none !important;
    padding: 20px 24px !important;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.uniq-accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.03) !important;
    color: #0d6efd !important;
}

.uniq-accordion-body {
    font-family: 'Inter', sans-serif !important;
    padding: 20px 24px;
    font-size: 14.5px;
    color: #475569;
    background-color: #f8fafc;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Sidebar Widgets styling (Right column) */
.seo-sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.seo-card-widget {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.seo-card-widget:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border-color: rgba(13, 110, 253, 0.1);
}

.seo-widget-title {
    font-size: 18px;
    font-weight: 800;
    color: #022976;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 12px;
}

/* Benefits list style */
.benefit-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.benefit-list-item:last-child {
    margin-bottom: 0;
}

.benefit-icon-box {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.benefit-list-item:hover .benefit-icon-box {
    background: #0d6efd;
    color: #ffffff;
}

.benefit-text-box {
    flex-grow: 1;
}

.benefit-text-box h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 3px 0;
}

.benefit-text-box p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Area widget unique style */
.location-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-badge {
    background-color: #f1f5f9;
    color: #334155;
    border: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.location-badge:hover {
    background: #10b981;
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 115, 81, 0.2);
}

/* ==========================================================================
   8. Premium Modern & Professional Footer Custom Styling
   ========================================================================== */
.footer-wrapper {
    background-color: #031224 !important; /* Premium dark navy background */
    color: #94a3b8 !important;
}

/* Remove low-res background image and apply solid color */
.footer-wrapper .widget-area {
    background-image: none !important;
    background: #031224 !important;
    padding-top: 80px;
    padding-bottom: 45px;
}

/* Footer Widget Titles */
.footer-wrapper .widget_title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px;
    margin-bottom: 30px !important;
    position: relative;
    padding-bottom: 12px !important;
}

.footer-wrapper .widget_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #17a7bf, #67b846) !important; /* Theme blue & green accent line */
    border-radius: 2px;
}

/* Footer Description Text */
.footer-wrapper .footer-text {
    color: #94a3b8 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
    text-transform: none !important;
}

/* Contact box card styling */
.footer-wrapper .contact-box {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 10px 15px !important;
    border-radius: 12px !important;
    margin-bottom: 25px !important;
    display: flex;
    align-items: center;
}

.footer-wrapper .contact-box .icon {
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-right: 16px !important;
    margin-right: 16px !important;
}

.footer-wrapper .contact-box .icon img {
    filter: brightness(0) invert(1) !important; /* Invert to clean white icon */
    width: 24px;
    height: 24px;
}

.footer-wrapper .contact-box .contact-title {
    margin: 0 !important;
}

.footer-wrapper .contact-box .contact-title a {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 750 !important;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-wrapper .contact-box .contact-title a:hover {
    color: #17a7bf !important;
}

.footer-wrapper .contact-box .contact-text {
    color: #67b846 !important; /* Beautiful green text */
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 3px !important;
}

/* Social media icons */
.footer-wrapper .social-style1 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.footer-wrapper .social-style1 .social-title {
    color: #cbd5e1 !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
}

.footer-wrapper .social-style1 .social-icon {
    display: flex;
    gap: 10px;
}

.footer-wrapper .social-style1 .social-icon a {
    width: 36px !important;
    height: 36px !important;
    line-height: 34px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #cbd5e1 !important;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: inline-block;
}

.footer-wrapper .social-style1 .social-icon a:hover {
    background-color: #17a7bf !important;
    border-color: #17a7bf !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(23, 167, 191, 0.3) !important;
}

/* Useful links column list */
.footer-layout1 .widget_categories ul {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 20px !important;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-layout1 .widget_categories ul li {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
    transition: all 0.3s ease !important;
}

.footer-layout1 .widget_categories ul li::after {
    display: none !important; /* Disable template default absolute positioned arrow */
}

.footer-layout1 .widget_categories ul li a {
    color: #94a3b8 !important;
    font-size: 14px !important;
    font-weight: 550 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    width: auto !important;
    margin-bottom: 0 !important;
}

.footer-layout1 .widget_categories ul li a::before {
    content: "\f101" !important; /* Standard fontawesome double right angle quote */
    font-family: var(--icon-font) !important;
    font-weight: 900 !important;
    color: #17a7bf !important;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.footer-layout1 .widget_categories ul li a:hover {
    color: #ffffff !important;
    transform: translateX(5px) !important;
}

.footer-layout1 .widget_categories ul li a:hover::before {
    color: #67b846 !important; /* Green on hover */
}

/* Instagram sidebar gallery */
.footer-wrapper .sidebar-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
}

.footer-wrapper .gallery-thumb {
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 2px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
}

.footer-wrapper .gallery-thumb:hover {
    border-color: #17a7bf !important;
    transform: scale(1.05);
}

/* Copyright Section styling */
.copyright-wrap {
    background-color: #020b14 !important; /* Ultra deep dark color */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 25px 0 !important;
}

.copyright-text {
    color: #64748b !important;
    font-size: 13.5px !important;
    padding: 0 !important;
}

.copyright-text::before {
    display: none !important; /* Completely hide the bright blue skewed shape on the left */
}

.copyright-text a {
    color: #17a7bf !important; /* Beautiful readable link color */
    font-weight: 600 !important;
    text-decoration: none !important;
    text-transform: none !important;
}

.copyright-text a:hover {
    color: #67b846 !important;
    text-decoration: underline !important;
}

.copyright-img img {
    max-height: 24px !important;
    opacity: 0.8 !important;
    transition: opacity 0.3s ease;
}

.copyright-img img:hover {
    opacity: 1 !important;
}

/* ==========================================================================
   9. Highlights for "Areas We Serve in Lucknow" Widget
   ========================================================================== */
.serve-areas-highlight {
    border: 2px solid transparent !important;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #17a7bf 0%, #67b846 100%) border-box !important; /* Elegant gradient border */
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(23, 167, 191, 0.08) !important;
    padding: 30px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.serve-areas-highlight:hover {
    box-shadow: 0 20px 45px rgba(23, 167, 191, 0.16) !important;
    transform: translateY(-5px) !important;
}

.serve-areas-highlight .seo-widget-title {
    font-size: 22px !important;
    color: #022976 !important;
    border-bottom: 2px solid rgba(23, 167, 191, 0.12) !important;
    margin-bottom: 22px !important;
    padding-bottom: 12px !important;
    font-weight: 800 !important;
}

.serve-areas-highlight .location-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.serve-areas-highlight .location-badge {
    background-color: #f0fdf4 !important; /* Soft green backdrop */
    color: #15803d !important; /* Dark green text */
    border: 1px solid #bbf7d0 !important; /* Light green border */
    font-size: 13.5px !important;
    padding: 8px 16px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02) !important;
}

.serve-areas-highlight .location-badge:hover {
    background: linear-gradient(135deg, #17a7bf 0%, #67b846 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 15px rgba(103, 184, 70, 0.25) !important;
    transform: translateY(-2px) !important;
}

/* 10. Professional Global Font and Navigation Enhancements */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Offset for sticky header when scrolling */
}

/* Adjust heading sizes for a balanced, premium look */
.sec-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
}

/* Make headers on mobile look neat and readable */
@media (max-width: 767px) {
    .sec-title {
        font-size: 26px !important;
    }
    .vs-hero__title {
        font-size: 30px !important;
    }
}

/* Make header menus text size and spacing premium */
.main-menu.menu-style2 > ul > li > a {
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 24px 6px !important;
    transition: color 0.3s ease !important;
}

.main-menu.menu-style2 > ul > li > a:hover {
    color: #17a7bf !important;
}

/* ==========================================================================
   11. Sticky WhatsApp and Call Buttons
   ========================================================================== */
.sticky-contact-buttons {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-decoration: none !important;
}

.sticky-call {
    background: #0d6efd;
}

.sticky-call:hover {
    background: #0b5ed7;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.sticky-whatsapp {
    background: #25d366;
}

.sticky-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Optional tooltip styling */
.sticky-btn .sticky-tooltip {
    position: absolute;
    left: 70px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sticky-btn:hover .sticky-tooltip {
    opacity: 1;
    visibility: visible;
}

/* CSS Pulse Animation for both buttons to grab attention */
.sticky-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: stickyPulse 2.5s infinite;
    pointer-events: none;
}

.sticky-call::after {
    border: 1px solid rgba(13, 110, 253, 0.6);
}

.sticky-whatsapp::after {
    border: 1px solid rgba(37, 211, 102, 0.6);
}

@keyframes stickyPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Adjust layout on mobile devices */
@media (max-width: 767px) {
    .sticky-contact-buttons {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }
    
    .sticky-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .sticky-btn .sticky-tooltip {
        display: none; /* Hide tooltips on mobile */
    }
}

/* ==========================================================================
   12. Responsive Mobile Optimizations (Header, Menu Toggle, Banner)
   ========================================================================== */
@media (max-width: 991px) {
    /* Hide the skewed decorative backgrounds behind the logo on mobile to show it cleanly */
    .vs-header .header-logo::after,
    .vs-header .header-logo::before,
    .vs-header .sticky-wrapper.style2 .header-logo::after,
    .vs-header .sticky-wrapper.style2 .header-logo::before {
        display: none !important;
    }
    
    /* Ensure the menu bar area has a solid background so everything looks clean */
    .menu-area {
        background-color: #ffffff !important;
        padding: 10px 0 !important;
    }
    
    /* Style for mobile menu toggle button inside header */
    .menu-area .vs-menu-toggle {
        background-color: transparent !important;
        color: #0284c7 !important; /* Premium Theme Blue */
        font-size: 26px !important;
        border: none !important;
        width: 44px !important;
        height: 44px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        cursor: pointer;
        padding: 0 !important;
        margin-right: 10px !important;
    }
    
    .menu-area .vs-menu-toggle:hover {
        background-color: rgba(2, 132, 199, 0.08) !important;
    }
}

@media (max-width: 767px) {
    /* Make the logo look neat and well-proportioned on mobile */
    .vs-header .header-logo img {
        width: 150px !important;
    }
    
    /* Make the hero section text fully readable by using a solid/semi-solid white overlay on mobile */
    .vs-hero__item2::before {
        background: rgba(255, 255, 255, 0.94) !important;
    }
    
    /* Center align the hero content on mobile for a symmetric and neat look */
    .vs-hero__content {
        text-align: center !important;
    }
    
    .vs-hero__subtitle {
        justify-content: center !important;
        font-size: 11px !important;
        padding: 5px 12px !important;
        letter-spacing: 0.5px !important;
        display: inline-flex !important;
    }
    
    .vs-hero__title {
        font-size: 26px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.5px !important;
    }
    
    /* Ignore the line break inside title on mobile */
    .vs-hero__title br {
        display: none !important;
    }
    
    .vs-hero__text {
        font-size: 14px !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
        margin-bottom: 25px !important;
    }
    
    /* Beautifully align the buttons side-by-side or stacked on mobile */
    .hero-btn {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .vs-hero .play-btn {
        margin-left: 0 !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    /* Hide the top-bar social-title text to make the top-bar clean and keep only icons */
    .header-top.style2 .social-style1 .social-title {
        display: none !important;
    }
    
    .header-top.style2 .social-style1 .social-icon {
        margin: 0 auto !important;
    }
}
@media (max-width:769px){
    .header-top {
        display: none !important;
    }
}
