:root {
    /* Brand Colors */
    --primary-blue: #004b87;
    --primary-blue-hover: #003662;
    --primary: #001e33;
    --primary-dark: #001f2d;
    --primary-container: #12344d;

    /* Secondary Colors */
    --secondary: #0f9d7a;
    --secondary-hover: #008f40;
    --secondary-container: #83f8cf;
    --on-secondary-container: #002117;
    --secondary-fixed: #83f8cf;

    /* Accent Colors */
    --accent-teal: #00cba9;
    --accent-light-teal: #e6f9f6;
    --accent-green-dk: #006c52;
    --accent-yellow: #ffc107;
    --accent-red: #ff4d4d;

    /* Neutral / Surfaces */
    --surface: #f5faf8;
    --surface-container-low: #f0f5f3;
    --surface-container-lowest: #ffffff;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --border-color: rgba(0, 0, 0, 0.05);
    --border-light: #eeeeee;

    /* Text Colors */
    --text-dark: #333333;
    --text-muted: #6c757d;
    --text-on-dark: rgba(255, 255, 255, 0.8);
    --on-surface: #171d1c;
    --on-surface-variant: #42474d;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-nav: 0 2px 10px rgba(0, 0, 0, 0.05);

    /* Design Tokens */
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --max-w: 1200px;

    /* Legacy / Compat Variables */
    --green: var(--secondary);
    --green-dk: var(--secondary-hover);
    --dark: var(--on-surface);
    --navy: var(--primary);
    --blue: var(--primary-blue);
    --gray-txt: var(--text-muted);
    --off-white: var(--bg-light);
    --red: var(--accent-red);

    /* Dynamic header height (set via JS) */
    --header-height: 0px;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif !important;
    color: var(--text-dark);
    background-color: var(--surface);
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.headline,
.section-title {
    font-family: "Manrope", sans-serif !important;
}

/* Typography & Utilities */
.text-primary-blue {
    color: var(--primary-blue) !important;
}
.text-secondary-green {
    color: var(--secondary) !important;
}
.bg-primary-blue {
    background-color: var(--primary-blue) !important;
}
.bg-secondary-green {
    background-color: var(--secondary) !important;
}
.bg-light-gray {
    background-color: var(--bg-light);
}
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-secondary-fixed {
    color: var(--secondary-fixed) !important;
}
.text-on-surface-variant {
    color: var(--on-surface-variant) !important;
}
.bg-primary-container {
    background-color: var(--primary-container) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-surface-container-low {
    background-color: var(--surface-container-low) !important;
}
.bg-surface-container-lowest {
    background-color: var(--surface-container-lowest) !important;
}

.fw-black {
    font-weight: 900;
}
.fw-extrabold {
    font-weight: 800;
}
.fw-bold {
    font-weight: 700;
}
.fw-semibold {
    font-weight: 600;
}

.section-padding {
    padding: 80px 20px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-left: 16px;
        padding-right: 16px;
    }
    .contact-info-section{
        padding:60px 20px !important;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.s2-page .section-padding,
.gallery-page .section-padding {
    padding-inline: 32px;
}

 .gallery-cta{
        display: flex;
        justify-content: space-between;
        align-items: center;
     }

@media (max-width: 768px) {
    .s2-page .section-padding,
    .gallery-page .section-padding {
        padding-inline: 16px;
    }
}

@media (max-width: 480px) {
    .s2-page .section-padding,
    .gallery-page .section-padding {
        padding-inline: 12px;
    }
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}
.section-title span {
    color: var(--secondary);
}

.container-custom {
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
    vertical-align: middle;
}

/* 1. Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-nav);
    padding: 10px 0px;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
}
.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    margin: 0 10px;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}

.header-main {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    min-height: auto;
    z-index: 1065;
    box-shadow: var(--shadow-md);
}

.bg-primary-container {
    background: linear-gradient(
        90deg,
        var(--primary-container),
        var(--secondary)
    ) !important;
}

.nav-link-custom {
    color: var(--on-surface-variant);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}
.nav-link-custom:hover {
    color: var(--secondary);
}
.nav-link-custom.active {
    color: var(--secondary);
    font-weight: 600;
    border-bottom-color: var(--secondary);
}

.badge-announcement {
    font-size: 10px;
    letter-spacing: 0.1em;
}

.navbar-logo {
    height: 50px;
}

/* Custom Hamburger Menu Icon */
.navbar-toggler {
    padding: 0.4rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: rgba(0, 75, 135, 0.08);
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 22px;
    background-image: none !important;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.navbar-toggler-icon::before {
    top: 3px;
}

.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
}

.navbar-toggler-icon::after {
    bottom: 3px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Custom Dropdown Styling */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle-icon {
    display: none;
    background: none;
    border: none;
    padding: 0.25rem 0.5rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
    align-items: center;
    justify-content: center;
}

.dropdown-toggle-icon svg {
    transition: transform 0.3s ease;
}

.dropdown-toggle-icon[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.dropdown-menu-custom {
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    border: 0 !important;
    box-shadow: 0 28px 90px rgba(16, 60, 116, 0.18) !important;
    padding: 1.4rem !important;
    border-radius: 1.35rem !important;
    top: 100%;
    margin-top: 0 !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(15, 56, 93, 0.08);
    min-width: 460px;
    pointer-events: auto;
    display: none;
    opacity: 0;
    visibility: hidden;
}

.dropdown-menu-custom .dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 0.85rem;
}

@media (max-width: 1199px) {
    .dropdown-menu-custom .dropdown-grid {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
    }
}

@media (max-width: 991px) {
    .dropdown-menu-custom .dropdown-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}

@media (max-width: 767px) {
    .dropdown-menu-custom .dropdown-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
   .top-bar-name{
    display: none;
   }
}

.dropdown-menu-custom .dropdown-item {
    border-radius: 1rem;
    padding: 0.95rem 1.05rem;
    transition: all 0.3s cubic-bezier(0.16, 0.82, 0.31, 1);
    color: var(--text-dark) !important;
    font-size: 0.98rem;
    display: block;
    line-height: 1.6;
    background: rgba(250, 252, 255, 0.94);
    border: 1px solid rgba(15, 56, 93, 0.12);
    text-align: left;
    white-space: normal;
    box-shadow: inset 0 0 0 1px transparent;
}

.dropdown-menu-custom .dropdown-item:hover {
    background-color: rgba(15, 56, 93, 0.1);
    color: var(--primary-blue);
    transform: none;
    border-color: rgba(15, 56, 93, 0.18);
}

.dropdown-menu-custom .dropdown-item::after {
    content: "\2192";
    float: right;
    opacity: 0;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.dropdown-menu-custom .dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

.dropdown-menu.mega-menu {
    min-width: 520px;
}

.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown.show > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.nav-item.dropdown .dropdown-menu {
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

@media (max-width: 1199px) {
    .dropdown-menu-custom {
        left: 0;
        right: auto;
        transform: none;
        min-width: 320px;
        max-width: calc(100vw - 2rem);
    }
}

@media (max-width: 992px) {
    .overlay{
        height: 100%;
    }
    .btn-primary-blue{
        font-size: 12px;
    }
}

/* ── Mobile Offcanvas Navigation ── */
/* Close button hidden on desktop */
.navbar-close-btn {
    display: none;
}

/* Mobile menu header hidden on desktop */
.mobile-menu-header {
    display: none;
}

@media (max-width: 991.98px) {
    /* ── Offcanvas Panel ── */
    #navbarNav.navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: 0 !important;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        background: var(--white);
        z-index: 1060 !important;
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: transform 0.3s ease,
                    visibility 0.3s ease;
        box-shadow: 8px 0 30px rgba(0, 0, 0, 0.2);
        display: flex !important;
        flex-direction: column;
        visibility: hidden;
        border: none !important;
        border-radius: 0 !important;
        border-left: 4px solid var(--primary-blue);
        border-right: 20px solid transparent;
        border-bottom: 20px solid transparent;
        border-top: 20px solid transparent;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        clip-path: inset(0 -20px -20px 0 round 0 20px 20px 0);
    }

    #navbarNav.navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
    }

    /* ── Mobile Menu Header ── */
    .mobile-menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, var(--primary-blue), var(--secondary));
        padding: 25px 43px;
        position: relative;
        flex-shrink: 0;
    }

    .mobile-menu-logo {
        height: 60px;
        width: auto;
        margin-bottom: 10px;
    }

    .mobile-menu-company-name {
        color: var(--white);
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
    }

    /* ── Close Button ── */
    .navbar-close-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: var(--white);
        color: var(--primary-blue);
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .navbar-close-btn:hover {
        background: var(--primary-blue);
        color: var(--white);
    }

    /* ── Nav Items ── */
    #navbarNav .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0;
        flex-shrink: 0;
    }

    #navbarNav .nav-item {
        width: 100%;
        position: relative;
        border-bottom: 1px solid #f0f4f8;
    }

    #navbarNav .nav-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--secondary);
        transform: scaleY(0);
        transition: transform 0.2s ease;
    }

    #navbarNav .nav-item:hover::before,
    #navbarNav .nav-item.active::before {
        transform: scaleY(1);
    }

    #navbarNav .nav-link {
        margin: 0;
        padding: 14px 24px;
        border-radius: 0;
        font-size: 15px;
        font-weight: 500;
        color: var(--primary-blue);
        display: flex;
        align-items: center;
        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
        
    }

    #navbarNav .nav-link:hover,
    #navbarNav .nav-link:active {
        background: #f0f4f8;
        color: var(--primary-blue) !important;
        padding-left: 28px;
    }

    #navbarNav .nav-link.active {
        background: #f0f4f8;
        color: var(--primary-blue) !important;
        font-weight: 600;
    }

    /* Suppress desktop hover dropdown on mobile */
    .nav-item.dropdown:hover > .dropdown-menu {
        display: none;
    }

    /* ── Dropdown Button Layout (Services) ── */
    .dropdown-button {
        display: flex !important;
        flex-wrap: wrap;
        align-items: stretch;
        background: transparent;
        transition: background 0.2s ease;
    }

    .dropdown-button:hover,
    .dropdown-button.mobile-open {
        background: #f0f4f8;
    }

    .dropdown-button > .nav-link.dropdown-toggle {
        flex: 1;
        border-bottom: none;
    }

    .dropdown-button > .nav-link.dropdown-toggle::after {
        display: none !important;
    }

    .dropdown-button .dropdown-toggle-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        background: transparent;
        color: var(--secondary);
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
        flex-shrink: 0;
    }

    .dropdown-button .dropdown-toggle-icon:hover {
        background: rgba(15, 157, 122, 0.1);
        height: 51px;
    }

    .dropdown-button .dropdown-toggle-icon svg {
        transition: transform 0.3s ease;
        width: 16px;
        height: 16px;
        display: block;
    }

    .dropdown-button.mobile-open .dropdown-toggle-icon svg {
        transform: rotate(180deg);
    }

    /* ── Dropdown Accordion ── */
    .nav-item.dropdown .dropdown-menu-custom {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #f8fbff !important;
        backdrop-filter: none !important;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease,
                    opacity 0.3s ease,
                    padding 0.3s ease;
    }

    .nav-item.dropdown.mobile-open .dropdown-menu-custom {
        max-height: 50vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0.5rem 0 !important;
        opacity: 1;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .dropdown-menu-custom .dropdown-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .dropdown-menu-custom .dropdown-item {
        padding: 12px 24px 12px 40px !important;
        font-size: 14px !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        color: #555 !important;
        font-weight: 500;
        transition: all 0.2s ease;
        line-height: 1.5;
        position: relative;
        border-bottom: 1px solid #f0f4f8;
    }

    .dropdown-menu-custom .dropdown-item::before {
        content: '';
        position: absolute;
        left: 24px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid var(--secondary);
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
    }

    .dropdown-menu-custom .dropdown-item:hover {
        background: rgba(15, 157, 122, 0.05) !important;
        color: var(--secondary) !important;
        padding-left: 44px !important;
    }

    .dropdown-menu-custom .dropdown-item::after {
        display: none !important;
    }

    /* ── CTA Button Wrapper ── */
    .navbar-cta-wrapper {
        flex-shrink: 0;
        margin: 20px 24px;
        padding: 0;
    }

    .navbar-cta-wrapper .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
        font-weight: bold;
        border-radius: 25px;
        background: linear-gradient(90deg, var(--secondary), var(--primary-blue));
        color: var(--white);
        border: none;
        transition: box-shadow 0.3s ease, transform 0.2s ease;
    }

    .navbar-cta-wrapper .btn:hover {
        box-shadow: 0 6px 20px rgba(15, 157, 122, 0.4);
        transform: translateY(-2px);
    }

    /* ── Backdrop ── */
    .navbar-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1055;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .navbar-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* ── Custom Scrollbar (Panel) ── */
    #navbarNav.navbar-collapse::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
    #navbarNav.navbar-collapse::-webkit-scrollbar-track {
        background: transparent;
    }
    #navbarNav.navbar-collapse::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 4px;
    }
    #navbarNav.navbar-collapse {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-blue) transparent;
    }

    /* ── Custom Scrollbar (Dropdown) ── */
    .nav-item.dropdown.mobile-open .dropdown-menu-custom::-webkit-scrollbar {
        width: 3px;
    }
    .nav-item.dropdown.mobile-open .dropdown-menu-custom::-webkit-scrollbar-track {
        background: transparent;
    }
    .nav-item.dropdown.mobile-open .dropdown-menu-custom::-webkit-scrollbar-thumb {
        background: rgba(0, 75, 135, 0.3);
        border-radius: 3px;
    }
    .nav-item.dropdown.mobile-open .dropdown-menu-custom {
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 75, 135, 0.3) transparent;
    }

    /* ── Body Lock ── */
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
}

