/* Root variables for Premium theme */
:root {
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --secondary: #0f172a;
    --accent: #f97316;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    /* Stays below offcanvas overlay which is 1060 */
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
}

.main-header.scrolled {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
}

/* Premium Full-Width Topbar Styles with Smooth Collapsible Scroll Transition */
.topbar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    padding: 8px 0;
    position: relative;
    z-index: 1010;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 45px;
    opacity: 1;
    overflow: hidden;
}

/* Collapse topbar on scroll */
.main-header.scrolled .topbar {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0 !important;
    border-bottom: none !important;
}

.topbar-content {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-content a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.topbar-content a:hover {
    color: #ff4e50;
}

.topbar-social-links {
    display: flex;
    gap: 12px;
}

.topbar-social-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}

.topbar-social-links a:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* Glassmorphic Sticky Navbar */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    padding: 0;
    position: relative;
    z-index: 999;
    height: 75px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.navbar-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-logo-img:hover {
    transform: translateY(-1px);
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #475569 !important;
    font-weight: 600;
    /* Rich font weight */
    font-size: 0.92rem;
    padding: 24px 14px !important;
    position: relative;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    transition: color 0.25s ease;
    display: inline-block;
}

.nav-link:hover,
.nav-link.active {
    color: #e53e3e !important;
    background-color: transparent !important;
}

/* Sliding horizontal indicator underline on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: linear-gradient(90deg, #e53e3e 0%, #f97316 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.navbar-cta-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar-cta-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #f6ad55 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.navbar-cta-btn i {
    transition: transform 0.25s ease !important;
}

.navbar-cta-btn:hover {
    background: linear-gradient(135deg, #f6ad55 0%, #e53e3e 100%) !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 24px rgba(229, 62, 62, 0.45) !important;
}

.navbar-cta-btn:hover i {
    transform: translateX(4px) !important;
}

/* Redesigned toggler for mobile */
.navbar-toggler {
    border: none !important;
    padding: 8px;
    border-radius: 8px;
    background-color: rgba(229, 62, 62, 0.05) !important;
    box-shadow: none !important;
    transition: var(--transition);
}

.navbar-toggler:hover {
    background-color: rgba(229, 62, 62, 0.1) !important;
}

.navbar-toggler-icon {
    background-size: 80% !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(229, 62, 62)' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Dropdown Styles */
.dropdown-menu {
    border-radius: 12px;
    padding: 10px 0;
    min-width: 230px;
    border: 1px solid rgba(15, 23, 42, 0.04) !important;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08) !important;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.25s;
    border-top: 4px solid #e53e3e !important;
    background-color: var(--white);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    color: #475569;
    transition: var(--transition);
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    transition: transform 0.2s ease;
}

.dropdown-item:hover {
    background-color: #fef2f2;
    color: #e53e3e;
    padding-left: 26px;
    border-left-color: #e53e3e;
}

.dropdown-item:hover i {
    transform: translateX(3px) scale(1.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--white);
    padding: 90px 0;
    color: var(--text-dark);
    overflow: hidden;
    border-bottom: 6px solid var(--primary);
}

/* Background ribbons */
.hero-ribbon-red {
    position: absolute;
    top: 15%;
    right: -5%;
    width: 50%;
    height: 140px;
    background-color: var(--primary);
    clip-path: polygon(120px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-ribbon-orange {
    position: absolute;
    top: 5%;
    right: -10%;
    width: 48%;
    height: 110px;
    background-color: var(--accent);
    clip-path: polygon(90px 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

/* Decorative dot pattern and blocks */
.hero-dot-pattern {
    position: absolute;
    bottom: 25px;
    left: 45%;
    width: 60px;
    height: 40px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.8;
}

.hero-decor-blocks {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
}

.hero-block-orange {
    width: 25px;
    height: 60px;
    background-color: var(--accent);
}

.hero-block-red {
    width: 25px;
    height: 45px;
    background-color: var(--primary);
}

.hero-section h1 {
    color: var(--primary);
    font-weight: 800;
}

.hero-section .lead {
    color: #1e293b;
    font-weight: 700;
}

.hero-features-list {
    list-style: none;
    padding-left: 0;
}

.hero-features-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.hero-features-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -6px;
}

.quote-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 3;
}

.quote-card h3 {
    font-weight: 800;
    color: var(--text-dark);
}

.quote-card .form-control {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
}

.quote-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

/* Services */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 45px 0;
    }
}

.section-title {
    text-align: center;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.service-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 20px;
}

.footer-heading {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    font-size: 0.9rem;
}

/* Rebuilt Hero Carousel */
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    position: relative;
    height: 680px;
    /* Slightly taller for a more dramatic impact */
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    /* Base scale slightly larger to avoid gaps on start */
}

/* Beautiful asymmetrical gradient overlay */
.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.55) 50%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 1;
}

/* Ken burns visual effect on slide background */
@keyframes kenburns {
    0% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1.12);
    }
}

