/* ================================================================
   DRYZONE PROTECTORS - HEADER STYLES (PROFESSIONAL - FINAL)
   ================================================================
   Brand Colors:
   - Brand Blue:    #1B5875
   - Brand Green:   #2D8242
   - Dark Navy:     #0F172A
   - Light BG:      #F8FAFC
   - White:         #FFFFFF
   ================================================================ */

/* ================================================================
   1. CSS VARIABLES
   ================================================================ */
:root {
    --brand-blue: #1B5875;
    --brand-blue-hover: #164A63;
    --brand-green: #2D8242;
    --dark-navy: #0F172A;
    --light-bg: #F8FAFC;
    --white: #FFFFFF;
    --heading-color: #0F172A;
    --body-color: #475569;
    --border-color: #E2E8F0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --shadow-color: rgba(15, 23, 42, 0.06);
    --shadow-lg: rgba(15, 23, 42, 0.10);
}

/* ================================================================
   2. BASE RESET
   ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--light-bg);
    color: var(--body-color);
    line-height: 1.7;
}

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--brand-blue-hover);
}

/* ================================================================
   3. HEADER / NAVIGATION (CURVED, BIG LOGO, NO TITLE)
   ================================================================ */

/* ── Site Header (Curved Bottom Corners) ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-slow);
    height: 90px;                    /* Increased to fit bigger logo */
    display: flex;
    align-items: center;
    border-radius: 0 0 20px 20px;    /* ✅ Curved bottom corners */
}

/* ── Sticky Header (On Scroll) ── */
.site-header.header-sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 30px var(--shadow-color);
    height: 78px;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0 0 16px 16px;
}

/* ── Header Hide on Scroll Down ── */
.site-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* ── Header Show on Scroll Up ── */
.site-header:not(.header-hidden) {
    transform: translateY(0);
    opacity: 1;
}

/* ── Navbar Container ── */
.site-header .navbar {
    padding: 0;
    width: 100%;
    height: 100%;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* ── Brand / Logo (MAXIMIZED SIZE - NO TEXT) ── */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    height: 100%;
    flex-shrink: 0;
}

/* Hide brand text completely */
.brand-text {
    display: none !important;       /* ✅ Removed title */
}

.navbar-logo {
    height: 80px;                   /* ✅ Even bigger (was 64px) */
    width: auto;
    transition: var(--transition);
}

.header-sticky .navbar-logo {
    height: 60px;                   /* ✅ Sticky: bigger (was 50px) */
}

/* ── Navigation Links (CENTER ALIGNED + WIDE GAP) ── */
.navbar-collapse {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    gap: 32px;                      /* ✅ Large gap */
    align-items: center;
    height: 100%;
    margin: 0 auto;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* ── Nav Links (No Icons) ── */
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--body-color);
    padding: 8px 4px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    height: auto;
}

/* Hide icons in main nav */
.nav-link i {
    display: none !important;
}

.nav-link:hover {
    color: var(--brand-blue);
    background: rgba(27, 88, 117, 0.06);
}

/* ── Active Link Underline ── */
.nav-link.active {
    color: var(--brand-blue);
    background: rgba(27, 88, 117, 0.10);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--brand-blue);
    border-radius: 2px;
}

/* ── Dropdown (HOVER ON SERVICES) ── */
.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 48px var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border-color);
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
}