/* Tablet: offcanvas width adjustment */
@media (min-width: 768px) and (max-width: 991.98px) {
    #navbarNav.navbar-collapse {
        width: 280px;
        max-width: 70vw;
        height: 100vh;
    }
}

.hover-translate-y {
    transition: transform 0.3s ease;
}

.hover-translate-y:hover {
    transform: translateY(-3px);
}

/* 13. Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-on-dark);
    padding: 120px 0 40px 0;
    margin-top: 60px;
}
.footer h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}
.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}
.footer a:hover {
    color: var(--secondary);
    padding-left: 2.5px;
}

.footer-img {
    height: 200px;
    width: 200px;
}
.footer-img:hover {
    padding: 0px !important;
}
.footer-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
}

.social-icons a img{
    height:100%;
    width:100%;
    object-fit: cover;
    border-radius: 50%;
}
.social-icons a:hover {
    background: linear-gradient(90deg, #12344d, #0f9d7a) !important;
    color: var(--white);
    padding: 0;
    transform: translateY(-2px);
}

/* Enhanced Buttons */
.btn-primary-blue {
    background: linear-gradient(135deg, var(--primary-blue), #003662);
    border: none;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 75, 135, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary-blue:hover {
    background: linear-gradient(135deg, #003662, var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 75, 135, 0.4);
    transform: translateY(-2px);
}

.btn-secondary-green {
    background: linear-gradient(135deg, var(--secondary), #008f40);
    border: none;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 176, 80, 0.25);
    transition: all 0.3s ease;
}
.btn-secondary-green:hover {
    background: linear-gradient(135deg, #008f40, #00662d);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 176, 80, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #008f40);
    border: none;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 176, 80, 0.25);
}
.btn-secondary:hover {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--primary-blue-hover)
    );
    transform: translateY(-3px) scale(1.02);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 75, 135, 0.4);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.rounded-pill {
    border-radius: 50rem !important;
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: none;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top:hover {
    background-color: var(--primary-blue-hover);
    color: var(--white);
}

/* Hero Section (aboutus/gallery) */

.service-card:hover {
    box-shadow: 0 12px 32px rgba(18, 52, 77, 0.06);
}
.service-icon-box {
    width: 56px;
    height: 56px;
    background-color: rgba(0, 108, 82, 0.1);
    color: var(--secondary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}
.service-card:hover .service-icon-box {
    background-color: var(--secondary);
    color: var(--white);
}

.service-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
    gap: 20px;
    scrollbar-width: none;
}
.service-scroll-wrapper::-webkit-scrollbar {
    display: none;
}
.service-item {
    min-width: 300px;
    flex: 0 0 auto;
}

/* 5. Services Showcase */
.services-showcase {
    background-color: var(--primary);
    color: var(--white);
}

.services-showcase .section-title {
    color: var(--white);
}

.nav-pills-custom .nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-align: left;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
}

.nav-pills-custom .nav-link.active,
.nav-pills-custom .nav-link:hover {
    color: var(--black) !important;
    background-color: var(--bg-light);
    opacity: 0.9 !important;
}

.showcase-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Industry Cards */
.industry-card {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: 0.3s;
}
.industry-card:hover {
    border-color: var(--primary-blue);
    background-color: rgba(0, 75, 135, 0.02);
}
.industry-icon {
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* 7. Recent Work */
.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    transition: 0.3s;
}

.video-card:hover .play-btn {
    background: var(--secondary);
    color: var(--white);
}

/* 10. FAQ */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.accordion-button {
    font-weight: 600;
    color: var(--primary-blue);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 176, 80, 0.1);
    color: var(--secondary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* 12. Quote Form */
.quote-form-section {
    position: relative;
    z-index: 10;
}

.quote-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 8px;
}

.max-w-700 {
    max-width: 700px;
    margin: 0 auto;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.about-img-main {
    grid-column: 1 / 3;
    border-radius: 12px;
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.about-img-sub {
    border-radius: 12px;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Gallery Components */
.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.gallery-card:hover {
    transform: translateY(-5px);
}
.ba-wrapper {
    position: relative;
    height: 350px;
    display: flex;
    overflow: hidden;
}
.ba-side {
    width: 50%;
    height: 100%;
    position: relative;
}
.ba-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ribbon {
    position: absolute;
    top: 25px;
    padding: 8px 0;
    width: 180px;
    text-align: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.ribbon-before {
    left: -45px;
    background: var(--primary-blue);
    transform: rotate(-45deg);
}
.ribbon-after {
    right: -45px;
    background: var(--secondary);
    transform: rotate(45deg);
}

.ba-badge-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 15;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    border: 6px solid white;
}
.ba-badge-circle::before {
    content: "";
    position: absolute;
    top: -500%;
    bottom: -500%;
    left: 50%;
    width: 4px;
    background: white;
    transform: translateX(-50%);
    z-index: -1;
}

/* Feature Row */
.feature-row {
    background: white;
    margin: -50px auto 40px;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    max-width: 1000px;
}
.feature-item {
    text-align: center;
    padding: 0 20px;
}
.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    display: block;
    margin-bottom: 15px;
}

/* Why Choose Us Cards */
.wcu-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}
.wcu-card img {
    width: 200px;
    height: 200px;
    border-radius: 25px;
    object-fit: cover;
    margin-right: 40px;
}

/* Packages */
.package-card {
    border-radius: 30px;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.package-card.basic {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.package-card.deep {
    background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
}
.package-card.move {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

/* Compact Form */
.compact-form {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.compact-form .form-control {
    background-color: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
}

/* Faq */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.accordion-button {
    font-weight: 600;
    color: var(--primary-blue);
}
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 176, 80, 0.1);
    color: var(--secondary);
}

/* Deal Cards (specials.blade.php) */
.deal-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}
.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
.deal-card i {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.deal-card:hover i {
    transform: scale(1.15);
}
.deal-info-box {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 15px;
    margin-top: auto;
}

@media (max-width: 992px) {
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
    }

    .section-padding {
        padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 20px);
    }

    .header-main .bg-primary-container {
        font-size: 0.8rem;
        padding: 6px 12px !important;
    }

    .header-main .navbar-logo {
        height: 40px;
    }

    .header-main .navbar-brand span {
        font-size: 1.1rem;
    }

    .navbar {
        padding: 6px 0;
    }

    .footer {
        padding: 80px 0 100px 0;
    }
}

@media (max-width: 768px) {
    .footer-img{
        height: 120px;
        width: 120px;
    }
    .feature-row {
        flex-direction: column;
        gap: 30px;
        margin-top: -30px;
    }
    .wcu-card {
        flex-direction: column;
        text-align: center;
    }
    .wcu-card img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .wcu-card.flex-row-reverse {
        flex-direction: column !important;
    }
    .wcu-card.flex-row-reverse img {
        margin-left: 0;
    }

    .ba-wrapper {
        height: 250px;
    }
    .ba-badge-circle {
        width: 100px;
        height: 100px;
    }
    .ribbon {
        width: 150px;
        font-size: 0.75rem;
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        justify-content: space-around;
        padding: 10px 0;
    }
    .bottom-nav .nav-item {
        text-align: center;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.75rem;
    }
    .bottom-nav .nav-item i {
        display: block;
        font-size: 1.25rem;
    }
    .bottom-nav .nav-item.active {
        color: var(--primary-blue);
    }

    .hero-section h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        line-height: 1.2;
        padding: 0 0.75rem;
        word-wrap: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
    }

    .hero-section p {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 1.5rem;
        padding: 0 0.75rem;
        word-wrap: break-word;
        overflow-wrap: anywhere;
        max-width: 100%;
        word-break: break-word;
        white-space: normal;
    }

    .hero-section .btn {
        min-width: 50px !important;
        padding: 12px 20px !important;
        font-size: 0.9rem ;
    }
     .hero-section .btn span{
        font-size: 1.2rem !important; ;

     }

    .hero-section .container {
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-section {
        overflow-x: hidden;
    }

    #heroSlider {
        overflow-x: hidden;
        width: 100%;
    }

    .slide-item {
        width: 100%;
        overflow-x: hidden;
    }

    .hero-slider {
        overflow-x: hidden;
        width: 100%;
    }

    .hero-section h1,
    .hero-section p,
    .hero-section .container,
    .hero-section .btn {
        max-width: 100vw;
    }

    body, html {
        overflow-x: hidden;
    }

    .hero-section .container > * {
        max-width: 100%;
    }

    .hero-section h1 span {
        display: inline;
        word-break: break-word;
    }

    .hero-section h1,
    .hero-section p {
        display: block;
        width: 100%;
    }

    .showcase-img {
        height: 280px;
    }

    .compact-form {
        padding: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .quote-card {
        padding: 24px;
    }

    .passion-img {
        height: 300px;
    }

    .edge-img {
        min-height: 200px;
    }

    .map-container {
        height: 300px;
    }

    .about-images-grid {
        gap: 10px;
    }

    .about-img-main {
        height: 200px;
    }

    .about-img-sub {
        height: 140px;
    }

    .floating-whatsapp {
        bottom: 20px;
        left: 16px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .scroll-top {
        bottom: 20px;
        right: 16px;
        width: 45px;
        height: 45px;
    }
}
    .wcu-card {
        flex-direction: column;
        text-align: center;
    }
    .wcu-card img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .wcu-card.flex-row-reverse {
        flex-direction: column !important;
    }
    .wcu-card.flex-row-reverse img {
        margin-left: 0;
    }

    .ba-wrapper {
        height: 250px;
    }
    .ba-badge-circle {
        width: 100px;
        height: 100px;
    }
    .ribbon {
        width: 150px;
        font-size: 0.75rem;
    }

    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        justify-content: space-around;
        padding: 10px 0;
    }
    .bottom-nav .nav-item {
        text-align: center;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.75rem;
    }
    .bottom-nav .nav-item i {
        display: block;
        font-size: 1.25rem;
    }
    .bottom-nav .nav-item.active {
        color: var(--primary-blue);
    }


/* =============================================
   About Us Page — All Sections
   ============================================= */

/* Pillar subtitle max-width (replaces removed inline style) */
.pillars-subtitle {
    max-width: 600px;
}

/* Passion quote block */
.passion-quote {
    border-left: 4px solid var(--secondary);
}

/* Edge section image */
.edge-img {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
}

/* About Us Page Refinement */

.passion-section {
    padding: 100px 0;
}
.passion-img-wrapper {
    position: relative;
    padding-left: 0px;
}
.passion-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid var(--secondary);
    border-radius: 20px;
}
.passion-img {
    border-radius: 20px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.passion-stat {
    margin-top: 2rem;
}
.passion-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}
.passion-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pillars-section {
    background-color: var(--surface);
    padding: 100px 0;
}
.pillar-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.pillar-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.edge-section {
    padding: 100px 0;
}
.edge-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.edge-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 600;
}
.edge-list li::before {
    content: "\e5ca";
    font-family: "Material Symbols Outlined";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

.how-it-works-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

/* =============================================
   Gallery Page — Modern Template
   ============================================= */

.gallery-filter {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid #eee;
    position: relative;
}

@media (max-width: 768px) {
    .gallery-filter .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* Wrapper for buttons */
.filter-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

/* Scroll container */
.filter-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0 30px; /* space for buttons */
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth; /* smooth sliding */
    scrollbar-width: none;
}

.filter-nav::-webkit-scrollbar {
    display: none;
}

/* Links */
.filter-nav li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 3px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    line-height: 1.9;
}