.carousel-item.active .hero-slide-bg {
    animation: kenburns 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-caption {
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    z-index: 2;
}

/* Glowing tag badge styling */
.hero-tag {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 992px) {
    .hero-tag {
        font-size: 0.95rem !important;
        padding: 10px 24px !important;
        letter-spacing: 2px !important;
    }
}

.text-danger-gradient {
    background: linear-gradient(135deg, #ff4e50 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Staggered entrance animations for text elements */
.hero-carousel .carousel-item .hero-tag,
.hero-carousel .carousel-item h1,
.hero-carousel .carousel-item p,
.hero-carousel .carousel-item .d-flex {
    opacity: 0;
    transform: translateY(35px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

.hero-carousel .carousel-item .hero-tag {
    transform: translateY(-20px);
}

.hero-carousel .carousel-item.active .hero-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-carousel .carousel-item.active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-carousel .carousel-item.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.hero-carousel .carousel-item.active .d-flex {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.btn-hero {
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 30px;
    /* Modern Pill shape */
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #c53030 0%, #9b1c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.45);
}

.btn-hero-outline {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: var(--white) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-hero-outline:hover {
    background-color: var(--white);
    color: #0f172a !important;
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Horizontal line indicators with fill animations */
.carousel-indicators-horizontal {
    position: absolute;
    bottom: 110px;
    /* Elevated to clear overlapping cards on large screens */
    right: 8%;
    left: auto;
    transform: none;
    display: flex;
    gap: 12px;
    z-index: 15;
    margin: 0;
    padding: 0;
    border: none;
}

.carousel-indicators-horizontal button {
    width: 45px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background-color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.carousel-indicators-horizontal button.active {
    background-color: #e53e3e;
    width: 60px;
    /* box-shadow: 0 0 10px rgba(229, 62, 62, 0.6); */
}

.carousel-control-icon-btn {
    width: 54px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.15rem;
    transition: var(--transition);
}

.carousel-control-icon-btn:hover {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-color: #e53e3e;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.35);
    transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 70px;
    opacity: 0;
    /* Hide by default and show on hover */
    transition: opacity 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

/* Responsiveness media queries */
@media (max-width: 991.98px) {

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 560px;
    }

    .carousel-indicators-horizontal {
        bottom: 120px;
        right: 8%;
        left: auto;
        transform: none;
    }
}

@media (max-width: 767.98px) {

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        height: 520px;
    }

    .hero-caption {
        text-align: center !important;
    }

    .hero-caption .container {
        text-align: center !important;
        padding: 0 20px;
    }

    .hero-caption .container .d-flex {
        justify-content: center !important;
    }

    .hero-slide-bg::after {
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.75) 100%);
    }

    .hero-carousel .carousel-item h1 {
        font-size: 1.85rem !important;
        line-height: 1.3;
    }

    .hero-carousel .carousel-item p {
        font-size: 0.95rem !important;
        margin-left: auto;
        margin-right: auto;
    }

    .carousel-indicators-horizontal {
        top: 24px !important;
        left: 24px !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
        /* Hide arrows on mobile for better touch swipe */
    }
}

/* Feature Overlapping Cards */
.feature-cards-section {
    position: relative;
    z-index: 20;
    margin-top: -95px;
    /* Deeper pull over the hero content */
}

.feature-overlay-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 38px 30px;
    border-radius: 20px;
    /* Sophisticated curved edges */
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Premium Top border gradient beam */
.feature-overlay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e53e3e 0%, #f97316 100%);
    transition: height 0.3s ease;
    z-index: 2;
}

/* Translucent Number Badge */
.card-number-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.4s ease;
    user-select: none;
    z-index: 1;
}

.feature-overlay-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(229, 62, 62, 0.12);
    /* Dynamic glow shadow */
    background: #ffffff;
    border-color: rgba(229, 62, 62, 0.15);
}

.feature-overlay-card:hover::before {
    height: 6px;
}

.feature-overlay-card:hover .card-number-badge {
    color: rgba(229, 62, 62, 0.06);
    transform: translateY(-4px);
}

.card-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    /* Squircle layout */
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06) 0%, rgba(249, 115, 22, 0.06) 100%);
    color: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(229, 62, 62, 0.12);
    position: relative;
    z-index: 2;
}

.feature-overlay-card:hover .card-icon-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%);
    color: var(--white);
    transform: scale(1.1) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.25);
}

.card-meta-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #e53e3e;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
    background-color: #ffebeb;
    padding: 3px 12px;
    border-radius: 50px;
    align-self: flex-start;
    position: relative;
    z-index: 2;
}

.card-feature-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.feature-overlay-card:hover .card-feature-title {
    color: #e53e3e;
}

.card-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