/* Show dropdown on hover (Desktop) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* ── Dropdown Items (Icons VISIBLE only here) ── */
.dropdown-item {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--body-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ✅ Show icons in dropdown items */
.dropdown-item i {
    display: inline-block !important;   /* Show icons */
    width: 20px;
    text-align: center;
    color: var(--brand-blue);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(27, 88, 117, 0.06);
    color: var(--brand-blue);
}

.dropdown-item:hover i {
    color: var(--brand-blue-hover);
}

.dropdown-item.fw-bold {
    color: var(--brand-blue);
}

.dropdown-divider {
    border-color: var(--border-color);
    margin: 4px 0;
}

/* ── CTA Button in Nav ── */
.nav-cta {
    flex-shrink: 0;
    margin-left: 16px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta .btn-primary {
    background: var(--brand-blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(27, 88, 117, 0.2);
}

.nav-cta .btn-primary:hover {
    background: var(--brand-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 88, 117, 0.3);
}

/* ── Navbar Toggler (Mobile) ── */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 2px;
    background: var(--heading-color);
    position: relative;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--heading-color);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ================================================================
   4. MOBILE RESPONSIVE - HEADER
   ================================================================ */

/* ── Tablet ── */
@media (max-width: 991px) {
    .site-header {
        height: 78px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0 0 16px 16px;
    }
    
    .site-header.header-sticky {
        height: 70px;
        border-radius: 0 0 12px 12px;
    }
    
    .navbar-logo {
        height: 52px;                /* Bigger on tablet */
    }
    
    .navbar-collapse {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px 24px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        box-shadow: 0 20px 60px var(--shadow-lg);
        border-top: 1px solid var(--border-color);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .header-sticky .navbar-collapse {
        top: 70px;
    }
    
    .navbar-nav {
        gap: 6px;
        width: 100%;
        padding: 0;
        margin: 0;
        flex-direction: column;
    }
    
    .nav-item {
        height: auto;
        width: 100%;
    }
    
    .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
        font-size: 0.95rem;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link.active {
        background: rgba(27, 88, 117, 0.08);
    }
    
    /* Reset dropdown hover on mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        background: transparent;
        padding-left: 12px;
        display: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
    
    .dropdown-item {
        padding: 10px 16px;
        border-radius: var(--radius-sm);
    }
    
    .nav-cta {
        width: 100%;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--border-color);
        margin-left: 0;
    }
    
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Mobile ── */
@media (max-width: 576px) {
    .site-header {
        height: 70px;
        border-radius: 0 0 12px 12px;
    }
    
    .site-header.header-sticky {
        height: 62px;
        border-radius: 0 0 10px 10px;
    }
    
    .navbar-logo {
        height: 44px;                /* Bigger on mobile */
    }
    
    .navbar-collapse {
        top: 70px;
        padding: 16px;
    }
    
    .header-sticky .navbar-collapse {
        top: 62px;
    }
    
    .nav-link {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

/* ================================================================
   5. UTILITY
   ================================================================ */
.text-brand-blue {
    color: var(--brand-blue);
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}
/* ================================================================
   HEADER - SPECIFIC CHANGES ONLY
   ================================================================ */

/* ── Logo Right Shift + Size Maximized ── */
.navbar-brand {
    margin-left: 20px;            /* ✅ Logo right shift */
}

.navbar-logo {
    height: 110px;                 /* ✅ Even bigger (was 80px) */
    width: auto;
    transition: var(--transition);
}

.header-sticky .navbar-logo {
    height: 68px;                 /* ✅ Sticky bigger (was 60px) */
}

/* ── Header Corners (Circle/Pill Style - More Visible) ── */
.site-header {
    border-radius: 0 0 40px 40px;  /* ✅ Circle style (more rounded) */
}

.header-sticky .site-header {
    border-radius: 0 0 32px 32px;  /* ✅ Sticky: slightly smaller */
}

/* ── Free Inspection Button Left Shift ── */
.nav-cta {
    margin-right: 20px;           /* ✅ Shift button left */
}

/* ── Tablet Responsive ── */
@media (max-width: 991px) {
    .navbar-logo {
        height: 58px;              /* ✅ Bigger on tablet */
    }
    .navbar-brand {
        margin-left: 12px;
    }
    .nav-cta {
        margin-right: 12px;
    }
    .site-header {
        border-radius: 0 0 28px 28px;
    }
}

/* ── Mobile Responsive ── */
@media (max-width: 576px) {
    .navbar-logo {
        height: 48px;              /* ✅ Bigger on mobile */
    }
    .navbar-brand {
        margin-left: 8px;
    }
    .nav-cta {
        margin-right: 8px;
    }
    .site-header {
        border-radius: 0 0 20px 20px;
    }
}

/* ================================================================
   DRYZONE PROTECTORS - PROFESSIONAL FOOTER STYLES
   ================================================================
   Brand Colors:
   - Brand Blue:    #1B5875
   - Brand Green:   #2D8242
   - Dark Navy:     #0F172A
   - Light BG:      #F8FAFC
   - White:         #FFFFFF
   ================================================================ */

/* ================================================================
   1. FOOTER CONTAINER (Curved Corners)
   ================================================================ */
.site-footer {
    background: var(--dark-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    margin-top: 60px;
    border-radius: 20px 20px 0 0;     /* ✅ Curved top corners */
    box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.08);
}

/* ── Footer Inner Container ── */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================================
   2. FOOTER TOP GRID
   ================================================================ */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Company Info ── */
.footer-brand {
    margin-bottom: 16px;
}

.footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 16px;
}

/* ── Social Media ── */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-link:hover {
    background: var(--brand-blue);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--brand-blue);
    box-shadow: 0 8px 24px rgba(27, 88, 117, 0.3);
}

/* ── Footer Headings ── */
.footer-heading {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--brand-blue);
    border-radius: 2px;
}

/* ── Footer Links ── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--brand-blue);
    transition: var(--transition);
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(4px);
}

/* ── Contact Info ── */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-contact li i {
    width: 20px;
    color: var(--brand-blue);
    margin-top: 3px;
    font-size: 15px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact .contact-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================================
   3. FOOTER BOTTOM
   ================================================================ */
.footer-bottom {
    padding: 24px 0;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom .copyright strong {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-legal .divider {
    color: rgba(255, 255, 255, 0.15);
}

/* ================================================================
   4. RESPONSIVE DESIGN
   ================================================================ */

/* ── Tablet ── */
@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .site-footer {
        border-radius: 16px 16px 0 0;
        padding-top: 48px;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

/* ── Mobile ── */
@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .site-footer {
        border-radius: 12px 12px 0 0;
        padding-top: 36px;
        margin-top: 40px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 16px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-heading::after {
        width: 24px;
    }
    
    .footer-logo {
        height: 44px;
    }
}

/* ── Small Mobile ── */
@media (max-width: 400px) {
    .site-footer {
        border-radius: 8px 8px 0 0;
        padding-top: 28px;
    }
    
    .footer-legal {
        gap: 12px;
        font-size: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
/* ================================================================
   HEADER - MOBILE VIEW IMPROVEMENTS (370px Breakpoint)
   ================================================================ */

/* ── Base Mobile (370px - 576px) ── */
@media (max-width: 576px) {
    .site-header {
        height: 66px;
        border-radius: 0 0 14px 14px;
        position: fixed;              /* ✅ Sticky on mobile */
        top: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .site-header.header-sticky {
        height: 60px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 24px var(--shadow-color);
    }

    .navbar-logo {
        height: 42px;
    }

    .navbar-brand {
        margin-left: 6px;
    }

    .nav-cta {
        margin-right: 6px;
    }

    .nav-cta .btn {
        padding: 6px 14px;
        font-size: 0.7rem;
        border-radius: var(--radius-full);
        min-width: auto;
    }

    .navbar-toggler {
        padding: 6px;
    }

    .navbar-toggler-icon {
        width: 22px;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 22px;
    }

    .navbar-collapse {
        top: 66px;
        padding: 14px 16px;
        border-radius: 0 0 14px 14px;
        max-height: calc(100vh - 66px);
        overflow-y: auto;
        background: var(--white);
        box-shadow: 0 20px 40px var(--shadow-lg);
    }

    .header-sticky .navbar-collapse {
        top: 60px;
    }

    .navbar-nav {
        gap: 2px;
        width: 100%;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: var(--radius-sm);
        width: 100%;
        font-weight: 500;
    }

    .nav-link i {
        display: none !important;
    }

    .nav-link.active {
        background: rgba(27, 88, 117, 0.08);
        font-weight: 600;
    }

    .nav-link.active::after {
        display: none;
    }

    /* Dropdown on mobile */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        background: transparent;
        padding-left: 8px;
        display: none;
        width: 100%;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 8px 12px;
        font-size: 0.82rem;
        border-radius: var(--radius-sm);
        gap: 8px;
    }

    .dropdown-item i {
        display: inline-block !important;
        width: 18px;
        font-size: 0.8rem;
        color: var(--brand-blue);
    }

    .dropdown-divider {
        margin: 2px 0;
    }

    .nav-cta {
        width: 100%;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
        margin-left: 0;
        margin-right: 0;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .brand-text {
        display: none !important;
    }
}

/* ── Smallest Phones (370px and below) ── */
@media (max-width: 370px) {
    .site-header {
        height: 58px;
        border-radius: 0 0 10px 10px;
    }

    .site-header.header-sticky {
        height: 54px;
        border-radius: 0 0 8px 8px;
    }

    .navbar-logo {
        height: 34px;
    }

    .navbar-brand {
        margin-left: 4px;
    }

    .nav-cta .btn {
        padding: 4px 10px;
        font-size: 0.65rem;
        gap: 4px;
    }

    .nav-cta .btn i {
        font-size: 0.6rem;
    }

    .navbar-toggler {
        padding: 4px;
    }

    .navbar-toggler-icon {
        width: 18px;
        height: 1.5px;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 18px;
        height: 1.5px;
    }

    .navbar-toggler-icon::before {
        top: -6px;
    }

    .navbar-toggler-icon::after {
        bottom: -6px;
    }

    .navbar-collapse {
        top: 58px;
        padding: 10px 12px;
        border-radius: 0 0 10px 10px;
        max-height: calc(100vh - 58px);
    }

    .header-sticky .navbar-collapse {
        top: 54px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .dropdown-item {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .dropdown-item i {
        width: 16px;
        font-size: 0.7rem;
    }

    .nav-cta {
        margin-top: 8px;
        padding-top: 8px;
    }

    .nav-cta .btn {
        padding: 6px 12px;
        font-size: 0.72rem;
    }
}
/* ================================================================
   🏆 HERO SECTION - PROFESSIONAL MODERN STYLING
   ================================================================
   Inspired by: Stripe, Webflow, Linear, Framer
   Brand Colors: #1B5875, #2D8242, #0F172A
   ================================================================ */

/* ================================================================
   1. HERO SECTION - CONTAINER
   ================================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(165deg, #F8FAFC 0%, #E8F0F5 100%);
    overflow: hidden;
}

/* ── Background Decorative Elements ── */
.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 130, 66, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Decorative Floating Shapes ── */
.hero-shape-1 {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(27, 88, 117, 0.06);
    animation: floatShape 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(45, 130, 66, 0.05);
    transform: rotate(45deg);
    animation: floatShape 8s ease-in-out infinite reverse;
    pointer-events: none;
}

.hero-shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ================================================================
   2. HERO CONTENT
   ================================================================ */
.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

/* ── Hero Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(27, 88, 117, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 18px 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1B5875;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(27, 88, 117, 0.1);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    font-size: 14px;
    background: linear-gradient(135deg, #1B5875, #2A6F93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Hero Title ── */
.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    color: #0F172A;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Description ── */
.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    max-width: 540px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ================================================================
   3. HERO BUTTONS
   ================================================================ */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons .btn {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ── Primary Button ── */
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(27, 88, 117, 0.3);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 88, 117, 0.4);
}

.hero-buttons .btn-primary:active {
    transform: translateY(0);
}

/* ── WhatsApp Button ── */
.hero-buttons .btn-success {
    background: linear-gradient(135deg, #2D8242 0%, #3A9D54 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(45, 130, 66, 0.3);
    border: none;
}

.hero-buttons .btn-success:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(45, 130, 66, 0.4);
}

.hero-buttons .btn-success:active {
    transform: translateY(0);
}

.hero-buttons .btn i {
    font-size: 1rem;
}

/* ================================================================
   4. HERO STATS
   ================================================================ */
.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 2px solid rgba(226, 232, 240, 0.5);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.stat-number .plus {
    color: #1B5875;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ================================================================
   5. HERO IMAGE
   ================================================================ */
.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.3);
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.12);
}

/* ── Floating Card Overlay (Glassmorphism) ── */
.hero-image .floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1B5875;
}

.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card .card-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-card .card-text .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ── Rating Badge ── */
.hero-image .rating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    text-align: center;
    animation: floatCard 4s ease-in-out infinite 1s;
}

.rating-badge .stars {
    color: #F59E0B;
    font-size: 14px;
    display: flex;
    gap: 2px;
    margin-bottom: 2px;
}

.rating-badge .rating-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
}

/* ================================================================
   6. ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================================================
   7. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 32px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-image .floating-card {
        bottom: -10px;
        left: 10px;
        padding: 12px 16px;
    }

    .hero-image .rating-badge {
        top: 10px;
        right: 10px;
        padding: 10px 14px;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }
}

/* ================================================================
   8. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        padding-top: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 14px 4px 10px;
    }

    .hero-image .floating-card {
        display: none;
    }

    .hero-image .rating-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }

    .rating-badge .stars {
        font-size: 11px;
    }
}

/* ================================================================
   9. RESPONSIVE - EXTRA SMALL (320px)
   ================================================================ */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}

/* ================================================================
   🌟 TRUST SECTION - PROFESSIONAL MODERN STYLING
   ================================================================
   Inspired by: Stripe, Webflow, Linear, Framer
   Brand Colors: #1B5875, #2D8242, #0F172A
   ================================================================ */

/* ================================================================
   1. TRUST SECTION - CONTAINER
   ================================================================ */
.trust-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

/* ── Background Decorative Elements ── */
.trust-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 130, 66, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Decorative Grid Lines ── */
.trust-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(15, 23, 42, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.trust-section .section-header {
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.trust-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 16px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.trust-section .section-tag i {
    font-size: 12px;
    color: #1B5875;
}

.trust-section .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.trust-section .section-title .highlight {
    background: linear-gradient(135deg, #1B5875 0%, #2D8242 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   3. TRUST CARDS GRID
   ================================================================ */
.trust-section .row {
    position: relative;
    z-index: 2;
}

/* ── Individual Trust Card ── */
.trust-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    animation: fadeInUp 0.6s ease both;
}

/* ── Staggered Animation Delay ── */
.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }
.trust-card:nth-child(4) { animation-delay: 0.4s; }

/* ── Card Top Gradient Border ── */
.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B5875 0%, #2D8242 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

/* ── Card Hover State ── */
.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
    border-color: rgba(27, 88, 117, 0.1);
}

.trust-card:hover::before {
    opacity: 1;
}

/* ── Card Hover - Glow Effect ── */
.trust-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 0%, rgba(27, 88, 117, 0.02), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trust-card:hover::after {
    opacity: 1;
}

/* ================================================================
   4. TRUST ICON
   ================================================================ */
.trust-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 24px rgba(27, 88, 117, 0.15);
}

/* ── Icon Hover Effect ── */
.trust-card:hover .trust-icon {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 36px rgba(27, 88, 117, 0.25);
}

/* ── Icon Ring Effect ── */
.trust-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    border: 2px solid rgba(27, 88, 117, 0.1);
    opacity: 0;
    transition: all 0.4s ease;
}

.trust-card:hover .trust-icon::before {
    opacity: 1;
    inset: -6px;
}

/* ── Individual Icon Colors ── */
.trust-card:nth-child(1) .trust-icon {
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
}

.trust-card:nth-child(2) .trust-icon {
    background: linear-gradient(135deg, #2D8242 0%, #3A9D54 100%);
}

.trust-card:nth-child(3) .trust-icon {
    background: linear-gradient(135deg, #0F172A 0%, #1B5875 100%);
}

.trust-card:nth-child(4) .trust-icon {
    background: linear-gradient(135deg, #1B5875 0%, #2D8242 100%);
}

/* ================================================================
   5. TRUST CARD CONTENT
   ================================================================ */
.trust-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    letter-spacing: -0.3px;
}

.trust-card:hover h4 {
    color: #1B5875;
}

.trust-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Card Number Badge ── */
.trust-card .card-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.04);
    line-height: 1;
    transition: all 0.4s ease;
}

.trust-card:hover .card-number {
    color: rgba(27, 88, 117, 0.06);
    transform: scale(1.1);
}

/* ── Card Link/Arrow (Optional) ── */
.trust-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1B5875;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.trust-card:hover .card-link {
    opacity: 1;
    transform: translateY(0);
}

.trust-card .card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.trust-card .card-link:hover i {
    transform: translateX(4px);
}

/* ================================================================
   6. ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   7. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .trust-section {
        padding: 60px 0 40px;
    }

    .trust-section .section-title {
        font-size: 2rem;
    }

    .trust-card {
        padding: 28px 20px 24px;
        border-radius: 16px;
    }

    .trust-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
        border-radius: 16px;
    }

    .trust-card h4 {
        font-size: 1rem;
    }

    .trust-card p {
        font-size: 0.85rem;
    }
}

/* ================================================================
   8. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .trust-section {
        padding: 40px 0 30px;
    }

    .trust-section .section-title {
        font-size: 1.6rem;
    }

    .trust-section .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .trust-card {
        padding: 24px 16px 20px;
        border-radius: 14px;
    }

    .trust-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .trust-card h4 {
        font-size: 0.95rem;
    }

    .trust-card p {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .trust-card .card-number {
        font-size: 1.8rem;
        top: 8px;
        right: 12px;
    }

    .trust-card .card-link {
        font-size: 0.7rem;
    }
}

/* ================================================================
   9. RESPONSIVE - EXTRA SMALL (320px)
   ================================================================ */
@media (max-width: 380px) {
    .trust-section .section-title {
        font-size: 1.3rem;
    }

    .trust-card {
        padding: 20px 14px 16px;
        border-radius: 12px;
    }

    .trust-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .trust-card h4 {
        font-size: 0.85rem;
    }

    .trust-card p {
        font-size: 0.75rem;
    }
}
/* ================================================================
   ℹ️ ABOUT HOME SECTION - PROFESSIONAL MODERN STYLING
   ================================================================
   Inspired by: Stripe, Webflow, Linear, Framer
   Brand Colors: #1B5875, #2D8242, #0F172A
   ================================================================ */

/* ================================================================
   1. ABOUT SECTION - CONTAINER WITH CURVED CORNERS
   ================================================================ */
.about-home-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    border-radius: 40px 40px 0 0;     /* ✅ Curved top corners */
    margin: 0 16px;
    box-shadow: 0 -4px 40px rgba(15, 23, 42, 0.04);
}

/* ── Background Decorative Elements ── */
.about-home-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-home-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 130, 66, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Decorative Shape ── */
.about-shape {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: rgba(27, 88, 117, 0.04);
    transform: rotate(45deg);
    pointer-events: none;
    animation: floatShape 8s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(-20px);
    }
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.about-home-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.about-home-section .section-tag i {
    font-size: 12px;
}

.about-home-section .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-home-section .section-title .highlight {
    background: linear-gradient(135deg, #1B5875 0%, #2D8242 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   3. ABOUT TEXT
   ================================================================ */
.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
    max-width: 540px;
}

/* ================================================================
   4. ABOUT FEATURES LIST
   ================================================================ */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0F172A;
    padding: 8px 12px 8px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
}

.feature-item:hover {
    background: rgba(27, 88, 117, 0.04);
    transform: translateX(4px);
}

.feature-item i {
    color: #1B5875;
    font-size: 18px;
    background: rgba(27, 88, 117, 0.08);
    padding: 4px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item i.fa-check-circle {
    color: #2D8242;
    background: rgba(45, 130, 66, 0.08);
}

/* ================================================================
   5. ABOUT BUTTON
   ================================================================ */
.about-home-section .btn-primary {
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(27, 88, 117, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-home-section .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 88, 117, 0.35);
}

.about-home-section .btn-primary:active {
    transform: translateY(0);
}

.about-home-section .btn-primary i {
    font-size: 1rem;
}

/* ================================================================
   6. ABOUT IMAGE
   ================================================================ */
.about-home-section .col-lg-6:first-child {
    position: relative;
}

.about-home-section .col-lg-6:first-child img {
    width: 100%;
    height: auto;
    border-radius: 24px;               /* ✅ Curved image corners */
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-home-section .col-lg-6:first-child img:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.12);
}

/* ── Floating Badge on Image ── */
.about-image-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-image-badge .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1B5875, #2D8242);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
}

.about-image-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.about-image-badge .badge-text .label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748B;
}

.about-image-badge .badge-text .value {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
}

/* ================================================================
   7. ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-home-section .section-tag {
    animation: fadeInUp 0.6s ease both;
}

.about-home-section .section-title {
    animation: fadeInUp 0.6s ease 0.1s both;
}

.about-text {
    animation: fadeInUp 0.6s ease 0.15s both;
}

.about-features {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.about-home-section .btn-primary {
    animation: fadeInUp 0.6s ease 0.25s both;
}

/* ================================================================
   8. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .about-home-section {
        padding: 60px 0 40px;
        border-radius: 30px 30px 0 0;
        margin: 0 12px;
    }

    .about-home-section .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 6px 10px 6px 6px;
    }

    .about-home-section .col-lg-6:first-child {
        margin-bottom: 32px;
    }

    .about-home-section .col-lg-6:first-child img {
        border-radius: 20px;
    }

    .about-image-badge {
        bottom: -5px;
        right: 10px;
        padding: 10px 16px;
    }

    .about-image-badge .badge-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .about-image-badge .badge-text .value {
        font-size: 0.85rem;
    }
}

/* ================================================================
   9. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .about-home-section {
        padding: 40px 0 30px;
        border-radius: 24px 24px 0 0;
        margin: 0 8px;
    }

    .about-home-section .section-title {
        font-size: 1.6rem;
    }

    .about-home-section .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 6px 12px 6px 8px;
    }

    .feature-item i {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .about-home-section .btn-primary {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .about-home-section .col-lg-6:first-child img {
        border-radius: 16px;
    }

    .about-image-badge {
        display: none;
    }
}

/* ================================================================
   10. RESPONSIVE - EXTRA SMALL (320px)
   ================================================================ */
@media (max-width: 380px) {
    .about-home-section {
        padding: 28px 0 20px;
        border-radius: 16px 16px 0 0;
        margin: 0 4px;
    }

    .about-home-section .section-title {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.82rem;
    }

    .feature-item {
        font-size: 0.75rem;
        padding: 4px 10px 4px 6px;
    }

    .feature-item i {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .about-home-section .btn-primary {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
} 

/* ================================================================
   🌐 GLOBAL BACKGROUND - MUTED COLOR (#F8FAFC)
   ================================================================
   All sections use consistent muted background
   ================================================================ */

/* ── Body Background ── */
body {
    background-color: #F8FAFC !important;   /* ✅ Muted Color */
}

/* ── All Sections ── */
section {
    background-color: #F8FAFC !important;
}

/* ── Hero Section Override ── */
.hero-section {
    background: #F8FAFC !important;
    background-image: none !important;
}

/* ── Trust Section ── */
.trust-section {
    background: #F8FAFC !important;
}

/* ── About Home Section ── */
.about-home-section {
    background: #F8FAFC !important;
}

/* ── Services Section ── */
.services-home-section {
    background: #F8FAFC !important;
}

/* ── Process Section ── */
.process-section {
    background: #F8FAFC !important;
}

/* ── Why Choose Section ── */
.why-choose-section {
    background: #F8FAFC !important;
}

/* ── Reviews Section ── */
.reviews-section {
    background: #F8FAFC !important;
}

/* ── CTA Section (Keep Dark) ── */
.cta-section {
    background: #0F172A !important;   /* Dark Navy - Keep as is */
}

/* ── Inner Hero Pages ── */
.inner-hero {
    background: #0F172A !important;   /* Dark Navy - Keep as is */
}

/* ── Service Detail Hero ── */
.service-hero {
    background: #0F172A !important;   /* Dark Navy - Keep as is */
}

/* ── Footer (Keep Dark) ── */
.site-footer {
    background: #0F172A !important;   /* Dark Navy - Keep as is */
}

/* ── Blog Pages ── */
.blog-listing,
.blog-single {
    background: #F8FAFC !important;
}

/* ── Contact Page ── */
.contact-section {
    background: #F8FAFC !important;
}

/* ── Privacy Policy ── */
.privacy-content {
    background: #F8FAFC !important;
}
/* ================================================================
   📦 TRUST CURVED SIDE CONTAINER WRAPPER
   ================================================================ */

.trust-container-wrapper {
    margin: 0 24px 20px 24px;          /* Space from edges */
    padding: 8px;                       /* Inner padding */
    border-radius: 32px;                /* ✅ Curved corners */
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.03), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

/* ── Inner Glow/Border ── */
.trust-container-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ── Trust Section Inside Container ── */
.trust-container-wrapper .trust-section {
    background: #FFFFFF;
    border-radius: 24px;                /* ✅ Inner curve */
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ── Remove extra backgrounds ── */
.trust-container-wrapper .trust-section::before,
.trust-container-wrapper .trust-section::after {
    display: none;
}

.trust-container-wrapper .trust-section .section-title {
    color: #0F172A;
}

/* ================================================================
   📱 RESPONSIVE
   ================================================================ */

@media (max-width: 991px) {
    .trust-container-wrapper {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .trust-container-wrapper .trust-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .trust-container-wrapper .trust-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .trust-container-wrapper {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .trust-container-wrapper .trust-section {
        padding: 28px 16px 24px;
        border-radius: 14px;
    }

    .trust-container-wrapper .trust-section .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 380px) {
    .trust-container-wrapper {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .trust-container-wrapper .trust-section {
        padding: 20px 12px 18px;
        border-radius: 11px;
    }

    .trust-container-wrapper .trust-section .section-title {
        font-size: 1.3rem;
    }
}
/* ================================================================
   📦 SERVICES SECTION - PROFESSIONAL MODERN STYLING
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.services-container-wrapper {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.services-container-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ── Services Section Inside Container ── */
.services-container-wrapper .services-home-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.services-container-wrapper .services-home-section::before,
.services-container-wrapper .services-home-section::after {
    display: none;
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.services-container-wrapper .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.services-container-wrapper .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.services-container-wrapper .section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================================
   3. SERVICE CARDS
   ================================================================ */
.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(27, 88, 117, 0.1);
}

/* ── Service Image ── */
.service-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 60%;
    background: #F1F5F9;
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

/* ── Service Overlay with Icon ── */
.service-overlay {
    position: absolute;
    bottom: -2px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.service-overlay .service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FFFFFF;
    background: linear-gradient(135deg, #1B5875, #2A6F93);
}

/* Individual icon colors */
.service-card:nth-child(2) .service-overlay .service-icon {
    background: linear-gradient(135deg, #2D8242, #3A9D54);
}
.service-card:nth-child(3) .service-overlay .service-icon {
    background: linear-gradient(135deg, #0F172A, #1B5875);
}
.service-card:nth-child(4) .service-overlay .service-icon {
    background: linear-gradient(135deg, #1B5875, #2D8242);
}
.service-card:nth-child(5) .service-overlay .service-icon {
    background: linear-gradient(135deg, #2D8242, #1B5875);
}

/* ── Service Body ── */
.service-body {
    padding: 24px 20px 20px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #1B5875;
}

.service-description {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ── Service Link ── */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1B5875;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1B5875, #2D8242);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: #1B5875;
}

.service-link:hover::after {
    width: 100%;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ================================================================
   4. VIEW ALL BUTTON
   ================================================================ */
.services-container-wrapper .btn-primary {
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(27, 88, 117, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-container-wrapper .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 88, 117, 0.35);
}

.services-container-wrapper .btn-primary:active {
    transform: translateY(0);
}

/* ================================================================
   5. RESPONSIVE - TABLET (max-width: 991px)
   ================================================================ */
@media (max-width: 991px) {
    .services-container-wrapper {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .services-container-wrapper .services-home-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .services-container-wrapper .section-title {
        font-size: 2rem;
    }

    .services-container-wrapper .section-subtitle {
        font-size: 0.95rem;
    }

    .service-image-wrapper {
        padding-top: 55%;
    }

    .service-body {
        padding: 20px 16px 16px;
    }
}

/* ================================================================
   6. RESPONSIVE - MOBILE (max-width: 576px)
   ================================================================ */
@media (max-width: 576px) {
    .services-container-wrapper {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .services-container-wrapper .services-home-section {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .services-container-wrapper .section-title {
        font-size: 1.6rem;
    }

    .services-container-wrapper .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .services-container-wrapper .section-subtitle {
        font-size: 0.85rem;
    }

    .service-card {
        border-radius: 16px;
    }

    .service-image-wrapper {
        padding-top: 50%;
    }

    .service-overlay {
        left: 14px;
        padding: 10px 14px;
        border-radius: 12px;
    }

    .service-overlay .service-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 10px;
    }

    .service-body {
        padding: 16px 14px 14px;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.8rem;
    }

    .service-link {
        font-size: 0.8rem;
    }

    .services-container-wrapper .btn-primary {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

/* ================================================================
   7. RESPONSIVE - EXTRA SMALL (max-width: 370px)
   ================================================================ */
@media (max-width: 370px) {
    .services-container-wrapper {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .services-container-wrapper .services-home-section {
        padding: 20px 10px 18px;
        border-radius: 11px;
    }

    .services-container-wrapper .section-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }

    .services-container-wrapper .section-tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .services-container-wrapper .section-subtitle {
        font-size: 0.75rem;
    }

    .service-card {
        border-radius: 14px;
    }

    .service-image-wrapper {
        padding-top: 45%;
    }

    .service-overlay {
        left: 10px;
        padding: 8px 10px;
        border-radius: 10px;
        bottom: -1px;
    }

    .service-overlay .service-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 8px;
    }

    .service-body {
        padding: 12px 10px 10px;
    }

    .service-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .service-description {
        font-size: 0.72rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .service-link {
        font-size: 0.72rem;
        gap: 4px;
    }

    .service-link i {
        font-size: 10px;
    }

    .services-container-wrapper .btn-primary {
        padding: 10px 20px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .services-container-wrapper .btn-primary i {
        font-size: 0.75rem;
    }

    .row.g-4 {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 0.75rem;
    }
}
/* ================================================================
   📦 SERVICE CARDS - INCREASED SIZE
   ================================================================ */

/* ── Desktop View ── */
.service-image-wrapper {
    padding-top: 75% !important;          /* ✅ Increased image height (was 60%) */
}

.service-body {
    padding: 28px 24px 24px !important;   /* ✅ More padding */
}

.service-title {
    font-size: 1.25rem !important;        /* ✅ Bigger title */
}

.service-description {
    font-size: 1rem !important;           /* ✅ Bigger description */
}

.service-link {
    font-size: 0.95rem !important;        /* ✅ Bigger link */
}

/* ── Tablet View (max-width: 991px) ── */
@media (max-width: 991px) {
    .service-image-wrapper {
        padding-top: 65% !important;      /* ✅ Increased (was 55%) */
    }
    
    .service-body {
        padding: 22px 18px 18px !important;
    }
    
    .service-title {
        font-size: 1.1rem !important;
    }
    
    .service-description {
        font-size: 0.9rem !important;
    }
}

/* ── Mobile View (max-width: 576px) ── */
@media (max-width: 576px) {
    .service-image-wrapper {
        padding-top: 70% !important;      /* ✅ Bigger image (was 50%) */
    }
    
    .service-body {
        padding: 18px 16px 16px !important;
    }
    
    .service-title {
        font-size: 1.05rem !important;
    }
    
    .service-description {
        font-size: 0.88rem !important;
    }
    
    .service-link {
        font-size: 0.85rem !important;
    }
}

/* ── Extra Small (max-width: 370px) ── */
@media (max-width: 370px) {
    .service-image-wrapper {
        padding-top: 60% !important;      /* ✅ Increased (was 45%) */
    }
    
    .service-body {
        padding: 14px 12px 12px !important;
    }
    
    .service-title {
        font-size: 0.95rem !important;
    }
    
    .service-description {
        font-size: 0.8rem !important;
    }
    
    .service-link {
        font-size: 0.78rem !important;
    }
}

/* ================================================================
   📦 PROCESS SECTION - PROFESSIONAL MODERN STYLING
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.process-container-wrapper {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.process-container-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ── Process Section Inside Container ── */
.process-container-wrapper .process-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ── Decorative Background Elements ── */
.process-container-wrapper .process-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.03), transparent 70%);
    pointer-events: none;
}

.process-container-wrapper .process-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 130, 66, 0.02), transparent 70%);
    pointer-events: none;
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.process-container-wrapper .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.process-container-wrapper .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.process-container-wrapper .section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 550px;
    margin: 0 auto;
}

/* ================================================================
   3. PROCESS CARDS
   ================================================================ */
.process-grid {
    position: relative;
    z-index: 2;
}

.process-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 24px 32px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

/* ── Hover Effect ── */
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(27, 88, 117, 0.1);
}

/* ── Step Connector (Desktop) ── */
.process-grid .col-md-4:not(:last-child) .process-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #1B5875, rgba(27, 88, 117, 0.1));
    transform: translateY(-50%);
    z-index: 1;
}

.process-grid .col-md-4:last-child .process-card::after {
    display: none;
}

/* ── Step Indicator (Mobile) ── */
.step-indicator {
    display: none;
}

/* ── Process Number ── */
.process-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.8;
    letter-spacing: -1px;
}

/* ── Process Icon ── */
.process-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.06), rgba(45, 130, 66, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #1B5875;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(27, 88, 117, 0.06);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, #1B5875, #2A6F93);
    color: #FFFFFF;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 36px rgba(27, 88, 117, 0.2);
    border-color: transparent;
}

/* ── Card Content ── */
.process-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.process-card:hover h4 {
    color: #1B5875;
}

.process-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Card Bottom Glow ── */
.process-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1B5875, transparent);
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 2px;
}

.process-card:hover::before {
    opacity: 1;
    width: 80%;
}

/* ── Step Number Badge ── */
.process-card .step-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(27, 88, 117, 0.15);
    background: rgba(27, 88, 117, 0.04);
    padding: 2px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* ================================================================
   4. CTA BUTTON
   ================================================================ */
.process-container-wrapper .btn-primary {
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(27, 88, 117, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.process-container-wrapper .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(27, 88, 117, 0.35);
}

.process-container-wrapper .btn-primary:active {
    transform: translateY(0);
}

/* ================================================================
   5. RESPONSIVE - TABLET (max-width: 991px)
   ================================================================ */
@media (max-width: 991px) {
    .process-container-wrapper {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .process-container-wrapper .process-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .process-container-wrapper .section-title {
        font-size: 2rem;
    }

    .process-container-wrapper .section-subtitle {
        font-size: 0.95rem;
    }

    .process-grid .col-md-4:not(:last-child) .process-card::after {
        display: none;
    }

    .step-indicator {
        display: none;
    }

    .process-card {
        padding: 28px 20px 24px;
        border-radius: 16px;
    }

    .process-number {
        font-size: 2.8rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ================================================================
   6. RESPONSIVE - MOBILE (max-width: 576px)
   ================================================================ */
@media (max-width: 576px) {
    .process-container-wrapper {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .process-container-wrapper .process-section {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .process-container-wrapper .section-title {
        font-size: 1.6rem;
    }

    .process-container-wrapper .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .process-container-wrapper .section-subtitle {
        font-size: 0.85rem;
    }

    .process-card {
        padding: 24px 16px 20px;
        border-radius: 14px;
    }

    .process-number {
        font-size: 2.4rem;
    }

    .process-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .process-card h4 {
        font-size: 1rem;
    }

    .process-card p {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .process-container-wrapper .btn-primary {
        padding: 12px 28px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .step-indicator {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 12px;
    }

    .step-indicator span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #E2E8F0;
        transition: all 0.3s ease;
    }

    .process-card:hover .step-indicator span {
        background: #1B5875;
    }

    .process-card .step-badge {
        display: none;
    }
}

/* ================================================================
   7. RESPONSIVE - EXTRA SMALL (max-width: 370px)
   ================================================================ */
@media (max-width: 370px) {
    .process-container-wrapper {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .process-container-wrapper .process-section {
        padding: 20px 10px 18px;
        border-radius: 11px;
    }

    .process-container-wrapper .section-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }

    .process-container-wrapper .section-tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .process-container-wrapper .section-subtitle {
        font-size: 0.75rem;
    }

    .process-card {
        padding: 18px 12px 16px;
        border-radius: 12px;
    }

    .process-number {
        font-size: 2rem;
    }

    .process-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .process-card h4 {
        font-size: 0.9rem;
    }

    .process-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .process-container-wrapper .btn-primary {
        padding: 10px 20px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .process-container-wrapper .btn-primary i {
        font-size: 0.75rem;
    }

    .row.g-4 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.5rem;
    }
}

/* ================================================================
   📦 CTA SECTION - IMPROVED PROFESSIONAL STYLING
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.cta-wrapper-main {
    margin: 0 24px 0 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.06), rgba(45, 130, 66, 0.03));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.cta-wrapper-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.15), rgba(45, 130, 66, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ================================================================
   2. CTA SECTION
   ================================================================ */
.cta-section {
    background: linear-gradient(165deg, #0F172A 0%, #1B5875 50%, #2A6F93 100%);
    border-radius: 24px;
    padding: 70px 50px 55px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── Background Glow ── */
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 130, 66, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.06), transparent 70%);
    pointer-events: none;
}

/* ================================================================
   3. DECORATIVE FLOATING ELEMENTS
   ================================================================ */
.cta-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #FFFFFF;
}

.cta-float-1 {
    top: 10%;
    right: 8%;
    animation: floatAnim 6s ease-in-out infinite;
}

.cta-float-2 {
    bottom: 15%;
    left: 5%;
    animation: floatAnim 8s ease-in-out infinite reverse;
    font-size: 45px;
}

.cta-float-3 {
    top: 50%;
    right: 3%;
    animation: floatAnim 7s ease-in-out infinite 1s;
    font-size: 35px;
}

.cta-float-4 {
    bottom: 25%;
    right: 20%;
    animation: floatAnim 5s ease-in-out infinite 0.5s;
    font-size: 40px;
}

@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ================================================================
   4. CTA CONTENT
   ================================================================ */
.cta-content {
    position: relative;
    z-index: 2;
}

/* ── Badge ── */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-badge i {
    font-size: 12px;
}

/* ── Title ── */
.cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.cta-title .highlight {
    background: linear-gradient(135deg, #4ADE80 0%, #2D8242 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Description ── */
.cta-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

/* ================================================================
   5. CTA BUTTONS
   ================================================================ */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-buttons .btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

/* ── Primary Button ── */
.cta-btn-primary {
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%) !important;
    color: #1B5875 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* ── Success Button ── */
.cta-btn-success {
    background: linear-gradient(135deg, #2D8242 0%, #3A9D54 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 32px rgba(45, 130, 66, 0.3);
}

.cta-btn-success:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(45, 130, 66, 0.4);
}

.cta-buttons .btn i {
    font-size: 1rem;
}

/* ================================================================
   6. TRUST BADGES
   ================================================================ */
.cta-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.trust-badge i {
    color: rgba(74, 222, 128, 0.6);
    font-size: 14px;
}

.trust-badge-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.06);
}

/* ================================================================
   7. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .cta-wrapper-main {
        margin: 0 16px 0 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .cta-section {
        padding: 50px 32px 40px;
        border-radius: 18px;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-float {
        display: none;
    }

    .cta-trust-badges {
        gap: 14px;
        flex-wrap: wrap;
    }

    .trust-badge-divider {
        display: none;
    }
}

/* ================================================================
   8. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .cta-wrapper-main {
        margin: 0 10px 0 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .cta-section {
        padding: 36px 20px 30px;
        border-radius: 14px;
    }

    .cta-title {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
    }

    .cta-title br {
        display: none;
    }

    .cta-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .cta-badge {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: 6px;
        padding-top: 20px;
    }

    .trust-badge {
        font-size: 0.75rem;
    }
}

/* ================================================================
   9. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .cta-wrapper-main {
        margin: 0 6px 0 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .cta-section {
        padding: 28px 14px 24px;
        border-radius: 11px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-description {
        font-size: 0.8rem;
    }

    .cta-badge {
        font-size: 0.5rem;
        padding: 3px 10px 3px 8px;
        letter-spacing: 1px;
    }

    .cta-buttons .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .cta-buttons .btn i {
        font-size: 0.75rem;
    }

    .trust-badge {
        font-size: 0.65rem;
    }

    .trust-badge i {
        font-size: 12px;
    }
}
/* ================================================================
   📦 REVIEWS SECTION - PROFESSIONAL MODERN STYLING
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.reviews-wrapper-main {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.reviews-wrapper-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ── Reviews Section Inner ── */
.reviews-wrapper-main .reviews-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ── Decorative Background ── */
.reviews-wrapper-main .reviews-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.03), transparent 70%);
    pointer-events: none;
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.reviews-wrapper-main .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.reviews-wrapper-main .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.reviews-wrapper-main .section-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-wrapper-main .section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 580px;
    margin: 0 auto;
}

/* ================================================================
   3. REVIEW CARDS
   ================================================================ */
.review-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 28px 28px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    animation: reviewFadeUp 0.6s ease both;
}

@keyframes reviewFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Hover Effect ── */
.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(27, 88, 117, 0.1);
}

/* ── Top Gradient Border ── */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B5875, #2D8242);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.review-card:hover::before {
    opacity: 1;
}

/* ── Quote Icon ── */
.review-quote-icon {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.5rem;
    color: rgba(27, 88, 117, 0.06);
    line-height: 1;
    transition: all 0.4s ease;
}

.review-card:hover .review-quote-icon {
    color: rgba(27, 88, 117, 0.12);
    transform: scale(1.1);
}

/* ── Stars ── */
.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.review-stars i {
    font-size: 16px;
    color: #E2E8F0;
    transition: all 0.3s ease;
}

.review-stars i.filled {
    color: #F59E0B;
}

.review-card:hover .review-stars i.filled {
    animation: starPop 0.3s ease;
}

@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* ── Review Text ── */
.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 18px;
    min-height: 70px;
    position: relative;
    z-index: 1;
}

/* ── Review Author ── */
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.3);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1B5875, #2A6F93);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(27, 88, 117, 0.15);
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-author-info strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
}

.review-author-info span {
    font-size: 0.75rem;
    color: #94A3BB;
    font-weight: 500;
}

/* ── Card Hover Effects ── */
.review-card:hover .review-avatar {
    background: linear-gradient(135deg, #2D8242, #3A9D54);
    transform: scale(1.05);
}

.review-card:hover .review-author-info strong {
    color: #1B5875;
}

/* ================================================================
   4. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .reviews-wrapper-main {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .reviews-wrapper-main .reviews-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .reviews-wrapper-main .section-title {
        font-size: 2rem;
    }

    .reviews-wrapper-main .section-subtitle {
        font-size: 0.95rem;
    }

    .review-card {
        padding: 28px 24px 24px;
        border-radius: 16px;
    }

    .review-text {
        font-size: 0.9rem;
        min-height: auto;
    }

    .review-quote-icon {
        font-size: 2rem;
        top: 12px;
        right: 16px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}

/* ================================================================
   5. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .reviews-wrapper-main {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .reviews-wrapper-main .reviews-section {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .reviews-wrapper-main .section-title {
        font-size: 1.6rem;
    }

    .reviews-wrapper-main .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .reviews-wrapper-main .section-subtitle {
        font-size: 0.85rem;
    }

    .review-card {
        padding: 24px 18px 20px;
        border-radius: 14px;
    }

    .review-text {
        font-size: 0.85rem;
        min-height: auto;
    }

    .review-stars i {
        font-size: 14px;
    }

    .review-quote-icon {
        font-size: 1.6rem;
        top: 10px;
        right: 14px;
    }

    .review-avatar {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .review-author-info strong {
        font-size: 0.85rem;
    }

    .review-author-info span {
        font-size: 0.7rem;
    }

    .review-author {
        padding-top: 12px;
        gap: 12px;
    }

    .reviews-grid .col-md-4 {
        margin-bottom: 0;
    }
}

/* ================================================================
   6. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .reviews-wrapper-main {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .reviews-wrapper-main .reviews-section {
        padding: 20px 10px 18px;
        border-radius: 11px;
    }

    .reviews-wrapper-main .section-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }

    .reviews-wrapper-main .section-tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .reviews-wrapper-main .section-subtitle {
        font-size: 0.75rem;
    }

    .review-card {
        padding: 18px 14px 16px;
        border-radius: 12px;
    }

    .review-text {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .review-stars i {
        font-size: 12px;
    }

    .review-stars {
        gap: 2px;
        margin-bottom: 10px;
    }

    .review-quote-icon {
        font-size: 1.2rem;
        top: 8px;
        right: 10px;
    }

    .review-avatar {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .review-author-info strong {
        font-size: 0.78rem;
    }

    .review-author-info span {
        font-size: 0.65rem;
    }

    .review-author {
        padding-top: 10px;
        gap: 10px;
    }

    .row.g-4 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.5rem;
    }
}

/* ================================================================
   📦 OUR WORK SECTION - CITY BASED SERVICES
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.work-wrapper-main {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.work-wrapper-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ── Section Inner ── */
.work-wrapper-main .work-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ── Decorative Background ── */
.work-wrapper-main .work-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.03), transparent 70%);
    pointer-events: none;
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.work-wrapper-main .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.work-wrapper-main .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.work-wrapper-main .section-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-wrapper-main .section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 580px;
    margin: 0 auto;
}