.filter-nav li a.active,
.filter-nav li a:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px 12px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.scroll-btn.left {
    left: 0;
}

.scroll-btn.right {
    right: 0;
}

.gallery-grid-v2 {
    padding: 80px 0;
    background: var(--surface);
}

.gallery-item-v2 {
    margin-bottom: 40px;
}

.ba-card-v2 {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
}

.ba-card-v2:hover {
    transform: translateY(-10px);
}

.ba-images-container {
    display: flex;
    height: 300px;
    position: relative;
}

.ba-side-v2 {
    width: 50%;
    height: 100%;
    position: relative;
}

.ba-side-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ba-label.before {
    left: 20px;
    background: rgba(0, 30, 51, 0.8);
    color: var(--secondary);
}

.ba-label.after {
    right: 20px;
    background: white;
    color: var(--primary);
}

.ba-content-v2 {
    padding: 30px;
}

.ba-content-v2 .category-tag {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.ba-content-v2 h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary);
}

.ba-content-v2 p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.stats-banner-v2 {
    background: var(--primary);
    padding: 80px 0;
    color: var(--white);
}

.stat-item-v2 {
    text-align: center;
}

.stat-item-v2 .icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary);
    font-size: 1.5rem;
}

.stat-item-v2 h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item-v2 p {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0;
}

.specialized-services {
    padding: 100px 0;
    background: white;
}

.service-card-mini {
    padding: 40px;
    border-radius: 24px;
    background: var(--surface-container-low);
    height: 100%;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-card-mini:hover {
    background: white;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border-color: #eee;
}

.service-card-mini .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 2rem;
}

.service-card-mini h4 {
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card-mini p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-card-mini .learn-more {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 4px;
}

.testimonials-v2 {
    padding: 100px 0;
    background: var(--surface);
}

.testimonial-card-v2 {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.testimonial-card-v2 .stars {
    color: var(--accent-yellow);
    margin-bottom: 20px;
}

.testimonial-card-v2 .stars i {
    font-size: 0.8rem;
    margin-right: 2px;
}

.testimonial-card-v2 p {
    font-size: 1rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h5 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.testimonial-user span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.cta-v2 {
    padding: 60px 0;
    background: linear-gradient(90deg, #12344d, #0f9d7a) !important;
}

.cta-v2 h2 {
    color: var(--white);
    font-weight: 800;
    margin-bottom: 0;
}

.cta-v2 .btn-white {
    background: white;
    color: var(--primary);
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 12px;
    border: none;
    transition: transform 0.3s;
}

.cta-v2 .btn-white:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .gallery-hero-v2 h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero-v2 h1 {
        font-size: 2.5rem;
    }
    .filter-nav {
        justify-content: flex-start;
    }
    .ba-images-container {
        height: 200px;
    }
    .cta-v2 {
        text-align: center;
    }
    .cta-v2 h2 {
        margin-bottom: 30px;
    }
}
.timeline-row {
    position: relative;
    margin-top: 50px;
}
.timeline-row::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}
.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
}
.timeline-step {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.team-section-new {
    padding: 100px 0;
    background-color: var(--surface);
}
.team-member-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.team-initials {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-container);
    color: var(--accent-green-dk);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 700;
}

.partners-section {
    padding: 60px 0;
    background-color: var(--surface-container-low);
}
.partner-logo {
    opacity: 0.6;
    transition: opacity 0.3s;
    max-height: 40px;
}
.partner-logo:hover {
    opacity: 1;
}

.cta-section-new {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}
.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .edge-list {
        grid-template-columns: 1fr;
    }
    .timeline-row::before {
        display: none;
    }
    .timeline-item {
        margin-bottom: 40px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .about-testimonials-section .row {
        gap: 20px;
    }
}

/* =============================================
   Testimonials — About Us
   ============================================= */
.about-testimonials-section {
    padding: 100px 0;
    background-color: var(--surface-container-low);
}

.about-testimonial-card {
    background: var(--surface-container-lowest);
    border-radius: 20px;
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.about-testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f5a623;
    font-size: 1rem;
}

.about-testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
    margin: 0;
}

.about-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.about-testimonial-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: block;
}

.about-testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =============================================
   Contact Us Page
   ============================================= */