/* Horizontal Swiping Deck for Mobile ergonomics */
@media (max-width: 767.98px) {
    .mobile-swipe-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding-bottom: 25px !important;
        padding-top: 10px !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-swipe-row::-webkit-scrollbar {
        display: none;
        /* Hide scrollbars for look & feel */
    }

    .mobile-swipe-row {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .mobile-swipe-row>div {
        flex: 0 0 80% !important;
        max-width: 80% !important;
        scroll-snap-align: start !important;
    }

    .feature-cards-section {
        margin-top: -65px;
        /* Adjusted overlapping gap on mobile */
    }
}

/* Marquee Ticker styling */
.marquee-ticker-section {
    background: linear-gradient(90deg, #101f3c 0%, #1e355e 50%, #101f3c 100%);
    /* Gorgeous dark navy gradient */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    overflow: hidden;
    margin-top: 40px;
}

.marquee-wrapper {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll-ticker 60s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 4rem;
    flex-shrink: 0;
}

@keyframes marquee-scroll-ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Floating contact widgets in bottom-right */
/* Centralized premium floating contact widgets styling - Boxy Slide-out on Right Edge */
.floating-contact-widgets-new {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    z-index: 1050;
    /* Ensure it is above footers but below modal backdrop */
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.float-widget-btn {
    height: 48px;
    width: 48px;
    /* Initial boxy width showing only icon */
    border-radius: 6px 0 0 6px;
    /* Boxy left-curved style */
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align icon left */
    padding: 0 14px;
    /* Pad the icon */
    font-size: 1.3rem;
    box-shadow: -4px 4px 15px rgba(15, 23, 42, 0.12);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: none;
    outline: none;
}

/* Icon layout inside the button to ensure it doesn't move */
.float-widget-btn i {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Slide-out text label */
.widget-label {
    margin-left: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hover state: Expand width to show label */
.float-widget-btn:hover {
    width: 170px;
    /* Expand to reveal label */
    padding-left: 16px;
    border-radius: 8px 0 0 8px;
    box-shadow: -6px 6px 20px rgba(15, 23, 42, 0.25);
    transform: translateX(0);
}

.float-widget-btn:hover .widget-label {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

/* Quote button styling (Crimson to Gold glow) */
.float-quote-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #f6ad55 100%);
}

/* WhatsApp button styling (Emerald glow) */
.float-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* Call button styling (Navy to Cyan glow) */
.float-call-btn {
    background: linear-gradient(135deg, #093c46 0%, #0b4e5a 100%);
}

/* Hide legacy floating contact widgets */
.floating-contact-widgets {
    display: none !important;
}

/* Hide widget tooltips as we use slide-out labels now */
.widget-tooltip {
    display: none !important;
}

/* Responsive adjustments: Mobile Bottom Capsule Dock */
@media (max-width: 991.98px) {
    .floating-contact-widgets-new {
        position: fixed !important;
        left: 50% !important;
        right: auto !important;
        bottom: 16px !important;
        top: auto !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        width: calc(100% - 32px) !important;
        max-width: 420px !important;
        background: rgba(15, 23, 42, 0.88) !important;
        /* Slate navy glassmorphism */
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        padding: 8px 10px !important;
        border-radius: 40px !important;
        /* Capsule style outer dock */
        box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        z-index: 1050 !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .float-widget-btn {
        position: static !important;
        width: auto !important;
        height: 38px !important;
        padding: 0 12px !important;
        border-radius: 30px !important;
        /* Capsule shaped buttons */
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 6px !important;
        transform: none !important;
        box-shadow: none !important;
        flex: 1 !important;
        font-size: 0.95rem !important;
    }

    .float-widget-btn i {
        width: auto !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .float-widget-btn .widget-label {
        display: inline-block !important;
        /* Force show text label on mobile */
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: none !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.2px !important;
        pointer-events: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Override hover width expansion on mobile */
    .float-widget-btn:hover {
        width: auto !important;
        transform: scale(1.03) !important;
        padding-left: 12px !important;
        border-radius: 30px !important;
    }

    .float-widget-btn:hover .widget-label {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Premium Category Badge style (Red Border & White Blur Glassmorphism) */
.about-badge {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1.5px solid #e53e3e !important;
    color: #e53e3e !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.05) !important;
}

.text-navy {
    color: #1a365d !important;
}

/* About image wrapper and badge overlay */
.about-image-wrapper {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 100%;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(229, 62, 62, 0.15);
    border-radius: 24px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-wrapper:hover::before {
    transform: translate(-5px, -5px);
    border-color: #e53e3e;
}

.about-image-wrapper img {
    border-radius: 24px !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: cover;
    width: 100%;
    height: 480px;
    /* Fixed height for beautiful portrait format inside 30% width */
}

.about-image-wrapper:hover img {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15) !important;
}

.image-overlay-badge {
    position: absolute;
    bottom: 30px;
    right: -25px;
    background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%);
    color: var(--white);
    padding: 16px 26px;
    border-radius: 16px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.3);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-wrapper:hover .image-overlay-badge {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(229, 62, 62, 0.4);
}

/* About Us Benefit Cards */
.about-benefit-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.about-benefit-card:hover {
    background: #ffffff;
    border-color: rgba(229, 62, 62, 0.2);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.05);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: rgba(229, 62, 62, 0.06);
    color: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid rgba(229, 62, 62, 0.1);
}

.about-benefit-card:hover .benefit-icon {
    background-color: #e53e3e;
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 15px rgba(229, 62, 62, 0.2);
    transform: scale(1.05);
}

.benefit-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.benefit-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
}

/* Services Category Accent Badge */
.services-category-badge {
    color: #e53e3e;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(229, 62, 62, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(229, 62, 62, 0.1);
}

/* Services Section Title CSS */
.services-section-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.25;
}

/* Redesigned Services Slider Cards */
.service-card-new {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 38px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e53e3e 0%, #f97316 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-new:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(229, 62, 62, 0.25);
    box-shadow: 0 20px 40px rgba(229, 62, 62, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.service-card-new:hover::before {
    transform: scaleX(1);
}

.service-icon-new {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    /* Squircle aspect */
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    color: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(229, 62, 62, 0.1);
}

.service-card-new:hover .service-icon-new {
    background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%);
    color: #ffffff;
    transform: scale(1.08) rotate(6deg);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(229, 62, 62, 0.25);
}

.service-title-new {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card-new:hover .service-title-new {
    color: #e53e3e;
}

.service-desc-new {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

.service-link-new {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px dashed #e2e8f0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e53e3e;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.service-link-new i {
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-link-new i {
    transform: translateX(5px);
}

/* Branch Cards */
.branch-item-card {
    transition: var(--transition);
}

.branch-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.bg-danger-subtle {
    background-color: #ffe5e5 !important;
}

#services {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Services Swiper Slider Styles */
.services-swiper {
    padding: 15px 12px 55px 12px !important;
}

.services-slider-wrapper {
    margin-top: 15px;
}

/* Services Inline Navigation Arrows */
.services-button-prev-inline,
.services-button-next-inline {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.services-button-prev-inline:hover,
.services-button-next-inline:hover {
    background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.25);
    transform: scale(1.08);
}

/* Services Pagination Bullets */
.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px !important;
    border-radius: 50px;
}

.services-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: linear-gradient(90deg, #e53e3e 0%, #f97316 100%);
    box-shadow: 0 2px 10px rgba(229, 62, 62, 0.2);
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
    background: linear-gradient(135deg, #06313b 0%, #021a1f 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.why-choose-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Badge */
.why-choose-badge {
    background: #f97316;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

/* Heading & description */
.why-choose-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
}

.text-orange-gradient {
    background: linear-gradient(90deg, #f97316 0%, #ff8c3b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.why-choose-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 540px;
}

/* Capsule Cards */
.why-capsule-card {
    background: #ffffff;
    border-radius: 100px;
    /* Fully capsule pill shaped */
    padding: 14px 24px 14px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-capsule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25);
    background: #ffffff;
}

.why-capsule-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f97316 0%, #ff7a1a 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-right: 16px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.35);
}

.why-capsule-text {
    flex-grow: 1;
}

.why-capsule-text h6 {
    font-size: 0.92rem;
    margin-bottom: 2px;
    color: #0f172a;
}

.why-capsule-text .small-text {
    font-size: 0.74rem;
    line-height: 1.35;
    color: #64748b;
}

/* Image Arched Frame Wrapper */
.why-image-wrapper {
    position: relative;
    padding: 0;
    background: transparent;
    display: inline-block;
    max-width: 100%;
    margin-right: 20px;
    margin-bottom: 20px;
}

.why-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 5px solid #f97316;
    border-radius: 185px 185px 0 185px;
    z-index: 1;
    pointer-events: none;
}

.why-arched-image {
    border-radius: 0px 185px 0 185px;
    width: 370px;
    height: 460px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Decorative Dot Grid */
.why-dots-pattern {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 1;
}

/* Small Overlapping Badge */
.why-small-image-badge {
    position: absolute;
    bottom: -15px;
    left: -40px;
    width: 140px;
    height: 140px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 3;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-small-image-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-small-image-badge:hover {
    transform: scale(1.1) rotate(4deg);
    border-color: #f97316;
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background-color: #03060c;
    background-image: url('../images/testimonials_bg.png'), linear-gradient(135deg, #090e1a 0%, #03050a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    padding: 90px 0;
}

/* Testimonials Stats Pill Styles */
.testimonials-stats-pill {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonials-stats-pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(249, 115, 22, 0.3);
}

.pill-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}

.pill-stars {
    font-size: 0.75rem;
    color: #ffd700;
    /* gold stars */
}

.pill-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1 !important;
    /* bright light slate */
}

.marquee-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff6b6b !important;
    /* bright red */
    background: rgba(255, 255, 255, 0.08) !important;
    /* soft translucent white background */
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px dashed rgba(255, 107, 107, 0.4) !important;
    display: inline-flex;
    align-items: center;
}

.view-all-reviews-btn {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: transparent !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.view-all-reviews-btn:hover {
    background: #e53e3e !important;
    border-color: #e53e3e !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
}

.gradient-text-accent {
    background: linear-gradient(90deg, #e53e3e 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.pulse-indicator-red {
    width: 6px;
    height: 6px;
    background-color: #e53e3e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.4);
    animation: pulse-red-anim 2s infinite;
}

@keyframes pulse-red-anim {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(229, 62, 62, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
    }
}

.testimonials-swiper {
    padding: 10px 10px 45px 10px !important;
}

.testimonial-slider-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.testimonial-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
    border-color: rgba(249, 115, 22, 0.25);
}

/* Swiper navigation buttons */
.testimonials-prev-btn,
.testimonials-next-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.testimonials-prev-btn:hover,
.testimonials-next-btn:hover {
    background: #f97316;
    color: #ffffff;
    border-color: #f97316;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Swiper pagination dots */
.testimonials-pagination {
    width: auto !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 5px !important;
    border-radius: 50px;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background: #f97316;
    border-radius: 50px;
}

.marquee-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.row2-avatar-color {
    background: linear-gradient(135deg, #093c46 0%, #22d3ee 100%);
}

.small-text {
    font-size: 0.85rem;
}

.fs-xs {
    font-size: 0.75rem;
}

/* Modal review cards & actions */
.modal-review-card {
    transition: all 0.3s ease;
}

.modal-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05) !important;
    border-color: rgba(249, 115, 22, 0.25) !important;
}

.btn-navy {
    background: #093c46;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background: #0b4e5a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(9, 60, 70, 0.3);
}

.hover-scale {
    transition: all 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Our Expertise Section Styles */
.expertise-section {
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
    background-image: radial-gradient(at 0% 0%, rgba(229, 62, 62, 0.02) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.02) 0px, transparent 50%);
    padding: 90px 0;
}

/* Aurora Backdrop Circles */
.expertise-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(229, 62, 62, 0.05);
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
}

.expertise-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.06);
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.expertise-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06) 0%, rgba(249, 115, 22, 0.06) 100%);
    border: 1px solid rgba(229, 62, 62, 0.15);
    color: #e53e3e;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.expertise-header-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    letter-spacing: -1px;
    color: #0f172a;
    line-height: 1.25;
}

.expertise-header-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.expertise-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 32px 8px 32px 8px;
    /* Elegant asymmetrical corners */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}



.expertise-card:hover {
    transform: translateY(-10px) rotate(-0.5deg);
    border-color: rgba(9, 60, 70, 0.15) !important;
}

/* Watermark Number indices */
.expertise-number {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(226, 232, 240, 0.35);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    transition: all 0.4s ease;
    user-select: none;
}

.expertise-card:hover .expertise-number {
    color: rgba(226, 232, 240, 0.7);
    transform: translateY(-5px) scale(1.05);
}

/* Individual card hover glow colors */
.expertise-card.hover-orange:hover {
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08) !important;
    border-color: rgba(249, 115, 22, 0.3) !important;
}



.expertise-card.hover-blue:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08) !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
}



.expertise-card.hover-green:hover {
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.08) !important;
    border-color: rgba(22, 163, 74, 0.3) !important;
}



.expertise-card.hover-cyan:hover {
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.08) !important;
    border-color: rgba(6, 182, 212, 0.3) !important;
}