/* ================================================================
   3. CITY CARDS
   ================================================================ */
.city-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    background: #FFFFFF;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(27, 88, 117, 0.1);
}

/* ── Image Wrapper ── */
.city-image-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 65%;
    background: #F1F5F9;
}

.city-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover .city-image {
    transform: scale(1.08);
}

/* ── City Overlay ── */
.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(27, 88, 117, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover .city-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3) 0%, rgba(27, 88, 117, 0.5) 100%);
}

.city-content {
    text-align: center;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover .city-content {
    transform: translateY(0);
}

/* ── City Icon ── */
.city-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.city-card:hover .city-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* ── City Name ── */
.city-name {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

/* ── City Services ── */
.city-services {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ── City Badge ── */
.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.city-badge i {
    color: #4ADE80;
}

/* ================================================================
   4. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .work-wrapper-main {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .work-wrapper-main .work-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .work-wrapper-main .section-title {
        font-size: 2rem;
    }

    .work-wrapper-main .section-subtitle {
        font-size: 0.95rem;
    }

    .city-image-wrapper {
        padding-top: 55%;
    }

    .city-name {
        font-size: 1.6rem;
    }

    .city-services {
        font-size: 0.8rem;
    }

    .city-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ================================================================
   5. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .work-wrapper-main {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .work-wrapper-main .work-section {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .work-wrapper-main .section-title {
        font-size: 1.6rem;
    }

    .work-wrapper-main .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .work-wrapper-main .section-subtitle {
        font-size: 0.85rem;
    }

    .city-card {
        border-radius: 16px;
    }

    .city-image-wrapper {
        padding-top: 50%;
    }

    .city-overlay {
        padding: 20px;
    }

    .city-name {
        font-size: 1.4rem;
    }

    .city-services {
        font-size: 0.75rem;
    }

    .city-services br {
        display: none;
    }

    .city-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .city-badge {
        font-size: 0.6rem;
        padding: 3px 12px;
    }
}

/* ================================================================
   6. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .work-wrapper-main {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .work-wrapper-main .work-section {
        padding: 20px 10px 18px;
        border-radius: 11px;
    }

    .work-wrapper-main .section-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }

    .work-wrapper-main .section-tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .work-wrapper-main .section-subtitle {
        font-size: 0.75rem;
    }

    .city-card {
        border-radius: 14px;
    }

    .city-image-wrapper {
        padding-top: 45%;
    }

    .city-overlay {
        padding: 14px;
    }

    .city-name {
        font-size: 1.1rem;
    }

    .city-services {
        font-size: 0.65rem;
        line-height: 1.4;
    }

    .city-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .city-badge {
        font-size: 0.5rem;
        padding: 2px 10px;
    }

    .row.g-4 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.5rem;
    }
}

/* ================================================================
   📱 MOBILE VIEW - MAXIMIZE CARD SIZE
   ================================================================ */

@media (max-width: 576px) {
    .city-image-wrapper {
        padding-top: 75% !important;          /* ✅ Image height increased (was 50%) */
    }

    .city-overlay {
        padding: 30px 24px !important;        /* ✅ More padding inside */
    }

    .city-name {
        font-size: 1.8rem !important;          /* ✅ Bigger city name */
        margin-bottom: 8px !important;
    }

    .city-services {
        font-size: 0.9rem !important;          /* ✅ Bigger service text */
        line-height: 1.8 !important;
        margin-bottom: 16px !important;
    }

    .city-services br {
        display: block !important;             /* ✅ Show line break */
    }

    .city-icon {
        width: 56px !important;                /* ✅ Bigger icon */
        height: 56px !important;
        font-size: 24px !important;
        margin-bottom: 14px !important;
    }

    .city-badge {
        font-size: 0.75rem !important;         /* ✅ Bigger badge text */
        padding: 6px 18px !important;
    }

    .city-card {
        border-radius: 18px !important;
        margin-bottom: 12px !important;
    }

    .city-card:last-child {
        margin-bottom: 0 !important;
    }

    .work-wrapper-main .work-section {
        padding: 28px 12px 24px !important;
    }

    .work-grid .col-md-6 {
        padding: 0 6px !important;
    }
}

/* ================================================================
   📱 EXTRA SMALL (370px) - EVEN BIGGER
   ================================================================ */
@media (max-width: 370px) {
    .city-image-wrapper {
        padding-top: 80% !important;          /* ✅ Maximum image height */
    }

    .city-overlay {
        padding: 24px 18px !important;
    }

    .city-name {
        font-size: 1.5rem !important;
    }

    .city-services {
        font-size: 0.78rem !important;
        line-height: 1.6 !important;
    }

    .city-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
    }

    .city-badge {
        font-size: 0.65rem !important;
        padding: 4px 14px !important;
    }

    .city-card {
        border-radius: 16px !important;
    }
}
/* ================================================================
   📦 ABOUT PAGE - PROFESSIONAL MODERN STYLING
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER (Shared)
   ================================================================ */
.about-wrapper-main {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.about-wrapper-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-wrapper-main .inner-hero,
.about-wrapper-main .company-intro,
.about-wrapper-main .mission-vision,
.about-wrapper-main .why-choose-about,
.about-wrapper-main .cta-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ================================================================
   2. INNER HERO (About Hero)
   ================================================================ */
.about-wrapper-main .inner-hero {
    background: linear-gradient(165deg, #0F172A 0%, #1B5875 50%, #2A6F93 100%);
    padding: 80px 50px 60px;
    border-radius: 24px;
    position: relative;
}

.about-wrapper-main .inner-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.about-wrapper-main .inner-hero .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-wrapper-main .inner-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-wrapper-main .inner-hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================================================================
   3. SECTION HEADER (Shared)
   ================================================================ */
.about-wrapper-main .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.about-wrapper-main .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.about-wrapper-main .section-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-wrapper-main .section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 580px;
    margin: 0 auto;
}

/* ================================================================
   4. COMPANY INTRODUCTION
   ================================================================ */
.company-intro .intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

/* ── Intro Stats ── */
.intro-stats {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    border-top: 2px solid rgba(226, 232, 240, 0.5);
}

.intro-stat {
    display: flex;
    flex-direction: column;
}

.intro-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.intro-stat-label {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 500;
}

/* ── About Image ── */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper img:hover {
    transform: scale(1.02);
}

/* ── Image Badge ── */
.about-image-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1B5875, #2D8242);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
}

.about-image-badge div {
    display: flex;
    flex-direction: column;
}

.about-image-badge div span {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
}

.about-image-badge div small {
    font-size: 0.7rem;
    color: #64748B;
}

/* ================================================================
   5. MISSION & VISION CARDS
   ================================================================ */
.mission-card,
.vision-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 28px 32px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: all 0.4s ease;
}

.mission-card::before {
    background: linear-gradient(90deg, #1B5875, #2A6F93);
}

.vision-card::before {
    background: linear-gradient(90deg, #2D8242, #3A9D54);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(27, 88, 117, 0.1);
}

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 1;
}

.mission-icon,
.vision-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.mission-icon {
    background: linear-gradient(135deg, #1B5875, #2A6F93);
    box-shadow: 0 8px 24px rgba(27, 88, 117, 0.15);
}

.vision-icon {
    background: linear-gradient(135deg, #2D8242, #3A9D54);
    box-shadow: 0 8px 24px rgba(45, 130, 66, 0.15);
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    transform: scale(1.08) translateY(-4px);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.mission-card p,
.vision-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

/* ================================================================
   6. WHY CHOOSE CARDS
   ================================================================ */
.why-about-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 24px 24px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
}

.why-about-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B5875, #2D8242);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.why-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
    border-color: rgba(27, 88, 117, 0.1);
}

.why-about-card:hover::before {
    width: 60%;
}

.why-about-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(27, 88, 117, 0.06);
    color: #1B5875;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    transition: all 0.4s ease;
}

.why-about-card:hover .why-about-icon {
    background: linear-gradient(135deg, #1B5875, #2A6F93);
    color: #FFFFFF;
    transform: scale(1.05);
}

.why-about-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.why-about-card p {
    font-size: 0.85rem;
    color: #64748B;
    margin: 0;
}

/* ================================================================
   7. CTA SECTION (About Page)
   ================================================================ */
.about-wrapper-main .cta-section {
    background: linear-gradient(165deg, #0F172A 0%, #1B5875 50%, #2A6F93 100%);
    padding: 60px 40px 50px;
    border-radius: 24px;
}

.about-wrapper-main .cta-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 16px;
}

.about-wrapper-main .cta-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.about-wrapper-main .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.about-wrapper-main .cta-buttons .btn {
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-wrapper-main .cta-buttons .btn-primary {
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    color: #1B5875;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-wrapper-main .cta-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.about-wrapper-main .cta-buttons .btn-success {
    background: linear-gradient(135deg, #2D8242 0%, #3A9D54 100%);
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(45, 130, 66, 0.3);
}

.about-wrapper-main .cta-buttons .btn-success:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(45, 130, 66, 0.4);
}

/* ================================================================
   8. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .about-wrapper-main {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .about-wrapper-main .inner-hero,
    .about-wrapper-main .company-intro,
    .about-wrapper-main .mission-vision,
    .about-wrapper-main .why-choose-about,
    .about-wrapper-main .cta-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .about-wrapper-main .inner-hero {
        padding: 60px 30px 50px;
    }

    .about-wrapper-main .inner-hero-title {
        font-size: 2.4rem;
    }

    .about-wrapper-main .section-title {
        font-size: 2rem;
    }

    .about-wrapper-main .section-subtitle {
        font-size: 0.95rem;
    }

    .intro-stats {
        justify-content: center;
        gap: 32px;
    }

    .about-image-badge {
        bottom: 10px;
        right: 10px;
        padding: 10px 16px;
    }

    .about-wrapper-main .cta-title {
        font-size: 2rem;
    }
}

/* ================================================================
   9. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .about-wrapper-main {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .about-wrapper-main .inner-hero,
    .about-wrapper-main .company-intro,
    .about-wrapper-main .mission-vision,
    .about-wrapper-main .why-choose-about,
    .about-wrapper-main .cta-section {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .about-wrapper-main .inner-hero {
        padding: 40px 20px 32px;
    }

    .about-wrapper-main .inner-hero-title {
        font-size: 1.8rem;
    }

    .about-wrapper-main .inner-hero-description {
        font-size: 0.95rem;
    }

    .about-wrapper-main .section-title {
        font-size: 1.6rem;
    }

    .about-wrapper-main .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .about-wrapper-main .section-subtitle {
        font-size: 0.85rem;
    }

    .company-intro .intro-text {
        font-size: 0.95rem;
    }

    .intro-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .intro-stat-number {
        font-size: 1.4rem;
    }

    .intro-stat-label {
        font-size: 0.75rem;
    }

    .about-image-badge {
        display: none;
    }

    .about-image-wrapper img {
        border-radius: 14px;
    }

    .mission-card,
    .vision-card {
        padding: 24px 18px 20px;
        border-radius: 14px;
    }

    .mission-icon,
    .vision-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.1rem;
    }

    .mission-card p,
    .vision-card p {
        font-size: 0.85rem;
    }

    .why-about-card {
        padding: 20px 16px 18px;
        border-radius: 14px;
    }

    .why-about-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .why-about-card h4 {
        font-size: 0.95rem;
    }

    .why-about-card p {
        font-size: 0.8rem;
    }

    .about-wrapper-main .cta-title {
        font-size: 1.6rem;
    }

    .about-wrapper-main .cta-description {
        font-size: 0.9rem;
    }

    .about-wrapper-main .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .about-wrapper-main .cta-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* ================================================================
   10. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .about-wrapper-main {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .about-wrapper-main .inner-hero,
    .about-wrapper-main .company-intro,
    .about-wrapper-main .mission-vision,
    .about-wrapper-main .why-choose-about,
    .about-wrapper-main .cta-section {
        padding: 20px 10px 18px;
        border-radius: 11px;
    }

    .about-wrapper-main .inner-hero {
        padding: 30px 14px 24px;
    }

    .about-wrapper-main .inner-hero-title {
        font-size: 1.4rem;
    }

    .about-wrapper-main .inner-hero-description {
        font-size: 0.85rem;
    }

    .about-wrapper-main .section-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }

    .about-wrapper-main .section-tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .about-wrapper-main .section-subtitle {
        font-size: 0.75rem;
    }

    .company-intro .intro-text {
        font-size: 0.85rem;
    }

    .intro-stats {
        gap: 16px;
    }

    .intro-stat-number {
        font-size: 1.2rem;
    }

    .intro-stat-label {
        font-size: 0.65rem;
    }

    .mission-card,
    .vision-card {
        padding: 18px 12px 16px;
        border-radius: 12px;
    }

    .mission-icon,
    .vision-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 0.95rem;
    }

    .mission-card p,
    .vision-card p {
        font-size: 0.78rem;
        line-height: 1.5;
    }

    .why-about-card {
        padding: 16px 10px 14px;
        border-radius: 12px;
    }

    .why-about-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .why-about-card h4 {
        font-size: 0.85rem;
    }

    .why-about-card p {
        font-size: 0.72rem;
    }

    .about-wrapper-main .cta-title {
        font-size: 1.2rem;
    }

    .about-wrapper-main .cta-description {
        font-size: 0.8rem;
    }

    .about-wrapper-main .cta-buttons .btn {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
}
/* ================================================================
   📦 SERVICE DETAIL PAGE - PROFESSIONAL MODERN STYLING (FIXED)
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.service-detail-wrapper {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.service-detail-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-detail-wrapper .service-hero,
.service-detail-wrapper .service-overview,
.service-detail-wrapper .why-service-detail {
    background: #FFFFFF;
    border-radius: 24px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ================================================================
   2. SERVICE HERO - MAXIMIZED SIZE + HEADING FIX
   ================================================================ */
.service-detail-wrapper .service-hero {
    background: linear-gradient(165deg, #0F172A 0%, #1B5875 50%, #2A6F93 100%);
    padding: 80px 50px 90px !important;     /* ✅ Bottom padding maximized */
    border-radius: 24px;
    position: relative;
}

/* ── Decorative Background ── */
.service-detail-wrapper .service-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.service-detail-wrapper .service-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 130, 66, 0.05), transparent 70%);
    pointer-events: none;
}

/* ── Hero Content (Ensures Heading Shows) ── */
.service-detail-wrapper .service-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail-wrapper .service-hero .row {
    position: relative;
    z-index: 2;
}

/* ── Section Tag ── */
.service-detail-wrapper .service-hero .section-tag {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 18px 6px 14px !important;
    border-radius: 50px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* ── Hero Title ── */
.service-hero-title {
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
    letter-spacing: -1px !important;
    display: block !important;           /* ✅ Ensures heading shows */
}

.service-hero-title .highlight {
    background: linear-gradient(135deg, #4ADE80, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Description ── */
.service-hero-description {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 600px !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
    display: block !important;           /* ✅ Ensures description shows */
}

/* ── Hero Button ── */
.service-detail-wrapper .service-hero .btn-primary {
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%) !important;
    color: #1B5875 !important;
    border: none !important;
    padding: 14px 36px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.service-detail-wrapper .service-hero .btn-primary:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25) !important;
}

/* ── Floating Badge ── */
.service-hero .floating-badge {
    position: absolute;
    bottom: 40px;
    right: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-hero .floating-badge i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.service-hero .floating-badge div {
    display: flex;
    flex-direction: column;
}

.service-hero .floating-badge div span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
}

.service-hero .floating-badge div small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================================
   3. SECTION HEADER (Shared)
   ================================================================ */
.service-detail-wrapper .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.service-detail-wrapper .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-detail-wrapper .section-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   4. SERVICE OVERVIEW WITH IMAGE
   ================================================================ */
.service-detail-wrapper .service-overview {
    padding: 60px 40px 40px !important;
    border-radius: 24px;
}

.service-overview .overview-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 0;
}

/* ── Service Overview Image ── */
.service-overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-overview-image:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.12);
}