.contact-info-section {
    padding: 100px 0;
    background-color: var(--surface);
}

.contact-info-section .contact-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.contact-info-section .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.contact-info-section .contact-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 108, 82, 0.1);
    color: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
}

.contact-info-section .contact-card a {
    display: inline-block;
    margin-top: 0.5rem;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =============================================
   Services Page — All Sections
   ============================================= */

.service-categories-bar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-icon-circle {
    width: 64px;
    height: 64px;
    background-color: var(--surface-container-low);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-item:hover .category-icon-circle {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-5px);
}

/* Tablet styles for service categories bar */
@media (min-width: 768px) and (max-width: 991.98px) {
    .service-categories-bar .d-flex {
        justify-content: center !important;
        gap: 1.5rem !important;
    }
    
    .category-item {
        flex: 0 0 calc(33.333% - 1.5rem);
        max-width: calc(33.333% - 1.5rem);
    }
    
    .category-icon-circle {
        width: 56px;
        height: 56px;
    }
    
    .category-icon-circle i {
        font-size: 1.25rem !important;
    }
    
    .category-item p {
        font-size: 0.8rem;
    }
}

/* Mobile styles for service categories bar */
@media (max-width: 767.98px) {
    .service-categories-bar .d-flex {
        justify-content: center !important;
        gap: 1rem !important;
    }
    
    .category-item {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
    
    .category-icon-circle {
        width: 48px;
        height: 48px;
    }
    
    .category-icon-circle i {
        font-size: 1.1rem !important;
    }
    
    .category-item p {
        font-size: 0.75rem;
    }
}

.solution-card {
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.step-number-circle {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
}

.process-line {
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--secondary) 0,
        var(--secondary) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 0;
}

@media (min-width: 768px) {
    .process-line {
        top: 25px;
        left: calc(10% + 25px);
        right: calc(10% + 25px);
        width: calc(80% - 50px);
    }
}

@media (min-width: 1024px) {
    .process-line {
        top: 25px;
        left: calc(10% + 25px);
        right: calc(10% + 25px);
        width: calc(80% - 50px);
    }
}

.hover-translate-y:hover {
    transform: translateY(-10px);
}

.transition-all {
    transition: all 0.3s ease;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: var(--primary-blue-hover) !important;
}

/* =============================================
   Pricing Page — All Sections
   ============================================= */

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

.pricing-model-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pricing-model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-tabs .btn:not(.btn-secondary) {
    color: var(--text-muted);
}

.pricing-tabs .btn:not(.btn-secondary):hover {
    color: var(--primary-blue);
}

.flat-rate-card {
    transition: all 0.3s ease;
}

.flat-rate-card:hover {
    border-color: var(--secondary) !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.comparison-table-wrapper th {
    font-family: "Manrope", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table-wrapper td {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 1rem !important;
    }

    .comparison-table-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .comparison-table-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 3px;
    }

    .comparison-table-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0, 75, 135, 0.3);
        border-radius: 3px;
    }

    .comparison-table-wrapper table {
        min-width: 650px;
    }

    .comparison-table-wrapper th,
    .comparison-table-wrapper td {
        white-space: nowrap;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.85rem;
    }

    .comparison-table-wrapper th.ps-5,
    .comparison-table-wrapper td.ps-5 {
        padding-left: 1.25rem !important;
    }
}

.badge-icon-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: var(--secondary);
}

.testimonial-card .avatar {
    font-weight: 700;
    font-size: 1.2rem;
}

.cta-section .btn-white:hover {
    background-color: var(--bg-light) !important;
}

@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        border-radius: 20px;
        padding: 10px;
    }

    .pricing-tabs .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

.badge-sm {
    font-size: 10px;
}

.abstract-shape {
    width: 300px;
    height: 300px;
    z-index: -1;
}

.most-popular-badge {
    border-radius: 0 0 10px 10px;
    font-size: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
}

.max-w-600 {
    max-width: 600px;
}

/* =============================================
   Feedback 1 Page Styles
   ============================================= */
.feedback-page {
    background-color: var(--bg-light);
    min-height: 100vh;
}

.feedback-header {
    background-color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.feedback-header .back-btn,
.feedback-header .more-btn {
    color: var(--on-surface-variant);
    cursor: pointer;
    text-decoration: none;
}

.feedback-header .title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.feedback-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.feedback-content {
    text-align: left;
}

.feedback-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.1;
}