/* Bullet list criteria */
.expertise-list {
    margin-top: 15px;
}

.expertise-list li {
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.expertise-list li i {
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.text-orange {
    color: #f97316;
}

.text-blue {
    color: #2563eb;
}

.text-green {
    color: #16a34a;
}

.text-cyan {
    color: #06b6d4;
}

.expertise-card:hover .expertise-list li i {
    transform: scale(1.2);
}

.expertise-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.expertise-icon-wrapper.color-orange {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
}

.expertise-icon-wrapper.color-blue {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.expertise-icon-wrapper.color-green {
    background: rgba(22, 163, 74, 0.08);
    color: #16a34a;
}

.expertise-icon-wrapper.color-cyan {
    background: rgba(6, 182, 212, 0.08);
    color: #06b6d4;
}

.expertise-card:hover .expertise-icon-wrapper {
    transform: scale(1.15) rotate(8deg);
}

.expertise-card .progress {
    overflow: visible;
}

.expertise-card .progress-bar {
    position: relative;
    overflow: visible;
}

.expertise-card .progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: inherit;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Gallery Section Styles */
.gallery-section {
    position: relative;
    padding: 50px 0;
    background-color: #ffffff;
}

.gallery-badge {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06) 0%, rgba(249, 115, 22, 0.06) 100%);
    border: 1px solid rgba(229, 62, 62, 0.15);
    color: #e53e3e;
    padding: 6px 18px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gallery-header-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    letter-spacing: -1px;
    color: #0f172a;
    line-height: 1.25;
}

.gallery-header-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #f1f5f9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.6) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Mosaic sizing rules */
.gallery-item.size-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Custom view all button */
.gallery-view-all-btn {
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
    background: transparent !important;
    color: #0f172a !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.gallery-view-all-btn:hover {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Modal Gallery Card Styles */
.gallery-modal-card {
    background: #e2e8f0;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.gallery-modal-card:hover img {
    transform: scale(1.05);
}

.gallery-modal-card:hover .gallery-modal-overlay {
    opacity: 1 !important;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 767px) {
    .gallery-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 5px 16px 20px 16px !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
    }

    .gallery-grid::-webkit-scrollbar {
        height: 4px;
    }

    .gallery-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
    }

    .gallery-grid::-webkit-scrollbar-thumb {
        background: rgba(37, 99, 235, 0.25);
        border-radius: 4px;
    }

    .gallery-item {
        flex: 0 0 78% !important;
        width: 78% !important;
        scroll-snap-align: start !important;
        height: 250px !important;
    }

    .gallery-item.size-large {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 250px !important;
    }

    .gallery-item img {
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Header space and font size compression on mobile */
    .gallery-section {
        padding: 30px 0 !important;
    }

    .gallery-header-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .gallery-header-desc {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }

    .gallery-section .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    /* Expertise section optimization */
    .expertise-section {
        padding: 30px 0 !important;
    }

    .expertise-header-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .expertise-header-desc {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }

    .expertise-section .mb-5 {
        margin-bottom: 1.5rem !important;
    }
}

/* FAQ Page Card Styles */
.faq-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
    border-color: rgba(220, 38, 38, 0.2);
}