.service-overview-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* ── Image Overlay Icon ── */
.service-overview-image .image-overlay-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-overview-image .image-overlay-icon i {
    font-size: 24px;
    color: #1B5875;
}

.service-overview-image .image-overlay-icon span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0F172A;
}

/* ── Benefits Wrapper ── */
.benefits-wrapper {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.4s ease;
}

.benefits-wrapper:hover {
    border-color: rgba(27, 88, 117, 0.1);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
}

.benefits-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.benefits-title i {
    color: #1B5875;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:hover {
    transform: translateX(4px);
    color: #0F172A;
}

.benefits-list li i {
    color: #2D8242;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ================================================================
   5. WHY CHOOSE CARDS
   ================================================================ */
.service-detail-wrapper .why-service-detail {
    padding: 60px 40px 40px !important;
    border-radius: 24px;
}

.why-detail-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 24px 24px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
}

.why-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B5875, #2D8242);
    opacity: 0;
    transition: all 0.4s ease;
}

.why-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(27, 88, 117, 0.1);
}

.why-detail-card:hover::before {
    opacity: 1;
}

.why-detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(27, 88, 117, 0.06);
    color: #1B5875;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    transition: all 0.4s ease;
}

.why-detail-card:hover .why-detail-icon {
    background: linear-gradient(135deg, #1B5875, #2A6F93);
    color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(27, 88, 117, 0.15);
}

.why-detail-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.why-detail-card:hover h4 {
    color: #1B5875;
}

.why-detail-card p {
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* ================================================================
   6. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .service-detail-wrapper {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .service-detail-wrapper .service-hero {
        padding: 60px 30px 60px !important;
    }

    .service-hero-title {
        font-size: 2.4rem !important;
    }

    .service-hero-description {
        font-size: 1rem !important;
    }

    .service-detail-wrapper .service-overview,
    .service-detail-wrapper .why-service-detail {
        padding: 40px 24px 32px !important;
    }

    .service-detail-wrapper .section-title {
        font-size: 2rem;
    }

    .service-overview-image img {
        height: 250px;
    }

    .service-hero .floating-badge {
        display: none;
    }
}

/* ================================================================
   7. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .service-detail-wrapper {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .service-detail-wrapper .service-hero {
        padding: 40px 16px 50px !important;
        border-radius: 14px;
    }

    .service-hero-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
    }

    .service-hero-description {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    .service-detail-wrapper .service-hero .section-tag {
        font-size: 0.6rem !important;
        padding: 4px 14px 4px 10px !important;
    }

    .service-detail-wrapper .service-hero .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
    }

    .service-detail-wrapper .service-overview,
    .service-detail-wrapper .why-service-detail {
        padding: 28px 14px 24px !important;
        border-radius: 14px;
    }

    .service-detail-wrapper .section-title {
        font-size: 1.6rem;
    }

    .service-detail-wrapper .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .service-overview .overview-text {
        font-size: 0.9rem;
    }

    .service-overview-image {
        margin-top: 20px;
        border-radius: 14px;
    }

    .service-overview-image img {
        height: 200px;
        border-radius: 14px;
    }

    .service-overview-image .image-overlay-icon {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        border-radius: 10px;
    }

    .service-overview-image .image-overlay-icon i {
        font-size: 16px;
    }

    .service-overview-image .image-overlay-icon span {
        font-size: 0.7rem;
    }

    .benefits-wrapper {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .benefits-title {
        font-size: 1rem;
    }

    .benefits-list li {
        font-size: 0.85rem;
        padding: 8px 0;
        gap: 10px;
    }

    .benefits-list li i {
        font-size: 16px;
    }

    .why-detail-card {
        padding: 20px 16px 18px;
        border-radius: 14px;
    }

    .why-detail-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .why-detail-card h4 {
        font-size: 0.95rem;
    }

    .why-detail-card p {
        font-size: 0.8rem;
    }

    .service-hero .floating-badge {
        display: none;
    }
}

/* ================================================================
   8. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .service-detail-wrapper {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .service-detail-wrapper .service-hero {
        padding: 30px 12px 40px !important;
        border-radius: 11px;
    }

    .service-hero-title {
        font-size: 1.4rem !important;
        letter-spacing: -0.3px !important;
    }

    .service-hero-description {
        font-size: 0.8rem !important;
        line-height: 1.6 !important;
    }

    .service-detail-wrapper .service-hero .section-tag {
        font-size: 0.55rem !important;
        padding: 3px 10px 3px 8px !important;
    }

    .service-detail-wrapper .service-hero .btn-primary {
        padding: 10px 18px !important;
        font-size: 0.75rem !important;
    }

    .service-detail-wrapper .service-overview,
    .service-detail-wrapper .why-service-detail {
        padding: 20px 10px 18px !important;
        border-radius: 11px;
    }

    .service-detail-wrapper .section-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }

    .service-detail-wrapper .section-tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .service-overview .overview-text {
        font-size: 0.82rem;
        line-height: 1.6;
    }

    .service-overview-image {
        border-radius: 12px;
    }

    .service-overview-image img {
        height: 160px;
        border-radius: 12px;
    }

    .service-overview-image .image-overlay-icon {
        bottom: 8px;
        right: 8px;
        padding: 6px 10px;
        border-radius: 8px;
        gap: 6px;
    }

    .service-overview-image .image-overlay-icon i {
        font-size: 14px;
    }

    .service-overview-image .image-overlay-icon span {
        font-size: 0.6rem;
    }

    .benefits-wrapper {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .benefits-title {
        font-size: 0.9rem;
    }

    .benefits-list li {
        font-size: 0.78rem;
        padding: 6px 0;
        gap: 8px;
    }

    .benefits-list li i {
        font-size: 14px;
    }

    .why-detail-card {
        padding: 16px 10px 14px;
        border-radius: 12px;
    }

    .why-detail-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .why-detail-card h4 {
        font-size: 0.85rem;
    }

    .why-detail-card p {
        font-size: 0.72rem;
        line-height: 1.5;
    }

    .row.g-4 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.5rem;
    }
}
/* ================================================================
   🏆 SERVICE HERO - IMPROVED (LARGER SIZE + BOTTOM ALIGNED)
   ================================================================ */

/* ── Hero Section Container ── */
.service-detail-wrapper .service-hero {
    background: linear-gradient(165deg, #0F172A 0%, #1B5875 50%, #2A6F93 100%);
    padding: 80px 50px 100px !important;     /* ✅ More bottom padding */
    border-radius: 24px;
    position: relative;
    min-height: 85vh !important;             /* ✅ Larger page size */
    display: flex !important;
    align-items: flex-end !important;        /* ✅ Content nechy ki side */
    overflow: hidden;
}

/* ── Hero Container (Flex Column for Bottom Alignment) ── */
.service-detail-wrapper .service-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;               /* ✅ Content bottom aligned */
    min-height: 70vh;
}

/* ── Hero Row ── */
.service-detail-wrapper .service-hero .row {
    position: relative;
    z-index: 2;
    width: 100%;
    align-items: flex-end !important;        /* ✅ Bottom aligned */
}

/* ── Hero Content Column ── */
.service-detail-wrapper .service-hero .col-lg-8 {
    padding-bottom: 20px;
}

/* ── Decorative Background Glows ── */
.service-detail-wrapper .service-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
    pointer-events: none;
}

.service-detail-wrapper .service-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 130, 66, 0.04), transparent 70%);
    pointer-events: none;
}