.feedback-content p {
    color: var(--on-surface-variant);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.feedback-form .form-group {
    margin-bottom: 25px;
}

.feedback-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.feedback-form .form-control {
    background-color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 18px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    color: var(--on-surface);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feedback-form .form-control:focus {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    outline: none;
}

.feedback-form .form-control::placeholder {
    color: var(--border-light);
}

.rating-box {
    background-color: var(--surface-container-low);
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 30px;
}

.rating-box label {
    display: block;
    margin-bottom: 15px;
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.star-btn {
    background: none;
    border: none;
    color: var(--border-light);
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.star-btn.active {
    color: var(--secondary);
}

.star-btn .material-symbols-outlined {
    font-size: inherit;
    font-variation-settings:
        "FILL" 1,
        "wght" 500,
        "GRAD" 0,
        "opsz" 48;
}

.star-btn:not(.active) .material-symbols-outlined {
    font-variation-settings:
        "FILL" 1,
        "wght" 400,
        "GRAD" 0,
        "opsz" 48;
}

.btn-submit-review {
    background-color: var(--primary);
    color: var(--white);
    width: 100%;
    padding: 20px;
    border-radius: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 30, 51, 0.25);
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-submit-review:hover {
    background-color: var(--primary-container);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 30, 51, 0.3);
}

.terms-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding-bottom: 60px;
}

/* Desktop Responsiveness for Feedback Page */
@media (min-width: 992px) {
    .feedback-header {
        padding: 20px 80px;
    }

    .feedback-header .title {
        font-size: 1.5rem;
    }

    .feedback-container {
        max-width: 1200px;
        display: flex;
        gap: 80px;
        padding-top: 60px;
        padding-bottom: 60px;
        align-items: flex-start;
    }

    .feedback-hero-wrapper {
        flex: 1;
        margin-bottom: 0;
        position: sticky;
        top: 120px;
        border-radius: 40px;
    }

    .feedback-hero-img {
        height: 650px;
    }

    .feedback-main-form-wrapper {
        flex: 1;
    }

    .feedback-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }

    .feedback-content p {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .feedback-form .form-control {
        padding: 20px 30px;
        font-size: 1.1rem;
    }

    .rating-box {
        padding: 40px;
    }

    .star-btn {
        font-size: 4rem;
    }
}

/* =============================================
   Feedback 2 Page
   ============================================= */

.feedback2-page {
    background-color: var(--bg-light);
    padding-bottom: 120px; /* Space for bottom nav */
}

.feedback2-header {
    background: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.feedback2-header .back-btn {
    color: var(--primary);
    text-decoration: none;
}

.feedback2-header .title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}

.feedback2-header .more-btn {
    color: var(--primary);
}

.feedback-form-container-v2 {
    position: relative;
    z-index: 10;
}

.feedback-card-v2 {
    background-color: var(--primary-container);
    padding: 60px 200px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .feedback-card-v2 {
        padding: 50px 100px;
    }
}

@media (max-width: 992px) {
    .feedback-card-v2 {
        padding: 40px 60px;
    }
}

@media (max-width: 768px) {
    .feedback-card-v2 {
        padding: 30px 20px;
    }

    .card-title-v2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .form-group-v2 {
        margin-bottom: 20px;
    }

    .form-group-v2 label,
    .rating-label-v2 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }

    .form-control-v2 {
        padding: 14px 18px;
        font-size: 1rem;
        border-radius: 16px;
    }

    .rating-stars-v2 {
        gap: 12px;
        justify-content: flex-start;
    }

    .star-btn-v2 .material-symbols-outlined {
        font-size: 2.8rem;
    }

    .textarea-v2 {
        min-height: 130px;
    }

    .btn-submit-v2 {
        padding: 14px 24px;
        font-size: 0.85rem;
        border-radius: 50px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .feedback-card-v2 {
        padding: 24px 16px;
    }

    .card-title-v2 {
        font-size: 1.35rem;
    }

    .form-group-v2 label,
    .rating-label-v2 {
        font-size: 0.95rem;
    }

    .form-control-v2 {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .rating-section-v2 {
        margin-bottom: 24px;
    }

    .star-btn-v2 .material-symbols-outlined {
        font-size: 2.4rem;
    }

    .rating-stars-v2 {
        gap: 8px;
    }

    .btn-submit-v2 {
        padding: 13px 20px;
        font-size: 0.8rem;
    }
}

    .card-title-v2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .feedback-card-v2 .row > .col-12 > div {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .feedback-card-v2 .col-md-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .form-control-v2 {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .rating-stars-v2 {
        gap: 10px;
    }

    .star-btn-v2 .material-symbols-outlined {
        font-size: 2.4rem;
    }

    .textarea-v2 {
        min-height: 120px;
    }

    .btn-submit-v2 {
        padding: 12px;
        font-size: 0.75rem;
    }

@media (max-width: 480px) {
    .feedback-card-v2 {
        padding: 24px 16px;
    }

    .card-title-v2 {
        font-size: 1.25rem;
    }

    .rating-section-v2 {
        margin-bottom: 20px;
    }

    .star-btn-v2 .material-symbols-outlined {
        font-size: 2rem;
    }

    .rating-stars-v2 {
        gap: 6px;
    }
}

.step-indicator-v2 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.card-title-v2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.rating-section-v2 {
    margin-bottom: 30px;
}

.rating-label-v2 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.rating-stars-v2 {
    display: flex;
    gap: 15px;
}

.star-btn-v2 {
    background: none;
    border: none;
    padding: 0;
    color: var(--secondary);
    cursor: pointer;
    transition: transform 0.2s;
}

.star-btn-v2:hover {
    transform: scale(1.1);
}

.star-btn-v2 .material-symbols-outlined {
    font-size: 3rem;
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 48;
}

.star-btn-v2.active .material-symbols-outlined {
    font-variation-settings:
        "FILL" 1,
        "wght" 400,
        "GRAD" 0,
        "opsz" 48;
}

.star-btn-v2.inactive {
    color: rgba(255, 255, 255, 0.2);
}

.form-group-v2 {
    margin-bottom: 20px;
}

.form-group-v2 label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.form-control-v2 {
    width: 100%;
    padding: 15px 20px;
    border-radius: 16px;
    border: none;
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.form-control-v2:focus {
    outline: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.form-control-v2::placeholder {
    color: #aaa;
}

.select-wrapper-v2 {
    position: relative;
}

.select-wrapper-v2::after {
    content: "\e5cf";
    font-family: "Material Symbols Outlined";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.select-v2 {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.textarea-v2 {
    min-height: 150px;
    resize: none;
}

.btn-submit-v2 {
    width: 100%;
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary-container);
    padding: 13px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-submit-v2:hover {
    background: linear-gradient(
        90deg,
        var(--primary-container),
        var(--secondary)
    ) !important;

    color: var(--white);
}

.privacy-section {
    padding: 40px 25px;
}

.privacy-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.privacy-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--text-muted);
}

.privacy-text {
    font-size: 0.85rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-view-policy {
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 3px;
}

.bottom-navbar-v2 {
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    background-color: var(--white);
    border-radius: 30px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-item-v2.active {
    color: var(--secondary);
}

.nav-item-v2 .material-symbols-outlined {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.nav-item-v2 span {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .feedback2-page {
        padding-bottom: 0;
    }

    .feedback2-header {
        padding: 20px 100px;
    }

    .feedback2-hero {
        height: 500px;
        display: flex;
        align-items: center;
    }

    .feedback2-hero-overlay {
        padding: 0 100px;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        background: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .feedback2-hero-img {
        position: absolute;
        inset: 0;
        z-index: -1;
    }

    .feedback2-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

    .hero-heading-v2 {
        font-size: 4rem;
        max-width: 600px;
        margin: 0;
    }

    .feedback-form-container-v2 {
        padding-bottom: 100px;
        display: flex;
        justify-content: center;
    }

    .feedback-card-v2 {
        width: 100%;
    }

    .feedback-card-v2 form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .card-title-v2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        grid-column: 1 / 3;
    }

    .rating-section-v2 {
        grid-column: 1 / 3;
        background: rgba(255, 255, 255, 0.05);
        padding: 23px;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .form-group-v2 {
        margin-bottom: 0;
    }

    .form-group-v2:nth-of-type(1),
    .form-group-v2:nth-of-type(2) {
        grid-column: span 1;
    }

    .form-group-v2:nth-of-type(3),
    .form-group-v2:nth-of-type(4) {
        grid-column: span 1;
    }

    .form-group-v2:nth-of-type(5) {
        grid-column: 1 / 3;
    }

    .btn-submit-v2 {
        grid-column: 1 / 3;
        max-width: 400px;
        margin: 20px auto 0;
    }

    .privacy-section {
        max-width: 1000px;
        margin: 0 auto;
        padding: 100px 0;
        text-align: center;
    }

    .privacy-title {
        display: inline-block;
        padding-left: 0;
        padding-bottom: 10px;
        margin-bottom: 25px;
    }

    .privacy-title::before {
        left: 50%;
        bottom: 0;
        top: auto;
        transform: translateX(-50%);
        width: 100px;
        height: 2px;
    }

    .privacy-text {
        font-size: 1.1rem;
        max-width: 800px;
        margin: 0 auto 30px;
    }

    .bottom-navbar-v2 {
        display: none;
    }
}

@media (min-width: 1200px) {
    .feedback2-header {
        padding: 25px 150px;
    }

    .feedback2-hero-overlay {
        padding: 0 150px;
    }
}
───────────────────────────────── */

/* ───────────────────────────────────────
   FILTER TABS
─────────────────────────────────────── */

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.filter-btn {
    padding: 7px 20px;
    border: 1.5px solid #ccc;
    border-radius: 20px;
    background: var(--white);
    font-family: var(--font-b);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--on-surface-variant);
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover {
    border-color: var(--green);
    color: var(--green-dk);
}
.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    font-weight: 600;
}

/* ───────────────────────────────────────
   PHOTO GRID
─────────────────────────────────────── */
.gallery-grid-section {
    padding: 36px 40px 0;
    max-width: var(--max-w);
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 8px;
}

/* large image spans both rows on left */
.grid-item.large {
    grid-column: 1;
    grid-row: 1 / span 2;
}
/* bottom-right image spans two columns */
.grid-item.wide {
    grid-column: 2 / span 2;
}

.grid-item {
    overflow: hidden;
    border-radius: 4px;
    background: var(--border-light);
}
.grid-item img {
    transition: transform 0.45s ease;
}
.grid-item:hover img {
    transform: scale(1.05);
}

/* ───────────────────────────────────────
   TRANSFORMATION SECTION
─────────────────────────────────────── */
.transformation-section {
    padding: 64px 40px 48px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 38px;
}
.section-header h2 {
    font-family: var(--font-h);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.section-underline {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin: 0 auto;
}

/* Before / After */
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.ba-card {
    display: flex;
    flex-direction: column;
}
.ba-images {
    display: flex;
    gap: 5px;
    border-radius: 6px;
    overflow: hidden;
}
.ba-item {
    position: relative;
    flex: 1;
    height: 185px;
    overflow: hidden;
}
.ba-item img {
    transition: transform 0.4s ease;
}
.ba-item:hover img {
    transform: scale(1.04);
}

.ba-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-family: var(--font-h);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 3px 8px;
    border-radius: 3px;
    color: #fff;
}
.ba-badge.before {
    background: var(--accent-red);
}
.ba-badge.after {
    background: var(--green);
}

.ba-label {
    font-family: var(--font-b);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 10px;
}

/* Video Cards */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.video-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 160px;
    cursor: pointer;
}
.video-card img {
    filter: brightness(0.6);
    transition: filter 0.3s;
}
.video-card:hover img {
    filter: brightness(0.45);
}

.play-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.video-card:hover .play-btn {
    background: rgba(255, 255, 255, 0.45);
}

.video-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-family: var(--font-b);
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
}

/* ───────────────────────────────────────
   FEATURES
─────────────────────────────────────── */
.features-section {
    padding: 64px 40px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #e8eaf6;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg {
    width: 24px;
    height: 24px;
}
.feature-icon.eco {
    background: #e8f5e9;
    color: var(--green-dk);
}

.feature-item h3 {
    font-family: var(--font-h);
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
}
.feature-item p {
    font-size: 0.82rem;
    color: var(--gray-txt);
    line-height: 1.65;
    max-width: 195px;
}

/* ───────────────────────────────────────
   TESTIMONIALS
─────────────────────────────────────── */
.testimonials-section {
    background: var(--off-white);
    padding: 60px 40px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--max-w);
    margin: 0 auto;
}
.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stars {
    color: var(--accent-yellow);
    font-size: 1rem;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 0.87rem;
    color: var(--on-surface-variant);
    line-height: 1.7;
    font-style: italic;
}
.testimonial-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
}

/* ───────────────────────────────────────
   CTA
─────────────────────────────────────── */
.cta-section {
    background: var(--off-white);
    padding: 40px 40px 56px;
}
.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: 18px;
    max-width: 940px;
    margin: 0 auto;
    padding: 56px 40px;
    text-align: center;
}
.cta-box h2 {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}
.cta-btn {
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
}
.cta-white {
    background: var(--white);
    color: var(--navy);
    border: 2px solid #fff;
}
.cta-white:hover {
    background: rgba(255, 255, 255, 0.88);
}
.cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.cta-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
}

/* ───────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────── */
@media (max-width: 960px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px;
    }
    .grid-item.large {
        grid-column: 1 / span 2;
        grid-row: 1;
    }
    .grid-item.wide {
        grid-column: 1 / span 2;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .gallery-grid-section,
    .transformation-section,
    .features-section,
    .cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonials-section {
        padding: 40px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .grid-item.large,
    .grid-item.wide {
        grid-column: 1;
        grid-row: auto;
        height: 220px;
    }
    .grid-item {
        height: 180px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
    .cta-box h2 {
        font-size: 1.5rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ───────────────────────────────────────
   SPECIALS PAGE
─────────────────────────────────────── */

.badge-special {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 175, 80, 0.9);
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.sp2-card-features {
    padding: 0px;
    flex-grow: 1;
}

.sp2-card-features li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0px;
}

.sp2-card-features svg {
    width: 14px;
    height: 14px;
    color: #4caf50;
    flex-shrink: 0;
}

.sp2-card-dark .sp2-card-features svg,
.highlight-card .sp2-card-features svg {
    color: #81c784;
}

.text-highlight {
    color: #81c784; /* Light green */
}

.btn-book-special {
    background: var(--green-dk);
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn-book-special:hover {
    background: var(--green);
}

.btn-view-services {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-view-services:hover {
    background: rgba(255, 255, 255, 0.3);
}

.offers-section {
    padding: 60px 40px;
    max-width: var(--max-w);
    margin: 0 auto;
}

.offers-header {
    margin-bottom: 40px;
}

.offers-header h2 {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.offers-underline {
    display: block;
    width: 100px;
    height: 3px;
    background: var(--green-dk);
    border-radius: 2px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.offer-card.highlight-card {
    background: var(--navy);
    color: #fff;
    border: none;
}

.best-deal-ribbon {
    position: absolute;
    top: 15px;
    left: -30px;
    background: var(--green-dk);
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 30px;
    transform: rotate(-45deg);
    letter-spacing: 1px;
}

.offer-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.offer-icon {
    width: 40px;
    height: 40px;
    color: var(--green-dk);
}

.highlight-card .offer-icon {
    color: #81c784;
}

.offer-price-info {
    text-align: right;
}

.price-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.highlight-card .price-label {
    color: rgba(255, 255, 255, 0.7);
}

.price-label strike {
    color: rgba(255, 255, 255, 0.5);
}

.price-amount {
    display: block;
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.highlight-card .price-amount {
    color: #fff;
}

.offer-card h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.highlight-card h3 {
    color: #fff;
}

.offer-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.85);
}

.btn-select-offer {
    display: block;
    text-align: center;
    background: #f4f5f7;
    color: var(--navy);
    font-family: var(--font-h);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-select-offer:hover {
    background: #e0e2e6;
}

.btn-select-offer.btn-green {
    background: var(--green-dk);
    color: #fff;
}

.btn-select-offer.btn-green:hover {
    background: var(--green);
}

.feature-item-alt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
}

.feature-icon-alt {
    width: 32px;
    height: 32px;
    color: var(--green-dk);
    margin-bottom: 5px;
}

.feature-item-alt h3 {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
}

.feature-item-alt p {
    font-size: 0.85rem;
    color: var(--gray-txt);
    line-height: 1.5;
    margin: 0;
}

.cta-box-alt {
    background: var(--navy);
    border-radius: 12px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-content h2 {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.btn-book-online {
    display: inline-block;
    background: var(--green-dk);
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 4px;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-book-online:hover {
    background: var(--green);
}

@media (max-width: 960px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-box-alt {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 40px 30px;
    }
    .cta-content {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .specials-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .offers-grid {
        grid-template-columns: 1fr;
    }
    .feature-item-alt {
        align-items: center;
        text-align: center;
    }
}

/* service detail page  */

/* Service 2 Page Styles */

.s2-badge {
    background-color: var(--accent-light-teal);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.s2-btn-blue {
    background-color: #0a1128;
    color: var(--white);
}

.s2-btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-muted);
}

/* Features Section */
.s2-features {
    padding: 120px 0;
}

.s2-features-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 560px);
    gap: 4rem;
    align-items: center;
}

.s2-features-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.eyebrow-label {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.s2-features-text h2 {
    font-size: clamp(3rem, 4.2vw, 4.5rem);
    margin-bottom: 0;
    line-height: 1.03;
    color: #08142c;
}

.s2-features-text p {
    font-size: 1rem;
    color: rgba(30, 41, 59, 0.82);
    margin-bottom: 0;
    line-height: 1.8;
    max-width: 560px;
}

.s2-features-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.s2-img-1,
.s2-img-2 {
    width: 48%;
    height: 420px;
    background: var(--border-light);
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.s2-img-2 {
    margin-top: 70px;
}

.s2-img-1:hover,
.s2-img-2:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.2);
}

@media (max-width: 992px) {
    .s2-features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .s2-features-images {
        justify-content: center;
    }

    .s2-img-1,
    .s2-img-2 {
        width: 100%;
        height: 280px;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .s2-features {
        padding: 60px 0;
    }

    .s2-features-grid {
        gap: 2rem;
    }

    .s2-features-text {
        gap: 1rem;
    }

    .s2-features-text h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .s2-features-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .eyebrow-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .s2-features-images {
        flex-direction: column;
        gap: 16px;
    }

    .s2-img-1,
    .s2-img-2 {
        width: 100%;
        height: 220px;
        border-radius: 16px;
        margin-top: 0;
    }

    .s2-feature-item {
        padding: 14px 16px;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    text-align: center;
}

.comparison-large-placeholder {
    width: 100%;
    height: 500px;
    background: var(--border-light);
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.label-before,
.label-after {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-weight: 700;
    border-radius: 4px;
    font-size: 12px;
}

.label-before {
    left: 20px;
}
.label-after {
    right: 20px;
    background: var(--accent-color);
}

.comparison-thumbs {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.thumb-placeholder {
    width: 250px;
    height: 150px;
    background: var(--border-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Featured Service */
.featured-service {
    padding-bottom: 80px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-img {
    height: 100%;
    min-height: 400px;
    position: relative;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-img {
        min-height: 250px;
    }
    .featured-info {
        padding: 30px 20px;
    }
    .featured-info h2 {
        font-size: 24px;
        word-break: break-word;
    }
    .featured-info p {
        font-size: 15px;
    }
}

.featured-info {
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag-popular {
    background: var(--accent-light-teal);
    color: var(--secondary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    width: fit-content;
    margin-bottom: 20px;
}

.featured-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.featured-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.view-details {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}
/* Wrapper */
.service-wrapper {
    position: relative;
    padding: 0 60px; /* 👈 space for buttons on both sides */
}

/* Horizontal scroll */
.service-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 10px;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar */
.service-grid::-webkit-scrollbar {
    display: none;
}

/* Card */
.service-card {
    flex: 0 0 calc((100% - 50px) / 3);
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    scroll-snap-align: start;
}

.service-card:hover {
    transform: translateY(-8px);
}

/* Image */
.card-img {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* Content */
.card-body {
    padding: 20px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
}

.card-header i {
    background: var(--surface);
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
}

.card-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Buttons */
.scroll-service-btn {
    position: absolute;
    bottom: -12%;
    color: var(--primary-blue);
    background-color: transparent;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: 0.3s;
    font-size: 25px;
}

.scroll-service-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Left button */
.btn-left {
    left: 48%;
    transform: rotate(180deg);
}

/* Right button */
.btn-right {
    left: 52%;
}

/* haq section */

/* Hero Section */

.badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--badge-bg);
    color: var(--badge-text);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.badge i {
    margin-right: 8px;
}

/* Contact Cards */
.contact-card {
    background: var(--white);
    padding: 5px 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--accent-green-dk);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon-box.email {
    background-color: #006341;
}

.card-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.card-info .contact-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
}

/* Hero Buttons */

.btn-primary {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

/* Visual Area */
.haq-visual {
    flex: 1;
    position: relative;
    height: 550px;
}

.main-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.card-top {
    width: 250px;
    top: 50px;
    left: -40px;
    transform: rotate(-8deg);
}

.card-bottom {
    width: 350px;
    bottom: 50px;
    right: -20px;
    transform: rotate(5deg);
}

.floating-card img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .haq-header nav {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .card-top,
    .card-bottom {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Section Common Styles */
.section {
    padding: 3rem 5%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-title-wrapper {
    max-width: 600px;
    text-align: left;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--accent-light-teal);
    color: var(--accent-teal);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.counter {
    font-weight: 600;
    color: var(--text-muted);
}

.btn-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        background 0.2s ease;
}

.btn-nav:hover {
    transform: scale(1.08);
    opacity: 0.95;
    background: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* Gallery Grid */
.gallery-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 1.2rem;
    width: 100%;
    margin: 0 auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    width: calc((100% - 3rem) / 3);
    min-width: 280px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    height: 320px;
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .gallery-card {
        flex: 0 0 85%;
        width: 85%;
        min-width: 260px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .gallery-card {
        flex: 0 0 88%;
        width: 88%;
        min-width: 240px;
        height: 260px;
    }
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-container {
    position: relative;
    height: 100%;
    display: flex;
}

.comparison-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.label-before,
.label-after {
    position: absolute;
    top: 15px;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    color: var(--white);
    z-index: 5;
}

.label-before {
    left: 15px;
    background: rgba(0, 0, 0, 0.5);
}

.label-after {
    right: 15px;
    background: var(--accent-teal);
}

.card-info {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Video Section Specifics */
.video-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0 1.2rem;
    width: 100%;
    margin: 0 auto 0.5rem;
    height: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    position: relative;
    border-radius: 1.8rem;
    overflow: hidden;
    height: 320px;
    background: var(--surface);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .video-card {
        flex: 0 0 85%;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .video-card {
        flex: 0 0 88%;
        height: 240px;
    }
}

.video-thumbnail {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.18) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.25);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
    z-index: 2;
}

.video-card:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(15, 23, 42, 0.92);
}

.video-info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.video-title {
    font-size: 1rem;
    font-weight: 700;
}

.video-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.video-duration {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        width: calc((100% - 1.5rem) / 2);
        min-width: 260px;
    }
    .video-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: 230px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .slider-controls {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 425px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }

    .service-hero-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
        line-height: 1.2;
        padding: 0 0.75rem;
    }

    .headline{
        font-size: 15px !important;
    }

    .hero-section p {
        font-size: 0.85rem;
    }

    .hero-section .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .slider-arrow .material-symbols-outlined {
        font-size: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .navbar-logo {
        height: 36px;
    }

    .navbar-brand span {
        font-size: 1rem;
    }

    .header-main .bg-primary-container {
        flex-wrap: nowrap !important;
        gap: 6px !important;
        font-size: 0.7rem;
        overflow: hidden;
    }

    .header-main .bg-primary-container > div:first-child {
        flex-shrink: 1;
        min-width: 0;
    }

    .header-main .bg-primary-container > div:last-child {
        flex-shrink: 0;
    }

    .header-main .bg-primary-container .badge-announcement {
        font-size: 0.6rem;
        padding: 2px 8px !important;
        white-space: nowrap;
    }

    .header-main .bg-primary-container span.d-none.d-sm-inline {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .service-card {
        min-width: 260px;
    }

    .cta-buttons {
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .hero-section h1 {
        font-size: 1.35rem;
    }

    .service-hero-title {
        font-size: clamp(1.25rem, 5.5vw, 1.5rem) !important;
        line-height: 1.25;
    }

    .hero-section .container {
        padding: 0 0.75rem;
    }

    .section-padding {
        padding: 32px 12px;
    }
}

@media (max-width: 320px) {
    .hero-section h1 {
        font-size: 1.25rem;
    }

    .service-hero-title {
        font-size: clamp(1.15rem, 6vw, 1.35rem) !important;
        line-height: 1.3;
    }

    .hero-section p {
        font-size: 0.8rem;
    }

    .navbar-brand span {
        font-size: 0.9rem;
    }

    .navbar-logo {
        height: 32px;
    }
}

/* ============================================================
   Service Detail Animations
   Scroll-triggered & load animations for the service detail page
   ============================================================ */

/* ----------------------------------------------------------
   1. KEYFRAME DEFINITIONS
   ---------------------------------------------------------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.88);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(30px) skewY(2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
    }
}

@keyframes heroBgZoom {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

@keyframes floatUpDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 0 0 20px 6px rgba(255, 255, 255, 0.1);
    }
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

@keyframes staggerFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealMask {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes borderDraw {
    from {
        border-color: transparent;
        box-shadow: none;
    }
    to {
        border-color: inherit;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ----------------------------------------------------------
   3. FEATURES SECTION — s2-features
   ---------------------------------------------------------- */

.anim-trigger.s2-features-text {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.9s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.s2-features-text.anim-visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-trigger.s2-features-text h2 {
    transition:
        opacity 0.7s 0.1s ease,
        transform 0.7s 0.1s ease;
}

.anim-trigger.s2-features-text p {
    transition:
        opacity 0.7s 0.2s ease,
        transform 0.7s 0.2s ease;
}

.anim-trigger.s2-info-box {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.85s 0.2s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.85s 0.2s cubic-bezier(0.16, 0.82, 0.31, 1);
}
.s2-info-box.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

.s2-features-images .anim-trigger.s2-img-1,
.s2-features-images .anim-trigger.s2-img-2 {
    opacity: 0;
    transform: translateX(35px) scale(0.98);
    transition:
        opacity 0.85s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.85s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.s2-features-images .s2-img-1.anim-visible,
.s2-features-images .s2-img-2.anim-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}
.s2-features-images .s2-img-1:hover,
.s2-features-images .s2-img-2:hover {
    transform: scale(1.03);
    transition: transform 0.4s ease;
}

/* ----------------------------------------------------------
   4. SECTION HEADERS (Before & After / Process Videos)
   ---------------------------------------------------------- */
.anim-trigger.section-header {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.85s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.85s cubic-bezier(0.16, 0.82, 0.31, 1);
}
.section-header.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: "";
    display: block;
    height: 3px;
    background: currentColor;
    opacity: 0.2;
    border-radius: 2px;
    width: 0;
    margin-top: 8px;
    transition: width 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-header.anim-visible .section-title::after {
    width: 60px;
}

.btn-nav {
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.btn-nav:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.btn-nav:active {
    transform: scale(0.95);
}

/* ----------------------------------------------------------
   5. GALLERY CARDS — Before & After
   ---------------------------------------------------------- */
.anim-trigger.gallery-card {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition:
        opacity 0.8s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.8s cubic-bezier(0.16, 0.82, 0.31, 1);
}
.gallery-card.anim-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-card:hover .comparison-container {
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.comparison-container {
    transition: transform 0.4s ease;
}
.label-before,
.label-after {
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}
.gallery-card:hover .label-before,
.gallery-card:hover .label-after {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ----------------------------------------------------------
   6. VIDEO CARDS — Process Videos
   ---------------------------------------------------------- */

.anim-trigger.video-card {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition:
        opacity 0.8s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.8s cubic-bezier(0.16, 0.82, 0.31, 1);
}
.video-card.anim-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.video-card:hover .video-thumbnail {
    transform: scale(1.05);
    filter: brightness(0.7);
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.video-thumbnail {
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.play-btn-overlay {
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.video-card:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
}

/* ----------------------------------------------------------
   7. HAQ HERO — Questions Section
   ---------------------------------------------------------- */
.haq-hero {
    position: relative;
}

.haq-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(420px, 560px);
    align-items: stretch;
    gap: 2.5rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .haq-grid {
        padding: 0 0.75rem;
    }
}

@media (max-width: 480px) {
    .haq-grid {
        padding: 0 0.5rem;
    }

    .haq-hero {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .haq-content h1 {
        font-size: 1.5rem;
    }

    .haq-description {
        font-size: 0.85rem;
        padding: 0 0.25rem;
    }

    .contact-card {
        padding: 0.85rem;
        gap: 0.75rem;
        border-radius: 14px;
    }

    .contact-card .icon-box {
        min-width: 42px;
        min-height: 42px;
        border-radius: 12px;
        font-size: 0.9rem;
    }

    .contact-card h3 {
        font-size: 0.88rem;
    }

    .contact-card p {
        font-size: 0.78rem;
    }

    .contact-value {
        font-size: 0.85rem;
    }

    .haq-visual {
        min-height: 180px;
    }

    .main-img-bg {
        border-radius: 14px;
    }

    .floating-card {
        width: 70px;
    }

    .floating-card img {
        height: 55px;
    }

    .floating-card.card-bottom {
        width: 85px;
    }
}

.haq-left,
.haq-right {
    display: flex;
    align-items: center;
}

.haq-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    height: 100%;
}

.haq-content h1 {
    font-size: clamp(2.6rem, 4.4vw, 3.8rem);
    line-height: 1.02;
    margin-bottom: 0.95rem;
    font-weight: 900;
}

.haq-content-span {
    color: var(--secondary);
    display: inline-block;
}

.haq-description {
    font-size: 1rem;
    color: rgba(20, 28, 40, 0.78);
    margin-bottom: 1.5rem;
    line-height: 1.85;
    max-width: 520px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(220, 227, 236, 0.6);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
    margin-bottom: 1rem;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
    width: 100%;
    max-width: 520px;
    min-height: 0;
}

.contact-card .icon-box {
    min-width: 54px;
    min-height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(29, 155, 95, 0.12);
    color: var(--secondary);
    font-size: 1.05rem;
}

.contact-card h3 {
    font-size: 1.03rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.contact-card p {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    color: rgba(51, 65, 85, 0.72);
}

.contact-value {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.contact-value:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.haq-visual {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
    overflow: visible;
    align-items: center;
}

.main-img-bg {
    width: 100%;
    max-width: 720px;
    border-radius: 34px;
    box-shadow: 0 40px 98px rgba(15, 23, 42, 0.18);
    transition: transform 0.6s ease;
}

.floating-card {
    position: absolute;
    width: 220px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.95);
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(11, 22, 50, 0.12);
    transform: translateZ(0);
}

.floating-card.card-top {
    top: 10%;
    right: 70%;
    left: auto;
    transform: rotate(-2deg);
}

.floating-card.card-bottom {
    width: 250px;
    bottom: -6%;
    right: -8%;
    transform: rotate(2.5deg);
}

.floating-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .haq-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .haq-left,
    .haq-right {
        align-items: center;
    }

    .haq-content {
        max-width: 100%;
        text-align: center;
    }

    .haq-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-card {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .haq-visual {
        min-height: 350px;
        order: -1;
    }

    .floating-card {
        width: 140px;
    }

    .floating-card img {
        height: 120px;
    }
}

@media (max-width: 640px) {
    .haq-grid {
        padding: 0 0.75rem;
        gap: 1.8rem;
    }

    .haq-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .haq-content {
        gap: 1rem;
    }

    .haq-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .haq-description {
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 1rem;
        text-align: center;
        padding: 0 0.5rem;
    }

    .contact-card {
        padding: 1rem;
        gap: 0.9rem;
        border-radius: 16px;
        margin-bottom: 0.9rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-card .icon-box {
        min-width: 48px;
        min-height: 48px;
        border-radius: 14px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .contact-card .card-info {
        flex: 1;
        min-width: 0;
        padding: 0;
    }

    .contact-card h3 {
        font-size: 0.92rem;
        margin-bottom: 0.2rem;
        line-height: 1.3;
    }

    .contact-card p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        line-height: 1.4;
    }

    .contact-value {
        font-size: 0.88rem;
        word-break: break-word;
        display: block;
    }

    .haq-visual {
        min-height: 220px;
        margin-top: 1rem;
    }

    .main-img-bg {
        max-width: 100%;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
    }

    .floating-card {
        width: 85px;
        border-radius: 12px;
    }

    .floating-card img {
        height: 65px;
    }

    .floating-card.card-top {
        top: -3%;
        left: 5%;
        right: auto;
        transform: rotate(-3deg);
    }

    .floating-card.card-bottom {
        width: 100px;
        bottom: -3%;
        right: 5%;
        left: auto;
        transform: rotate(3deg);
    }
}

.anim-trigger.haq-content {
    opacity: 0;
    transform: translateX(-32px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.9s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.haq-left.anim-trigger-left {
    opacity: 0;
    transform: translateX(-100px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.9s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.haq-right.anim-trigger-right {
    opacity: 0;
    transform: translateX(100px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.9s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.haq-left.anim-visible,
.haq-right.anim-visible,
.haq-content.anim-visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-trigger.haq-content h1 {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s 0.15s ease,
        transform 0.7s 0.15s ease;
}

.haq-content.anim-visible h1 {
    opacity: 1;
    transform: translateY(0);
}

.anim-trigger.haq-description {
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.7s 0.3s ease,
        transform 0.7s 0.3s ease;
}

.haq-content.anim-visible .haq-description {
    opacity: 1;
    transform: translateY(0);
}

.anim-trigger.contact-card {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.8s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.8s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.contact-card.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:hover {
    transform: translateY(-4px);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover .icon-box {
    transform: scale(1.1) rotate(-5deg);
    transition: transform 0.3s ease;
}

.icon-box {
    transition: transform 0.3s ease;
}

.anim-trigger.haq-visual {
    opacity: 0;
    transform: translateX(32px);
    transition:
        opacity 0.9s 0.15s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.9s 0.15s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.haq-visual.anim-visible {
    opacity: 1;
    transform: translateX(0);
}

.main-img-bg {
    transition: transform 0.6s ease;
}

.haq-visual:hover .main-img-bg {
    transform: scale(1.03);
}

.floating-card {
    animation: floatUpDown 4s ease-in-out infinite;
}

.floating-card.card-top {
    animation-delay: 0s;
}

.floating-card.card-bottom {
    animation-delay: 1.5s;
}

.floating-card:hover {
    animation-play-state: paused;
    transform: scale(1.04);
    transition: transform 0.3s ease;
}

/* ----------------------------------------------------------
   8. VIDEO MODAL ANIMATION
   ---------------------------------------------------------- */

.modal.fade .modal-dialog {
    transform: scale(0.9) translateY(-20px);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
    opacity: 0;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* ----------------------------------------------------------
   CUSTOM SCROLL ANIMATIONS (Replaces AOS)
   ---------------------------------------------------------- */

[data-anim] {
    opacity: 0;
    will-change: opacity, transform;
}

[data-anim].anim-visible {
    animation: fadeInUp 0.95s cubic-bezier(0.16, 0.82, 0.31, 1) both;
}

/* Fallback: if JS fails or observer doesn't fire, show content after delay */
@media (prefers-reduced-motion: no-preference) {
    [data-anim] {
        transition: opacity 0.1s step-end 1.5s;
    }
    [data-anim].anim-visible {
        transition: none;
    }
}

[data-anim-delay="50"].anim-visible {
    animation-delay: 0.05s;
}
[data-anim-delay="100"].anim-visible {
    animation-delay: 0.1s;
}
[data-anim-delay="150"].anim-visible {
    animation-delay: 0.15s;
}
[data-anim-delay="200"].anim-visible {
    animation-delay: 0.2s;
}
[data-anim-delay="250"].anim-visible {
    animation-delay: 0.25s;
}
[data-anim-delay="300"].anim-visible {
    animation-delay: 0.3s;
}
[data-anim-delay="350"].anim-visible {
    animation-delay: 0.35s;
}
[data-anim-delay="400"].anim-visible {
    animation-delay: 0.4s;
}
[data-anim-delay="450"].anim-visible {
    animation-delay: 0.45s;
}
[data-anim-delay="500"].anim-visible {
    animation-delay: 0.5s;
}
[data-anim-delay="600"].anim-visible {
    animation-delay: 0.6s;
}
[data-anim-delay="700"].anim-visible {
    animation-delay: 0.7s;
}
[data-anim-delay="800"].anim-visible {
    animation-delay: 0.8s;
}

/* ----------------------------------------------------------
   9. STAGGER UTILITY — applied via JS to cards in a slider
   ---------------------------------------------------------- */

.anim-stagger-1 {
    transition-delay: 0s !important;
}
.anim-stagger-2 {
    transition-delay: 0.1s !important;
}
.anim-stagger-3 {
    transition-delay: 0.2s !important;
}
.anim-stagger-4 {
    transition-delay: 0.3s !important;
}
.anim-stagger-5 {
    transition-delay: 0.4s !important;
}
.anim-stagger-6 {
    transition-delay: 0.5s !important;
}

/* ----------------------------------------------------------
   10. REDUCED MOTION — accessibility
   ---------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-section,
    .hero-section .container,
    .hero-section h1,
    .hero-section p,
    .hero-section .btn {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* hero section for all  */
.hero-section {
    position: relative;
    min-height: 100svh;
    min-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
        min-height: calc(100svh - var(--header-height));
        padding-top: calc(var(--header-height) + 1rem);
        padding-bottom: 1rem;
    }
}

.hero-section .hero-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity 0.8s ease, transform 1s ease;
    animation: heroBgZoom 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    opacity: 1;
}

.slide-item:not(.active) .hero-img {
    opacity: 0;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 30, 51, 0.75) 0%,
        rgba(0, 30, 51, 0.6) 50%,
        rgba(0, 30, 51, 0.75) 100%
    );
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-section-subtitle {
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 850px;
    margin: 0 auto 1.5rem auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.3);
    animation: heroTextReveal 0.9s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
    letter-spacing: -0.02em;
}

.service-hero-title {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 0.5rem;
}

.hero-section h1 span,
.text-highlight {
    color: var(--secondary) !important;
}

.hero-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    animation: fadeInUp 0.8s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-section .btn {
    min-width: 200px;
    padding: 14px 30px;
    animation: fadeInUp 0.7s 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* home page slider  */

.slide-item {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide-item.active {
    display: flex;
    opacity: 1;
}

.slide-item.fade-enter {
    display: flex;
    opacity: 0;
}

.slide-item.fade-enter-active {
    opacity: 1;
}

.slider-arrow {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
    outline: none;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.slider-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14),
        rgba(255, 255, 255, 0.02)
    );
    opacity: 0.75;
    pointer-events: none;
    border-radius: inherit;
}

.slider-arrow::after {
    content: attr(data-label);
    position: absolute;
    bottom: -1.85rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
    white-space: nowrap;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.slider-arrow:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.slider-arrow .material-symbols-outlined {
    font-size: 26px;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

#prevBtn:hover .material-symbols-outlined {
    transform: translateX(-6px);
}

#nextBtn:hover .material-symbols-outlined {
    transform: translateX(6px);
}

/* Mobile adjustments for slider arrows */
@media (max-width: 768px) {
    .slider-arrow {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    .slider-arrow .material-symbols-outlined {
        font-size: 22px;
    }
    .slider-arrow::after {
        display: none;
    }
    .hero-slider .slider-nav-mobile {
        display: flex !important;
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        gap: 1rem;
        z-index: 3;
    }
       
     .contact-card .card-info{
        padding: 0px;
     }
     .floating-card {
       display: none;
     }
     .gallery-cta{
        display: block;
        text-align: center;
     }
}

@media (min-width: 769px) {
    .hero-slider .slider-nav-mobile {
        display: none !important;
    }
}

/* wlecome feedback section */
.marquee-section {
    width: 100%;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    background-color: var(--primary);
}

.marquee-track {
    width: 100%;
    overflow: hidden;
    cursor: default;
}

.marquee-inner {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 12px 24px;
    white-space: nowrap;
    flex-shrink: 0;
}

.quote-text {
    font-size: 13px;
    font-style: italic;
    color: var(--text-on-dark);
    letter-spacing: 0.2px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--secondary);
    flex-shrink: 0;
}

.name {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}



/* Service cards use transition-based animation (not keyframe) */
.service-card.anim-trigger {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.9s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.9s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.service-card.anim-trigger.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service slider fade transition */
.service-card {
    transition:
        opacity 0.5s cubic-bezier(0.16, 0.82, 0.31, 1),
        transform 0.5s cubic-bezier(0.16, 0.82, 0.31, 1);
}

.service-card.slider-fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.service-card.slider-fade-in {
    opacity: 0;
    transform: translateX(20px);
}

.overlay{
    background: rgba(0, 0, 0, 0.4);
}

/* Mobile Service Comparison - matches reference image exactly */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        display: none !important;
    }

    .mobile-comparison-card {
        display: block !important;
        background: #ffffff;
        border-radius: 28px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding: 24px 16px;
        margin: 0 auto;
        max-width: 100%;
    }

    .mobile-comparison-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .mobile-comparison-title {
        font-size: 24px;
        font-weight: 700;
        color: #001e33;
        margin: 0 0 8px 0;
        line-height: 1.2;
    }

    .mobile-comparison-subtitle {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
        line-height: 1.4;
    }

    .mobile-tabs {
        display: flex;
        gap: 0;
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
    }

    .mobile-tab {
        flex: 1;
        padding: 12px 8px;
        border: none;
        background: #ffffff;
        font-size: 13px;
        font-weight: 600;
        color: #001e33;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: center;
        line-height: 1.3;
    }

    .mobile-tab small {
        font-size: 11px;
        font-weight: 400;
        display: block;
        margin-top: 2px;
    }

    .mobile-tab:not(:last-child) {
        border-right: 1px solid #e0e0e0;
    }

    .mobile-tab.active {
        background: linear-gradient(135deg, #0f9d7a 0%, #0d9488 100%);
        color: #ffffff;
    }

    .mobile-tab.active small {
        color: rgba(255, 255, 255, 0.9);
    }

    .mobile-tab-content {
        display: none;
    }

    .mobile-tab-content.active {
        display: block;
    }

    .mobile-service-info {
        background: #f0f9f7;
        border-radius: 12px;
        padding: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .mobile-service-info-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-service-icon-circle {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #e0f5f1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-service-title {
        font-size: 16px;
        font-weight: 700;
        color: #0f9d7a;
        margin: 0 0 4px 0;
    }

    .mobile-service-desc {
        font-size: 13px;
        color: #6c757d;
        margin: 0;
        line-height: 1.4;
    }

    .mobile-service-illustration {
        flex-shrink: 0;
    }

    .mobile-comparison-rows {
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        overflow: hidden;
        margin-bottom: 16px;
    }

    .mobile-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-row:last-child {
        border-bottom: none;
    }

    .mobile-row-text {
        font-size: 14px;
        color: #001e33;
        font-weight: 500;
        flex: 1;
        line-height: 1.4;
    }

    .mobile-row-icon {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
        margin-left: 12px;
    }

    .mobile-row-icon.check {
        background: #0f9d7a;
        color: #ffffff;
    }

    .mobile-row-icon.cross {
        background: #b0b0b0;
        color: #ffffff;
    }

    .mobile-legend {
        background: #f0f9f7;
        border-radius: 12px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-legend-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #e0f5f1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-legend-text {
        flex: 1;
    }

    .mobile-legend-text p {
        font-size: 13px;
        color: #001e33;
        margin: 0;
        line-height: 1.5;
    }
}

@media (min-width: 769px) {
    .mobile-comparison-card {
        display: none !important;
    }
}