.faq-q-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
}

/* Home FAQ Accordion Styles */
.home-faq-accordion .accordion-item {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.home-faq-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
    border-color: rgba(220, 38, 38, 0.2) !important;
}

.home-faq-accordion .accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: #0f172a;
    background: #ffffff;
    padding: 20px 24px;
    font-size: 1.05rem;
    border: none;
    box-shadow: none !important;
}

.home-faq-accordion .accordion-button:not(.collapsed) {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.02);
}

.home-faq-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.home-faq-accordion .accordion-body {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #475569;
    padding: 0 24px 24px 24px;
    background: #ffffff;
}

/* Sticky FAQ Sidebar on Desktop */
@media (min-width: 992px) {
    .faq-sticky-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 130px;
        /* aligns beautifully beneath navigation header */
        align-self: flex-start;
    }
}

/* Contact Details Double-Column Section Styles */
.contact-section-wrapper {
    background: radial-gradient(circle at 100% 100%, rgba(229, 62, 62, 0.03) 0%, #f8fafc 100%);
    position: relative;
}

.contact-details-card {
    background: radial-gradient(circle at 0% 0%, #131b2e 0%, #080d1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    box-shadow: 0 20px 50px -10px rgba(3, 7, 18, 0.5);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Glowing top borders */
.contact-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.contact-details-card.card-departments::before {
    background: linear-gradient(90deg, #3b82f6 0%, #a78bfa 100%);
}

/* Corner ambient neon glow */
.contact-details-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.15;
    filter: blur(40px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.contact-details-card.card-head-office::after {
    background: radial-gradient(circle, #ef4444 0%, transparent 70%);
}

.contact-details-card.card-departments::after {
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

.contact-details-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px -15px rgba(3, 7, 18, 0.8), 0 0 50px -10px rgba(59, 130, 246, 0.1);
}

.contact-details-card:hover::after {
    opacity: 0.3;
    transform: scale(1.3);
}

/* Overriding typography for high-contrast dark theme */
.contact-details-card h6.text-navy {
    color: #f8fafc !important;
}

.contact-details-card .text-muted {
    color: #94a3b8 !important;
}

.contact-details-card p.text-navy {
    color: #e2e8f0 !important;
}

.contact-details-card .badge {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Individual Channel Row Modules */
.contact-item-row {
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px !important;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.contact-item-row:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-4px) scale(1.015);
}

/* Glow highlights per row hover */
.contact-row-address:hover {
    border-color: rgba(6, 182, 212, 0.3) !important;
    box-shadow: 0 12px 24px -8px rgba(6, 182, 212, 0.25) !important;
}

.contact-row-helpline:hover {
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 12px 24px -8px rgba(59, 130, 246, 0.25) !important;
}

.contact-row-email:hover {
    border-color: rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.25) !important;
}

.contact-row-transit:hover {
    border-color: rgba(249, 115, 22, 0.3) !important;
    box-shadow: 0 12px 24px -8px rgba(249, 115, 22, 0.25) !important;
}

.contact-row-billing:hover {
    border-color: rgba(139, 92, 246, 0.3) !important;
    box-shadow: 0 12px 24px -8px rgba(139, 92, 246, 0.25) !important;
}

.contact-row-whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3) !important;
    box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.25) !important;
}

/* Icon wraps */
.contact-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.contact-item-row:hover .contact-icon-wrapper {
    transform: scale(1.1) translateY(-2px);
}

.contact-item-row:hover .contact-icon-wrapper i {
    animation: icon-wiggle 0.6s ease-in-out;
}

@keyframes icon-wiggle {
    0% {
        transform: rotate(0);
    }

    20% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    80% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* Pulse indicator dots */
.online-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.online-indicator-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: indicator-pulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes indicator-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
        transform: scale(1.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.online-indicator-dot.bg-danger::after {
    animation: indicator-pulse-red 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

.online-indicator-dot.bg-primary::after {
    animation: indicator-pulse-blue 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes indicator-pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
        transform: scale(1.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
        transform: scale(1);
    }
}

@keyframes indicator-pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
        transform: scale(1.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
        transform: scale(1);
    }
}

/* Action arrows */
.action-tag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-item-row:hover .action-tag {
    opacity: 1;
    transform: translateX(4px);
}

.contact-row-helpline:hover .action-tag {
    background: #3b82f6 !important;
    color: #ffffff !important;
}

.contact-row-email:hover .action-tag {
    background: #10b981 !important;
    color: #ffffff !important;
}

.contact-row-transit:hover .action-tag {
    background: #f97316 !important;
    color: #ffffff !important;
}

.contact-row-billing:hover .action-tag {
    background: #8b5cf6 !important;
    color: #ffffff !important;
}

.contact-row-whatsapp:hover .action-tag {
    background: #25d366 !important;
    color: #ffffff !important;
}

/* Custom footer designs in dark theme */
.contact-card-footer {
    border-top: 1px dashed rgba(255, 255, 255, 0.1) !important;
}

.contact-card-footer span.text-success {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.contact-card-footer span.text-navy {
    background: rgba(59, 130, 246, 0.08) !important;
    color: #60a5fa !important;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

/* Icon Row Color Schemes */
.contact-row-address .contact-icon-wrapper {
    background: rgba(6, 182, 212, 0.1) !important;
    color: #22d3ee !important;
}

.contact-row-helpline .contact-icon-wrapper {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
}

.contact-row-email .contact-icon-wrapper {
    background: rgba(16, 185, 129, 0.1) !important;
    color: #10b981 !important;
}

.contact-row-transit .contact-icon-wrapper {
    background: rgba(249, 115, 22, 0.1) !important;
    color: #f97316 !important;
}

.contact-row-billing .contact-icon-wrapper {
    background: rgba(139, 92, 246, 0.1) !important;
    color: #a78bfa !important;
}

.contact-row-whatsapp .contact-icon-wrapper {
    background: rgba(37, 211, 102, 0.1) !important;
    color: #25d366 !important;
}

/* Split Estimate Card Styles */
.contact-split-card {
    background: #ffffff;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border-radius: 28px !important;
    position: relative;
    z-index: 1;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    position: relative;
}

.blue-panel-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 75%);
    filter: blur(20px);
    pointer-events: none;
}

.bg-white-translucent {
    background: rgba(255, 255, 255, 0.08) !important;
}

.border-white-translucent {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.text-orange-glow {
    color: #fb923c !important;
    /* warm orange accent */
    text-shadow: 0 0 20px rgba(251, 146, 60, 0.15);
}

.check-icon-circle {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    /* bright sky blue check icon */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.panel-contact-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-contact-pill:hover {
    background: #ffffff !important;
    color: #1e40af !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.panel-contact-pill.whatsapp-pill {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.25);
    color: #25d366 !important;
}

.panel-contact-pill.whatsapp-pill:hover {
    background: #25d366 !important;
    color: #ffffff !important;
    border-color: #25d366 !important;
}

/* Category Tabs */
.category-tab {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.category-tab:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    transform: translateY(-1px);
}

.category-tab.active {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25) !important;
}

/* Form inputs & group items */
.form-group-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}

.form-label-custom {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-align: left;
}

.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control-custom::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-control-custom:focus {
    outline: none;
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* Datepicker adjustment */
input[type="date"].form-control-custom {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
}

/* Submit Button */
.submit-estimate-btn {
    background: #2563eb !important;
    color: #ffffff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.submit-estimate-btn:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25) !important;
}

.submit-estimate-btn:hover .transition-arrow {
    transform: translateX(4px);
}

.transition-arrow {
    transition: transform 0.3s ease;
}

/* Success Screen inside card */
.success-checkmark-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2);
    animation: success-pulse 2s infinite;
}

@keyframes success-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@media (max-width: 991px) {
    .contact-split-card {
        border-radius: 20px !important;
    }

    .bg-gradient-blue {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .category-tab {
        padding: 6px 12px !important;
        font-size: 0.78rem;
    }
}

/* Premium Get Quote Modal Styling */
#getQuoteModal .modal-content {
    background: transparent !important;
    border: none !important;
}

#getQuoteModal .modal-body {
    background: transparent !important;
    padding: 0 !important;
}

#getQuoteModal .btn-close {
    background-color: rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    padding: 10px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    filter: invert(1) !important;
}

#getQuoteModal .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.35) !important;
    transform: rotate(90deg) scale(1.05);
}