/* ── Decorative Floating Shapes ── */
.hero-shape-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.03);
    animation: floatShape 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-shape-2 {
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.03);
    transform: rotate(45deg);
    animation: floatShape 6s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.hero-shape-3 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

/* ── Section Tag ── */
.service-detail-wrapper .service-hero .section-tag {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 22px 8px 16px !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.service-detail-wrapper .service-hero .section-tag i {
    font-size: 14px;
}

/* ── Hero Title ── */
.service-hero-title {
    font-size: 3.5rem !important;           /* ✅ Larger title */
    font-weight: 900 !important;
    color: #FFFFFF !important;
    line-height: 1.08 !important;
    margin-bottom: 18px !important;
    letter-spacing: -1.5px !important;
    display: block !important;
    max-width: 700px;
}

.service-hero-title .highlight {
    background: linear-gradient(135deg, #4ADE80, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Description ── */
.service-hero-description {
    font-size: 1.2rem !important;           /* ✅ Larger description */
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 620px !important;
    line-height: 1.8 !important;
    margin-bottom: 32px !important;
    display: block !important;
}

/* ── Hero Button ── */
.service-detail-wrapper .service-hero .btn-primary {
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%) !important;
    color: #1B5875 !important;
    border: none !important;
    padding: 16px 44px !important;           /* ✅ Larger button */
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.service-detail-wrapper .service-hero .btn-primary:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25) !important;
}

.service-detail-wrapper .service-hero .btn-primary i {
    font-size: 1.1rem;
}

/* ── Floating Trust Badge ── */
.service-hero .floating-badge {
    position: absolute;
    bottom: 50px;
    right: 60px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.service-hero .floating-badge i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
}

.service-hero .floating-badge div {
    display: flex;
    flex-direction: column;
}

.service-hero .floating-badge div span {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
}

.service-hero .floating-badge div small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Hero Stats Bar ── */
.hero-stats-bar {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats-bar .stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stats-bar .stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.hero-stats-bar .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* ================================================================
   📱 RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .service-detail-wrapper .service-hero {
        padding: 60px 30px 70px !important;
        min-height: 70vh !important;
    }

    .service-detail-wrapper .service-hero .container {
        min-height: 55vh;
    }

    .service-hero-title {
        font-size: 2.6rem !important;
    }

    .service-hero-description {
        font-size: 1rem !important;
    }

    .service-detail-wrapper .service-hero .btn-primary {
        padding: 14px 32px !important;
        font-size: 0.9rem !important;
    }

    .service-hero .floating-badge {
        bottom: 30px;
        right: 30px;
        padding: 14px 18px;
    }

    .service-hero .floating-badge i {
        font-size: 22px;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }

    .hero-stats-bar {
        gap: 24px;
        flex-wrap: wrap;
    }
}

/* ================================================================
   📱 RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .service-detail-wrapper .service-hero {
        padding: 40px 16px 50px !important;
        min-height: 60vh !important;
        border-radius: 14px;
    }

    .service-detail-wrapper .service-hero .container {
        min-height: 45vh;
    }

    .service-hero-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
        max-width: 100%;
    }

    .service-hero-description {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        max-width: 100%;
    }

    .service-detail-wrapper .service-hero .section-tag {
        font-size: 0.6rem !important;
        padding: 4px 14px 4px 10px !important;
    }

    .service-detail-wrapper .service-hero .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
    }

    .service-hero .floating-badge {
        display: none;
    }

    .hero-stats-bar {
        gap: 16px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .hero-stats-bar .stat-number {
        font-size: 1rem;
    }

    .hero-stats-bar .stat-label {
        font-size: 0.65rem;
    }
}

/* ================================================================
   📱 RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .service-detail-wrapper .service-hero {
        padding: 30px 12px 40px !important;
        min-height: 50vh !important;
        border-radius: 11px;
    }

    .service-detail-wrapper .service-hero .container {
        min-height: 35vh;
    }

    .service-hero-title {
        font-size: 1.4rem !important;
        letter-spacing: -0.3px !important;
    }

    .service-hero-description {
        font-size: 0.8rem !important;
        line-height: 1.6 !important;
    }

    .service-detail-wrapper .service-hero .section-tag {
        font-size: 0.55rem !important;
        padding: 3px 10px 3px 8px !important;
    }

    .service-detail-wrapper .service-hero .btn-primary {
        padding: 10px 18px !important;
        font-size: 0.75rem !important;
    }

    .hero-stats-bar {
        gap: 12px;
    }

    .hero-stats-bar .stat-number {
        font-size: 0.85rem;
    }

    .hero-stats-bar .stat-label {
        font-size: 0.55rem;
    }
}
/* ================================================================
   📦 SERVICES PAGE HERO - PROFESSIONAL MODERN STYLING
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.services-hero-wrapper {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.services-hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ================================================================
   2. INNER HERO
   ================================================================ */
.services-hero-wrapper .inner-hero {
    background: linear-gradient(165deg, #0F172A 0%, #1B5875 50%, #2A6F93 100%);
    padding: 80px 50px 70px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ── Decorative Background Glows ── */
.services-hero-wrapper .inner-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 70%);
    pointer-events: none;
}

.services-hero-wrapper .inner-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 130, 66, 0.04), transparent 70%);
    pointer-events: none;
}

/* ── Decorative Floating Shapes ── */
.hero-deco-shape-1 {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.03);
    animation: floatDeco 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-deco-shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.03);
    transform: rotate(45deg);
    animation: floatDeco 6s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

.hero-deco-shape-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(8deg); }
}

/* ── Content Container ── */
.services-hero-wrapper .inner-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero-wrapper .inner-hero .row {
    position: relative;
    z-index: 2;
}

/* ── Section Tag ── */
.services-hero-wrapper .inner-hero .section-tag {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 24px 8px 18px !important;
    border-radius: 50px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    animation: fadeInDown 0.8s ease both;
}

.services-hero-wrapper .inner-hero .section-tag i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Hero Title ── */
.services-hero-wrapper .inner-hero-title {
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    line-height: 1.08 !important;
    margin-bottom: 18px !important;
    letter-spacing: -1.5px !important;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.services-hero-wrapper .inner-hero-title .highlight {
    background: linear-gradient(135deg, #4ADE80, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Description ── */
.services-hero-wrapper .inner-hero-description {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.8 !important;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ── Bottom Decorative Line ── */
.services-hero-wrapper .inner-hero .hero-bottom-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4ADE80, #2D8242);
    border-radius: 2px;
    margin: 24px auto 0;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* ── Animated Icons Row ── */
.services-hero-wrapper .inner-hero .hero-icons-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 28px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.services-hero-wrapper .inner-hero .hero-icons-row .icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.services-hero-wrapper .inner-hero .hero-icons-row .icon-item i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
}

/* ================================================================
   3. ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   4. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .services-hero-wrapper {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .services-hero-wrapper .inner-hero {
        padding: 60px 30px 50px;
        border-radius: 18px;
        min-height: 50vh;
    }

    .services-hero-wrapper .inner-hero-title {
        font-size: 2.6rem !important;
    }

    .services-hero-wrapper .inner-hero-description {
        font-size: 1rem !important;
    }

    .services-hero-wrapper .inner-hero .section-tag {
        font-size: 0.7rem !important;
        padding: 6px 18px 6px 14px !important;
    }

    .hero-deco-shape-1,
    .hero-deco-shape-2 {
        display: none;
    }

    .services-hero-wrapper .inner-hero .hero-icons-row {
        gap: 20px;
    }
}

/* ================================================================
   5. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .services-hero-wrapper {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .services-hero-wrapper .inner-hero {
        padding: 40px 16px 36px;
        border-radius: 14px;
        min-height: 40vh;
    }

    .services-hero-wrapper .inner-hero-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
    }

    .services-hero-wrapper .inner-hero-description {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
    }

    .services-hero-wrapper .inner-hero .section-tag {
        font-size: 0.6rem !important;
        padding: 4px 14px 4px 10px !important;
        letter-spacing: 1.5px !important;
    }

    .services-hero-wrapper .inner-hero .hero-bottom-line {
        width: 60px;
        margin-top: 18px;
    }

    .services-hero-wrapper .inner-hero .hero-icons-row {
        gap: 14px;
        margin-top: 20px;
    }

    .services-hero-wrapper .inner-hero .hero-icons-row .icon-item {
        font-size: 0.7rem;
    }

    .services-hero-wrapper .inner-hero .hero-icons-row .icon-item i {
        font-size: 13px;
    }
}

/* ================================================================
   6. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .services-hero-wrapper {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .services-hero-wrapper .inner-hero {
        padding: 28px 12px 28px;
        border-radius: 11px;
        min-height: 35vh;
    }

    .services-hero-wrapper .inner-hero-title {
        font-size: 1.4rem !important;
        letter-spacing: -0.3px !important;
    }

    .services-hero-wrapper .inner-hero-description {
        font-size: 0.8rem !important;
        line-height: 1.6 !important;
    }

    .services-hero-wrapper .inner-hero .section-tag {
        font-size: 0.55rem !important;
        padding: 3px 10px 3px 8px !important;
        letter-spacing: 1px !important;
    }

    .services-hero-wrapper .inner-hero .hero-icons-row {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .services-hero-wrapper .inner-hero .hero-icons-row .icon-item {
        font-size: 0.65rem;
    }
}
/* ================================================================
   📦 CONTACT PAGE - PROFESSIONAL MODERN STYLING
   ================================================================ */

/* ================================================================
   1. CONTACT SECTION WRAPPER
   ================================================================ */
.contact-wrapper-main,
.booking-wrapper-main,
.map-wrapper-main {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-wrapper-main::before,
.booking-wrapper-main::before,
.map-wrapper-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-wrapper-main .contact-section,
.booking-wrapper-main .booking-section,
.map-wrapper-main .map-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.contact-wrapper-main .section-tag,
.booking-wrapper-main .section-tag,
.map-wrapper-main .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.contact-wrapper-main .section-title,
.booking-wrapper-main .section-title,
.map-wrapper-main .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-wrapper-main .section-title .highlight,
.booking-wrapper-main .section-title .highlight,
.map-wrapper-main .section-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-wrapper-main .section-subtitle,
.booking-wrapper-main .section-subtitle,
.map-wrapper-main .section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 580px;
    margin: 0 auto;
}

/* ================================================================
   3. CONTACT INFO
   ================================================================ */
.contact-info-wrapper {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    height: 100%;
}

.contact-intro {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ── Contact Details ── */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #FFFFFF;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateX(4px);
    border-color: rgba(27, 88, 117, 0.1);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(27, 88, 117, 0.06);
    color: #1B5875;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-item h6 {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94A3BB;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.contact-detail-item a,
.contact-detail-item span {
    font-size: 0.9rem;
    color: #0F172A;
    font-weight: 500;
}

.contact-detail-item a:hover {
    color: #1B5875;
}

/* ── Social Links ── */
.contact-social {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.3);
}

.contact-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.3);
}

.contact-social .social-link:hover {
    background: #1B5875;
    color: #FFFFFF;
    transform: translateY(-3px);
    border-color: #1B5875;
    box-shadow: 0 8px 24px rgba(27, 88, 117, 0.2);
}

/* ================================================================
   4. CONTACT FORM
   ================================================================ */
.contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    height: 100%;
}