@media (max-width: 991px) {
    #getQuoteModal .btn-close {
        background-color: rgba(15, 23, 42, 0.08) !important;
        border: 1px solid rgba(15, 23, 42, 0.05) !important;
        color: #0f172a !important;
        filter: none !important;
    }
}

/* Shifting Rates Display Table Styling */
.rates-display-table {
    width: 100%;
    border-collapse: collapse;
}

.rates-display-table thead {
    background: #0f172a;
    color: #ffffff;
}

.rates-display-table th {
    padding: 18px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #1e293b;
    text-align: left;
}

.rates-display-table tbody tr {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.25s ease;
}

.rates-display-table tbody tr:last-child {
    border-bottom: none;
}

.rates-display-table tbody tr:hover {
    background-color: rgba(37, 99, 235, 0.02);
}

.rates-display-table td {
    padding: 16px 20px;
    vertical-align: middle;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    text-align: left;
}

.rate-icon-container {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.rates-display-table tbody tr:hover .rate-icon-container {
    background: #2563eb;
    color: #ffffff;
    transform: scale(1.08);
}

.btn-navy-sm {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #0f172a;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-navy-sm:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Mobile Responsive Cards for Pricing Table */
@media (max-width: 991px) {
    .rates-display-table thead {
        display: none;
    }

    .rates-display-table,
    .rates-display-table tbody,
    .rates-display-table tr,
    .rates-display-table td {
        display: block;
        width: 100%;
    }

    .rates-display-table tr {
        margin-bottom: 20px;
        border: 1px solid rgba(226, 232, 240, 0.8);
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        background: #ffffff;
    }

    .rates-display-table tr:last-child {
        margin-bottom: 0;
    }

    .rates-display-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-bottom: 1px dashed rgba(226, 232, 240, 0.6);
        text-align: right;
    }

    .rates-display-table td:last-child {
        border-bottom: none;
        padding-top: 15px;
        justify-content: center;
    }

    .rates-display-table td::before {
        content: attr(data-label);
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.72rem;
        letter-spacing: 0.5px;
        color: #64748b;
        text-align: left;
        margin-right: 15px;
    }

    .rates-display-table .type-cell {
        border-bottom: 2px solid rgba(226, 232, 240, 0.8);
        padding-bottom: 12px;
    }

    .rates-display-table .type-cell::before {
        display: none;
    }

    .rates-display-table .type-cell .d-flex {
        width: 100%;
        justify-content: center !important;
    }
}

/* Testimonials Mobile Spacing Optimization */
@media (max-width: 576px) {
    .testimonials-section {
        padding: 40px 0 !important;
    }

    .testimonials-section .section-title {
        font-size: 1.8rem !important;
    }

    .testimonials-section .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .testimonials-stats-pill {
        padding: 5px 12px !important;
        gap: 6px !important;
        border-radius: 20px !important;
    }

    .pill-number {
        font-size: 0.95rem !important;
    }

    .pill-label {
        font-size: 0.72rem !important;
    }

    .pill-stars {
        font-size: 0.6rem !important;
    }

    .testimonial-slider-card {
        padding: 20px 18px !important;
    }

    .testimonials-swiper {
        padding-bottom: 25px !important;
    }
}

/* Premium Light Branches Section */
#branches {
    background-color: #f8fafc !important;
    background-image: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%) !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

#branches .branch-card {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.7) !important;
    border-left: 4px solid transparent !important;
    /* Left border for side-sliding hover effect */
    border-radius: 12px !important;
    /* Sleek boxy style */
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.015);
}

#branches .branch-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(226, 232, 240, 0.9) !important;
    border-left-color: #e53e3e !important;
    /* Red side highlight slides out from the left edge */
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.07) !important;
}