.form-header {
    margin-bottom: 24px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.form-title span {
    color: #1B5875;
}

.form-subtitle {
    font-size: 0.85rem;
    color: #64748B;
    margin: 0;
}

.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F172A;
}

.contact-form .form-label .required {
    color: #EF4444;
}

.contact-form .form-control {
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #F8FAFC;
}

.contact-form .form-control:focus {
    border-color: #1B5875;
    box-shadow: 0 0 0 4px rgba(27, 88, 117, 0.08);
    background: #FFFFFF;
}

.contact-form .form-control.is-invalid {
    border-color: #EF4444;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(27, 88, 117, 0.3);
}

/* ================================================================
   5. BOOKING FORM
   ================================================================ */
.booking-form-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(226, 232, 240, 0.3);
}

.booking-form .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F172A;
}

.booking-form .form-label .required {
    color: #EF4444;
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 12px;
    border: 2px solid #E2E8F0;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #F8FAFC;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: #1B5875;
    box-shadow: 0 0 0 4px rgba(27, 88, 117, 0.08);
    background: #FFFFFF;
}

.booking-form .btn-primary {
    background: linear-gradient(135deg, #1B5875 0%, #2A6F93 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.booking-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(27, 88, 117, 0.3);
}

/* ── Booking Success ── */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.booking-success .success-icon {
    font-size: 4rem;
    color: #2D8242;
    margin-bottom: 16px;
}

.booking-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.booking-success p {
    color: #64748B;
    margin-bottom: 24px;
}

.booking-success .btn-success {
    background: linear-gradient(135deg, #2D8242 0%, #3A9D54 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.booking-success .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(45, 130, 66, 0.3);
}

.booking-success .btn-secondary {
    background: #F1F5F9;
    color: #475569;
    border: none;
    padding: 10px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.booking-success .btn-secondary:hover {
    background: #E2E8F0;
}

/* ================================================================
   6. MAP SECTION
   ================================================================ */
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.3);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* ================================================================
   7. ALERTS
   ================================================================ */
.alert {
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.9rem;
    border: none;
}

.alert-danger {
    background: #FEF2F2;
    color: #DC2626;
    border-left: 4px solid #DC2626;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border-left: 4px solid #2D8242;
}

/* ================================================================
   8. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .contact-wrapper-main,
    .booking-wrapper-main,
    .map-wrapper-main {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .contact-wrapper-main .contact-section,
    .booking-wrapper-main .booking-section,
    .map-wrapper-main .map-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .contact-wrapper-main .section-title,
    .booking-wrapper-main .section-title,
    .map-wrapper-main .section-title {
        font-size: 2rem;
    }

    .contact-info-wrapper,
    .contact-form-wrapper,
    .booking-form-wrapper {
        padding: 24px 20px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

/* ================================================================
   9. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .contact-wrapper-main,
    .booking-wrapper-main,
    .map-wrapper-main {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .contact-wrapper-main .contact-section,
    .booking-wrapper-main .booking-section,
    .map-wrapper-main .map-section {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .contact-wrapper-main .section-title,
    .booking-wrapper-main .section-title,
    .map-wrapper-main .section-title {
        font-size: 1.6rem;
    }

    .contact-wrapper-main .section-tag,
    .booking-wrapper-main .section-tag,
    .map-wrapper-main .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .contact-wrapper-main .section-subtitle,
    .booking-wrapper-main .section-subtitle,
    .map-wrapper-main .section-subtitle {
        font-size: 0.85rem;
    }

    .contact-info-wrapper,
    .contact-form-wrapper,
    .booking-form-wrapper {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .contact-detail-item {
        padding: 10px 12px;
    }

    .contact-detail-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .contact-detail-item a,
    .contact-detail-item span {
        font-size: 0.8rem;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .booking-form .btn-primary,
    .contact-form .btn-primary {
        padding: 12px;
        font-size: 0.9rem;
    }

    .map-wrapper iframe {
        height: 220px;
    }

    .booking-success .success-icon {
        font-size: 3rem;
    }

    .booking-success h3 {
        font-size: 1.2rem;
    }
}

/* ================================================================
   10. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .contact-wrapper-main,
    .booking-wrapper-main,
    .map-wrapper-main {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .contact-wrapper-main .contact-section,
    .booking-wrapper-main .booking-section,
    .map-wrapper-main .map-section {
        padding: 20px 10px 18px;
        border-radius: 11px;
    }

    .contact-wrapper-main .section-title,
    .booking-wrapper-main .section-title,
    .map-wrapper-main .section-title {
        font-size: 1.3rem;
    }

    .contact-info-wrapper,
    .contact-form-wrapper,
    .booking-form-wrapper {
        padding: 16px 10px;
        border-radius: 12px;
    }

    .contact-detail-item {
        padding: 8px 10px;
        gap: 10px;
    }

    .contact-detail-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .contact-detail-item h6 {
        font-size: 0.6rem;
    }

    .contact-detail-item a,
    .contact-detail-item span {
        font-size: 0.72rem;
    }

    .contact-intro {
        font-size: 0.82rem;
    }

    .form-title {
        font-size: 1rem;
    }

    .form-subtitle {
        font-size: 0.75rem;
    }

    .contact-form .form-label,
    .booking-form .form-label {
        font-size: 0.75rem;
    }

    .contact-form .form-control,
    .booking-form .form-control,
    .booking-form .form-select {
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .booking-form .btn-primary,
    .contact-form .btn-primary {
        padding: 10px;
        font-size: 0.8rem;
    }

    .contact-social .social-link {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .map-wrapper iframe {
        height: 160px;
    }

    .booking-success .success-icon {
        font-size: 2.5rem;
    }

    .booking-success h3 {
        font-size: 1rem;
    }

    .booking-success p {
        font-size: 0.8rem;
    }

    .booking-success .btn-success {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}
/* ================================================================
   📦 VIDEO SECTION - PROFESSIONAL MODERN STYLING
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.video-wrapper-main {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.video-wrapper-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.video-wrapper-main .video-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ── Decorative Background ── */
.video-wrapper-main .video-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.03), transparent 70%);
    pointer-events: none;
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.video-wrapper-main .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.video-wrapper-main .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.video-wrapper-main .section-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-wrapper-main .section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 580px;
    margin: 0 auto;
}

/* ================================================================
   3. VIDEO CARDS
   ================================================================ */
.video-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    animation: videoFadeUp 0.6s ease both;
}

@keyframes videoFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(27, 88, 117, 0.1);
}

/* ── Video Wrapper ── */
.video-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: #0F172A;
    cursor: pointer;
}

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-element {
    transform: scale(1.03);
}

/* ── Video Overlay ── */
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    pointer-events: none;
}

.video-card:hover .video-overlay {
    background: rgba(15, 23, 42, 0.1);
}

.video-play-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    transition: all 0.4s ease;
    opacity: 0.6;
}

.video-card:hover .video-play-icon {
    transform: scale(1.15);
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.video-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
    pointer-events: none;
}

/* ── Sound Toggle Button ── */
.video-sound-toggle {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    z-index: 5;
}

.video-card:hover .video-sound-toggle {
    opacity: 1;
    transform: translateY(0);
}

.video-sound-toggle:hover {
    background: rgba(27, 88, 117, 0.8);
    transform: scale(1.1);
}

/* ── Video Duration ── */
.video-duration {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.video-duration i {
    font-size: 10px;
}

/* ── Video Card Footer ── */
.video-card-footer {
    padding: 14px 18px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-badge i {
    color: #1B5875;
}

/* ================================================================
   4. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .video-wrapper-main {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .video-wrapper-main .video-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .video-wrapper-main .section-title {
        font-size: 2rem;
    }

    .video-wrapper-main .section-subtitle {
        font-size: 0.95rem;
    }

    .video-play-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .video-card {
        border-radius: 16px;
    }

    .video-sound-toggle {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   5. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .video-wrapper-main {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .video-wrapper-main .video-section {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .video-wrapper-main .section-title {
        font-size: 1.6rem;
    }

    .video-wrapper-main .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .video-wrapper-main .section-subtitle {
        font-size: 0.85rem;
    }

    .video-card {
        border-radius: 14px;
    }

    .video-wrapper {
        padding-top: 65%;
    }

    .video-play-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .video-card-footer {
        padding: 10px 14px 12px;
    }

    .video-badge {
        font-size: 0.65rem;
    }

    .video-sound-toggle {
        width: 28px;
        height: 28px;
        font-size: 10px;
        bottom: 8px;
        right: 8px;
    }

    .video-duration {
        font-size: 0.55rem;
        padding: 3px 10px;
        bottom: 8px;
        left: 8px;
    }
}

/* ================================================================
   6. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .video-wrapper-main {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .video-wrapper-main .video-section {
        padding: 20px 10px 18px;
        border-radius: 11px;
    }

    .video-wrapper-main .section-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }

    .video-wrapper-main .section-tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .video-wrapper-main .section-subtitle {
        font-size: 0.75rem;
    }

    .video-card {
        border-radius: 12px;
    }

    .video-wrapper {
        padding-top: 60%;
    }

    .video-play-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .video-card-footer {
        padding: 8px 10px 10px;
    }

    .video-badge {
        font-size: 0.6rem;
    }

    .video-sound-toggle {
        width: 24px;
        height: 24px;
        font-size: 8px;
        bottom: 6px;
        right: 6px;
    }

    .video-duration {
        font-size: 0.5rem;
        padding: 2px 8px;
        bottom: 6px;
        left: 6px;
        gap: 4px;
    }

    .video-duration i {
        font-size: 8px;
    }

    .row.g-4 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.5rem;
    }
}
/* ── Logo Size - Minimized ── */

/* Desktop */
.navbar-logo {
    height: 74px !important;          /* ✅ Was 80px - Minimized */
    width: auto;
    transition: var(--transition);
}

/* Sticky Header */
.header-sticky .navbar-logo {
    height: 56px !important;          /* ✅ Was 60px - Minimized */
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .navbar-logo {
        height: 48px !important;      /* ✅ Was 52px - Minimized */
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .navbar-logo {
        height: 40px !important;      /* ✅ Was 44px - Minimized */
    }
}
/* ── Mobile View - Site Title ── */

/* Hide on desktop, show on mobile */
.brand-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.brand-text span {
    color: #1B5875;
}

/* Show on mobile (below md breakpoint) */
@media (max-width: 767px) {
    .brand-text {
        font-size: 1rem;
        display: inline-block !important;
    }
    
    .header-sticky .brand-text {
        font-size: 0.9rem;
    }
}

/* Extra small mobile */
@media (max-width: 576px) {
    .brand-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 370px) {
    .brand-text {
        font-size: 0.8rem;
    }
}
/* ================================================================
   🏠 HERO SECTION - IMAGE AS BACKGROUND WITH OVERLAY
   ================================================================ */

/* ── Hero Background Wrapper ── */
.hero-bg-wrapper {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 24px;
}

/* ── Background Image ── */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* ── Mobile Overlay (Blue - from brand color) ── */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

/* ── Hero Content (on top of background) ── */
.hero-bg-wrapper .container {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-bg-wrapper .hero-content {
    padding-right: 20px;
}

/* ── Hero Title - Keep clean on background ── */
.hero-bg-wrapper .hero-title {
    color: #0F172A;
}

.hero-bg-wrapper .hero-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2A6F93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-bg-wrapper .hero-description {
    color: #475569;
}

/* ── Hero Stats ── */
.hero-bg-wrapper .hero-stats {
    border-top-color: rgba(226, 232, 240, 0.5);
}

.hero-bg-wrapper .stat-number {
    color: #0F172A;
}

.hero-bg-wrapper .stat-label {
    color: #64748B;
}

/* ================================================================
   📱 MOBILE VIEW - BLUE OVERLAY
   ================================================================ */
@media (max-width: 991px) {
    .hero-bg-wrapper {
        min-height: 80vh;
    }
    
    .hero-bg-overlay {
        background: rgba(27, 88, 117, 0.75) !important;  /* ✅ Brand Blue #1B5875 with 75% opacity */
    }
    
    .hero-bg-wrapper .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-bg-wrapper .hero-title {
        color: #FFFFFF;
    }
    
    .hero-bg-wrapper .hero-title .highlight {
        background: linear-gradient(135deg, #4ADE80, #2D8242);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-bg-wrapper .hero-description {
        color: rgba(255, 255, 255, 0.85);
    }
    
    .hero-bg-wrapper .hero-badge {
        background: rgba(255, 255, 255, 0.15);
        color: #FFFFFF;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero-bg-wrapper .hero-badge i {
        -webkit-text-fill-color: #FFFFFF;
    }
    
    .hero-bg-wrapper .hero-buttons {
        justify-content: center;
    }
    
    .hero-bg-wrapper .hero-stats {
        border-top-color: rgba(255, 255, 255, 0.15);
        justify-content: center;
    }
    
    .hero-bg-wrapper .stat-number {
        color: #FFFFFF;
    }
    
    .hero-bg-wrapper .stat-label {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* ================================================================
   📱 MOBILE SMALL (576px)
   ================================================================ */
@media (max-width: 576px) {
    .hero-bg-wrapper {
        min-height: 70vh;
    }
    
    .hero-bg-overlay {
        background: rgba(27, 88, 117, 0.80) !important;  /* ✅ Slightly darker on small mobile */
    }
    
    .hero-bg-wrapper .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-bg-wrapper .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-bg-wrapper .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-bg-wrapper .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-bg-wrapper .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        padding-top: 20px;
    }
    
    .hero-bg-wrapper .stat-number {
        font-size: 1.4rem;
    }
    
    .hero-bg-wrapper .stat-label {
        font-size: 0.75rem;
    }
}

/* ================================================================
   📱 EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .hero-bg-wrapper {
        min-height: 60vh;
    }
    
    .hero-bg-overlay {
        background: rgba(27, 88, 117, 0.85) !important;
    }
    
    .hero-bg-wrapper .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-bg-wrapper .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-bg-wrapper .hero-badge {
        font-size: 0.65rem;
        padding: 4px 14px 4px 10px;
    }
    
    .hero-bg-wrapper .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .hero-bg-wrapper .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-bg-wrapper .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-bg-wrapper .hero-stats {
        gap: 16px;
    }
}
/* ================================================================
   🏠 HERO SECTION - TEXT COLORS (WHITE/BRIGHT)
   ================================================================ */

/* ── Hero Title ── */
.hero-bg-wrapper .hero-title {
    color: #FFFFFF !important;
}

.hero-bg-wrapper .hero-title .highlight {
    background: linear-gradient(135deg, #4ADE80 0%, #2D8242 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Description ── */
.hero-bg-wrapper .hero-description {
    color: rgba(255, 255, 255, 0.90) !important;
}

/* ── Hero Badge ── */
.hero-bg-wrapper .hero-badge {
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.hero-bg-wrapper .hero-badge i {
    background: linear-gradient(135deg, #FFFFFF, #4ADE80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero Stats Numbers ── */
.hero-bg-wrapper .stat-number {
    color: #FFFFFF !important;
}

/* ── Hero Stats Labels ── */
.hero-bg-wrapper .stat-label {
    color: rgba(255, 255, 255, 0.75) !important;
}
/* ================================================================
   📦 SOLUTIONS VIDEO SECTION - PROFESSIONAL STYLING
   ================================================================ */

/* ================================================================
   1. CURVED CONTAINER WRAPPER
   ================================================================ */
.solutions-video-wrapper {
    margin: 0 24px 20px 24px;
    padding: 8px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.04), rgba(45, 130, 66, 0.02));
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.solutions-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(27, 88, 117, 0.08), rgba(45, 130, 66, 0.04));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.solutions-video-wrapper .solutions-video-section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px 40px;
    margin: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

/* ── Decorative Background ── */
.solutions-video-wrapper .solutions-video-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 88, 117, 0.03), transparent 70%);
    pointer-events: none;
}

/* ================================================================
   2. SECTION HEADER
   ================================================================ */
.solutions-video-wrapper .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(27, 88, 117, 0.06);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1B5875;
    margin-bottom: 12px;
    border: 1px solid rgba(27, 88, 117, 0.06);
}

.solutions-video-wrapper .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.solutions-video-wrapper .section-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-video-wrapper .section-subtitle {
    font-size: 1.05rem;
    color: #64748B;
    max-width: 620px;
    margin: 0 auto;
}

/* ================================================================
   3. VIDEO CARDS (2-Column Grid)
   ================================================================ */
.video-solution-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    height: 100%;
    animation: videoFadeUp 0.6s ease both;
}

.video-solution-card:nth-child(1) { animation-delay: 0.1s; }
.video-solution-card:nth-child(2) { animation-delay: 0.2s; }

@keyframes videoFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(27, 88, 117, 0.1);
}

/* ── Video Wrapper ── */
.video-solution-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 */
    background: #0F172A;
    cursor: pointer;
}

.video-solution-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-solution-card:hover .video-solution-element {
    transform: scale(1.03);
}

/* ── Video Overlay ── */
.video-solution-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    pointer-events: none;
}

.video-solution-card:hover .video-solution-overlay {
    background: rgba(15, 23, 42, 0.15);
}

.video-solution-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 28px;
    transition: all 0.4s ease;
    opacity: 0.7;
}

.video-solution-card:hover .video-solution-play {
    transform: scale(1.15);
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.video-solution-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
    pointer-events: none;
}

/* ── Sound Toggle ── */
.video-solution-sound {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    z-index: 5;
}

.video-solution-card:hover .video-solution-sound {
    opacity: 1;
    transform: translateY(0);
}

.video-solution-sound:hover {
    background: rgba(27, 88, 117, 0.8);
    transform: scale(1.1);
}

/* ── Duration ── */
.video-solution-duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.video-solution-duration i {
    font-size: 11px;
}

/* ── Label Badge ── */
.video-solution-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #FFFFFF;
    background: rgba(27, 88, 117, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    letter-spacing: 0.3px;
}

.video-solution-badge i {
    font-size: 11px;
    opacity: 0.8;
}

/* ── Card Footer ── */
.video-solution-footer {
    padding: 18px 22px 20px;
}

.video-solution-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-solution-title i {
    color: #1B5875;
    font-size: 1.1rem;
}

.video-solution-title .highlight {
    background: linear-gradient(135deg, #1B5875, #2D8242);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   4. RESPONSIVE - TABLET
   ================================================================ */
@media (max-width: 991px) {
    .solutions-video-wrapper {
        margin: 0 16px 16px 16px;
        border-radius: 24px;
        padding: 6px;
    }

    .solutions-video-wrapper .solutions-video-section {
        padding: 40px 24px 32px;
        border-radius: 18px;
    }

    .solutions-video-wrapper .section-title {
        font-size: 2rem;
    }

    .solutions-video-wrapper .section-subtitle {
        font-size: 0.95rem;
    }

    .video-solution-play {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .video-solution-card {
        border-radius: 16px;
    }

    .video-solution-sound {
        opacity: 1;
        transform: translateY(0);
    }

    .video-solution-title {
        font-size: 1rem;
    }
}

/* ================================================================
   5. RESPONSIVE - MOBILE
   ================================================================ */
@media (max-width: 576px) {
    .solutions-video-wrapper {
        margin: 0 10px 12px 10px;
        border-radius: 18px;
        padding: 4px;
    }

    .solutions-video-wrapper .solutions-video-section {
        padding: 28px 14px 24px;
        border-radius: 14px;
    }

    .solutions-video-wrapper .section-title {
        font-size: 1.6rem;
    }

    .solutions-video-wrapper .section-tag {
        font-size: 0.6rem;
        padding: 4px 14px 4px 10px;
        letter-spacing: 1px;
    }

    .solutions-video-wrapper .section-subtitle {
        font-size: 0.85rem;
    }

    .video-solution-card {
        border-radius: 14px;
    }

    .video-solution-wrapper {
        padding-top: 65%;
    }

    .video-solution-play {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .video-solution-footer {
        padding: 14px 16px 16px;
    }

    .video-solution-title {
        font-size: 0.95rem;
        gap: 8px;
    }

    .video-solution-title i {
        font-size: 0.9rem;
    }

    .video-solution-sound {
        width: 30px;
        height: 30px;
        font-size: 11px;
        bottom: 12px;
        right: 12px;
    }

    .video-solution-duration {
        font-size: 0.6rem;
        padding: 3px 10px;
        bottom: 12px;
        left: 12px;
    }

    .video-solution-badge {
        font-size: 0.55rem;
        padding: 3px 10px;
        top: 12px;
        left: 12px;
    }

    .video-solution-badge i {
        font-size: 9px;
    }

    .solutions-grid .col-lg-6 {
        padding: 0 6px;
    }
}

/* ================================================================
   6. RESPONSIVE - EXTRA SMALL (370px)
   ================================================================ */
@media (max-width: 370px) {
    .solutions-video-wrapper {
        margin: 0 6px 8px 6px;
        border-radius: 14px;
        padding: 3px;
    }

    .solutions-video-wrapper .solutions-video-section {
        padding: 20px 10px 18px;
        border-radius: 11px;
    }

    .solutions-video-wrapper .section-title {
        font-size: 1.3rem;
        letter-spacing: -0.3px;
    }

    .solutions-video-wrapper .section-tag {
        font-size: 0.55rem;
        padding: 3px 10px 3px 8px;
    }

    .solutions-video-wrapper .section-subtitle {
        font-size: 0.75rem;
    }

    .video-solution-card {
        border-radius: 12px;
    }

    .video-solution-wrapper {
        padding-top: 60%;
    }

    .video-solution-play {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .video-solution-footer {
        padding: 10px 12px 12px;
    }

    .video-solution-title {
        font-size: 0.82rem;
        gap: 6px;
    }

    .video-solution-title i {
        font-size: 0.75rem;
    }

    .video-solution-sound {
        width: 24px;
        height: 24px;
        font-size: 9px;
        bottom: 8px;
        right: 8px;
    }

    .video-solution-duration {
        font-size: 0.5rem;
        padding: 2px 8px;
        bottom: 8px;
        left: 8px;
        gap: 4px;
    }

    .video-solution-duration i {
        font-size: 8px;
    }

    .video-solution-badge {
        font-size: 0.5rem;
        padding: 2px 8px;
        top: 8px;
        left: 8px;
        gap: 4px;
    }

    .video-solution-badge i {
        font-size: 8px;
    }

    .row.g-4 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.5rem;
    }
}
/* ================================================================
   📱 FLOATING WHATSAPP ICON - LEFT SIDE
   ================================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    left: 28px;
    z-index: 9998;
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    font-size: 32px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    opacity: 0.2;
    z-index: -1;
    animation: whatsappRing 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 48px rgba(37, 211, 102, 0.5);
    }
}

@keyframes whatsappRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 48px rgba(37, 211, 102, 0.5);
    color: #FFFFFF;
}

.whatsapp-float-btn:active {
    transform: scale(0.95);
}

/* ── Tooltip ── */
.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #0F172A;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 6px solid #0F172A;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ── Status Badge ── */
.whatsapp-float .status-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4ADE80;
    border: 2px solid #FFFFFF;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* ================================================================
   📱 RESPONSIVE
   ================================================================ */

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 80px;
        left: 16px;
    }

    .whatsapp-float-btn {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 370px) {
    .whatsapp-float {
        bottom: 70px;
        left: 12px;
    }

    .whatsapp-float-btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}