#branches .branch-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 8px !important;
    /* Boxy icon container */
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%) !important;
    color: #e53e3e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(229, 62, 62, 0.08) !important;
}

#branches .branch-card:hover .branch-icon-container {
    background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.2);
}

#branches .branch-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

#branches .branch-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

#branches .branch-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 14px;
    line-height: 1.55;
}

#branches .branch-details-list li:last-child {
    margin-bottom: 0;
}

#branches .branch-details-list li i {
    margin-top: 3px;
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
}

#branches .branch-details-list a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    word-break: break-all;
}

#branches .branch-details-list a:hover {
    color: #e53e3e;
}

#branches .btn-branch-enquire-custom {
    background: #0f172a !important;
    color: #ffffff !important;
    border: 1px solid #0f172a !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#branches .btn-branch-enquire-custom:hover {
    background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(229, 62, 62, 0.25);
    transform: scale(1.02);
}

/* CSS scroll snapping logic for mobile viewports of branches grid */
@media (max-width: 767px) {
    .branches-mobile-swipe {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        padding-bottom: 25px !important;
        padding-top: 10px !important;
        margin-left: -16px !important;
        margin-right: -16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .branches-mobile-swipe::-webkit-scrollbar {
        display: none;
    }

    .branches-mobile-swipe {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .branches-mobile-swipe>div {
        flex: 0 0 80% !important;
        max-width: 80% !important;
        scroll-snap-align: start !important;
    }
}

/* Swiper Pagination details for Branches Slider */
.branches-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #64748b !important;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.branches-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #e53e3e 0%, #f97316 100%) !important;
    width: 24px;
    border-radius: 5px;
    opacity: 1;
}

.branches-swiper {
    overflow: visible !important;
    padding: 15px 0 50px 0 !important;
}

.branches-swiper .swiper-slide {
    height: auto !important;
    /* Ensure slides stretch to match height */
}

/* About Page Header Banner */
.about-banner {
    position: relative;
    padding: 120px 0 95px;
    background-color: #0f172a;
    background-image: linear-gradient(180deg, rgba(7, 13, 25, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%), url('../images/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(229, 62, 62, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
}

.about-banner-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.about-breadcrumbs {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94a3b8;
}

.about-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-breadcrumbs a:hover {
    color: #e53e3e;
}

.about-breadcrumbs span {
    margin: 0 10px;
    color: #475569;
}

/* Mobile-first compact adjustments for 2-column branches grid */
@media (max-width: 767px) {
    #branches .branch-card {
        padding: 20px 12px !important;
        border-radius: 18px !important;
    }

    #branches .branch-icon-container {
        width: 36px !important;
        height: 36px !important;
        border-radius: 10px !important;
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }

    #branches .branch-title {
        font-size: 1.02rem !important;
        margin-bottom: 10px !important;
    }

    #branches .branch-details-list li {
        gap: 8px !important;
        font-size: 0.74rem !important;
        margin-bottom: 10px !important;
        line-height: 1.35 !important;
    }

    #branches .branch-details-list li i {
        font-size: 0.76rem !important;
        margin-top: 2px !important;
    }

    #branches .btn-branch-enquire-custom {
        font-size: 0.76rem !important;
        padding: 8px 10px !important;
    }
}

/* Custom Premium FAQ Accordion */
.faq-section {
    background-color: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:last-of-type {
    margin-bottom: 0;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(229, 62, 62, 0.18) !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.faq-accordion .accordion-button {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    padding: 20px 24px;
    background-color: #ffffff;
    border: none;
    box-shadow: none !important;
    text-align: left;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: #e53e3e;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e53e3e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 20px 24px 24px;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    background-color: #f8fafc;
}

/* Custom Premium Contact Page Styles */
.contact-info-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e53e3e, #f6ad55);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(229, 62, 62, 0.2) !important;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info-card:hover .contact-card-icon-wrapper {
    transform: scale(1.12) rotate(8deg);
}

.contact-card-icon-wrapper.icon-address {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(229, 62, 62, 0.02));
    color: #e53e3e;
}

.contact-card-icon-wrapper.icon-phone {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.02));
    color: #25d366;
}

.contact-card-icon-wrapper.icon-email {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.02));
    color: #2563eb;
}

.contact-info-card a {
    color: #0f172a;
    transition: all 0.2s ease;
}

.contact-info-card a:hover {
    color: #e53e3e;
}

.hover-text-danger:hover {
    color: #e53e3e !important;
}

.hover-text-primary:hover {
    color: #2563eb !important;
}

/* Custom Premium Gallery Page Styles */
.gallery-item-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
    position: relative;
    overflow: hidden;
}

.gallery-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(229, 62, 62, 0.15) !important;
}

.gallery-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-card:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-zoom-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item-card:hover .gallery-zoom-btn {
    transform: scale(1);
}

/* Custom Premium Reviews Page Styles */
.border-end-md {
    border-right: 1px solid #f1f5f9;
}

@media (max-width: 767.98px) {
    .border-end-md {
        border-right: 0;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 25px;
        margin-bottom: 15px;
    }
}

.avatar-circle-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e53e3e, #f6ad55);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.15);
    font-family: 'Outfit', sans-serif;
}

.testimonial-card-premium {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
}

.testimonial-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.06) !important;
    border-color: rgba(229, 62, 62, 0.15) !important;
}

/* Interactive Star Rating Selector */
.star-rating-selector-wrapper {
    background: transparent;
    border: none;
    padding: 0;
    display: block;
    margin-top: 4px;
}

.star-rating-selector {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 12px;
}

.star-rating-selector input {
    display: none;
}

.star-rating-selector label {
    font-size: 2.2rem;
    color: rgba(15, 23, 42, 0.15);
    /* Light gray for light backgrounds */
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.star-rating-selector label:hover {
    transform: scale(1.2);
}

.star-rating-selector input:checked~label {
    color: #f59e0b;
}

.star-rating-selector:hover label {
    color: rgba(15, 23, 42, 0.15) !important;
}

.star-rating-selector label:hover,
.star-rating-selector label:hover~label {
    color: #f59e0b !important;
}

/* Unique Minimalist Theme for Write a Review Card */
.write-review-card-theme {
    background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%) !important;
    color: #0f172a !important;
    border: 1px solid rgba(229, 62, 62, 0.1) !important;
    border-left: 5px solid #e53e3e !important;
    /* Bold crimson left accent */
    border-radius: 16px !important;
}

.write-review-card-theme h4 {
    color: #0f172a !important;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.write-review-card-theme .text-muted {
    color: #64748b !important;
}

.write-review-card-theme .form-label-custom {
    color: #e53e3e !important;
    /* Brand Red color for labels to make it pop! */
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.write-review-card-theme .form-control-custom {
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5px solid #cbd5e1 !important;
    border-radius: 0 !important;
    color: #0f172a !important;
    padding: 8px 0 !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.write-review-card-theme .form-control-custom::placeholder {
    color: #94a3b8 !important;
}

.write-review-card-theme .form-control-custom:focus {
    border-color: #f6ad55 !important;
    /* Gold on focus */
    box-shadow: none !important;
    border-bottom: 2px solid #e53e3e !important;
    /* Thick brand red bottom line */
}

/* Make text area have a clean height and soft bottom border */
.write-review-card-theme textarea.form-control-custom {
    border: 1px solid rgba(203, 213, 225, 0.6) !important;
    border-bottom: 2px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    background: rgba(248, 250, 252, 0.5) !important;
}

.write-review-card-theme textarea.form-control-custom:focus {
    border-color: rgba(229, 62, 62, 0.3) !important;
    border-bottom: 2px solid #e53e3e !important;
    background: #ffffff !important;
}

/* Rating selectors alignment */
.write-review-card-theme .star-rating-selector label {
    color: #cbd5e1 !important;
}

.write-review-card-theme .star-rating-selector:hover label {
    color: #cbd5e1 !important;
}

.write-review-card-theme .star-rating-selector label:hover,
.write-review-card-theme .star-rating-selector label:hover~label {
    color: #f6ad55 !important;
}

.write-review-card-theme .star-rating-selector input:checked~label {
    color: #f6ad55 !important;
}

.write-review-card-theme .submit-estimate-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #f6ad55 100%) !important;
    box-shadow: 0 10px 20px rgba(229, 62, 62, 0.15) !important;
    border-radius: 30px !important;
    /* Extra round button for different style! */
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.write-review-card-theme .submit-estimate-btn:hover {
    background: linear-gradient(135deg, #c53030 0%, #ed8936 100%) !important;
    box-shadow: 0 12px 24px rgba(229, 62, 62, 0.25) !important;
    transform: translateY(-2px);
}

/* Premium Mobile Offcanvas Navigation Drawer Styles */
@media (max-width: 991.98px) {
    .offcanvas-lg-custom {
        width: 290px !important;
        background-color: #ffffff !important;
        z-index: 1060 !important;
        box-shadow: 8px 0 32px rgba(15, 23, 42, 0.15) !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
    }

    .offcanvas-lg-custom .offcanvas-header {
        background-color: #ffffff !important;
        padding: 20px 24px;
        display: flex !important;
    }

    .offcanvas-lg-custom .offcanvas-body {
        background-color: #ffffff !important;
        padding: 24px;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: calc(100vh - 82px) !important;
        overflow-y: auto !important;
        gap: 15px !important;
    }

    .offcanvas-lg-custom .navbar-nav {
        width: 100%;
        align-items: flex-start !important;
        gap: 8px;
    }

    .offcanvas-lg-custom .nav-item {
        width: 100%;
    }

    .offcanvas-lg-custom .nav-link {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 16px !important;
        width: 100%;
        border-radius: 10px;
        color: #0f172a !important;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 3px solid transparent;
    }

    /* Disable sliding hover underlines inside mobile menu */
    .offcanvas-lg-custom .nav-link::after {
        display: none !important;
    }

    .offcanvas-lg-custom .nav-link:hover,
    .offcanvas-lg-custom .nav-link.active {
        background-color: #f8fafc;
        color: #e53e3e !important;
        border-left-color: #e53e3e;
        padding-left: 20px !important;
    }

    /* Pushed dropdown toggle arrow to far right */
    .offcanvas-lg-custom .dropdown-toggle::after {
        display: inline-block;
        margin-left: auto !important;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        transition: transform 0.2s ease;
    }

    .offcanvas-lg-custom .dropdown-toggle.show::after {
        transform: rotate(180deg) !important;
    }

    /* Mobile Dropdown Styling */
    .offcanvas-lg-custom .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        background-color: #f8fafc !important;
        box-shadow: none !important;
        border: 1px solid #f1f5f9 !important;
        margin-top: 5px !important;
        padding: 8px !important;
        border-radius: 10px !important;
        display: none !important;
    }

    .offcanvas-lg-custom .dropdown-menu.show {
        display: block !important;
    }

    .offcanvas-lg-custom .dropdown-item {
        display: flex !important;
        align-items: center !important;
        padding: 10px 14px !important;
        border-radius: 8px !important;
        font-weight: 500;
        font-size: 0.88rem;
        color: #334155 !important;
        transition: all 0.2s ease;
        background: transparent !important;
        border: none !important;
    }

    .offcanvas-lg-custom .dropdown-item:hover {
        background-color: #f1f5f9 !important;
        color: #e53e3e !important;
        padding-left: 18px !important;
        border-left: none !important;
    }

    .offcanvas-lg-custom .dropdown-item i {
        font-size: 1rem;
        width: 20px;
    }

    .offcanvas-lg-custom .navbar-cta-wrapper {
        border-top: 1px solid #f1f5f9;
        padding-top: 20px;
    }
}

/* Hide floating widgets when offcanvas sidebar is open */
body.offcanvas-open .floating-contact-widgets-new,
body.offcanvas-open .floating-contact-widgets,
body.offcanvas-menu-open .floating-contact-widgets-new,
body.offcanvas-menu-open .floating-contact-widgets {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Custom Responsive Offcanvas Desktop Resets */
@media (min-width: 992px) {
    .offcanvas-lg-custom {
        position: static !important;
        visibility: visible !important;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        flex-grow: 1 !important;
        /* Grow to fill layout space! */
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        z-index: auto !important;
        transition: none !important;
    }

    .offcanvas-lg-custom .offcanvas-header {
        display: none !important;
    }

    .offcanvas-lg-custom .offcanvas-body {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        /* Push links and buttons to the right! */
        padding: 0 !important;
        height: auto !important;
        overflow: visible !important;
        background: transparent !important;
        width: 100% !important;
    }
}