﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    background: #000;
    color: #fff;
}


/* ========== HEADER (Transparent on hero, solid on scroll) ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    padding: 12px 32px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    padding-top:20px;
}

/* Scrolled state - solid white background */
    header.scrolled,
    header.header-light {
        background: #ffffff;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding-top: 12px;
        padding: 20px;
    }

/* Logo switching */
.logo img {
    height: auto;
    width: 150px;
}

.logo .logo-dark {
    display: none;
}

.logo .logo-white {
    display: block;
}

header.scrolled .logo .logo-dark,
header.header-light .logo .logo-dark {
    display: block;
}

header.scrolled .logo .logo-white,
header.header-light .logo .logo-white {
    display: none;
}

/* Cart icon switching */
.cart-icon .cart-dark {
    display: none;
}

.cart-icon .cart-white {
    display: block;
   height: 20px;
    
}

header.scrolled .cart-icon .cart-dark,
header.header-light .cart-icon .cart-dark {
    display: block;
    height: 20px;
}

header.scrolled .cart-icon .cart-white,
header.header-light .cart-icon .cart-white {
    display: none;
}

/* Cart icon badge */
.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    left: 3px;
    background: none;
    color: #009ee3;
    font-size: 14px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    padding: 0 4px;
    box-shadow: none;
}

header.scrolled .cart-badge,
header.header-light .cart-badge {
    background: none;
    color: #009ee3;
}

/* Anand logo switching */
.anand-logo.anand-dark {
    display: none;
}

.anand-logo.anand-white {
    display: block;
}

header.scrolled .anand-logo.anand-dark,
header.header-light .anand-logo.anand-dark {
    display: block;
}

header.scrolled .anand-logo.anand-white,
header.header-light .anand-logo.anand-white {
    display: none;
}

/* Header Divider Line between cart and ANAND logo */
.header-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
}

header.scrolled .header-divider,
header.header-light .header-divider {
    background: rgba(0, 0, 0, 0.2);
}

.main-nav ul {
    list-style: none;
    margin-bottom: 0;
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    font-size: 14px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    padding-bottom: 4px;
    position: relative;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

header.scrolled .main-nav a,
header.header-light .main-nav a {
    color: rgba(74, 74, 74, 1);
}

.main-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #00a0ff;
    transition: .3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* custom dropdown */
.top-dropdown {
    position: relative;
}

.top-dropdown-menu {
    position: absolute;
    top: 28px;
    left: 0;
    background: rgb(255 255 255 / 95%);
    padding: 10px 0;
    border-radius: 6px;
    min-width: 170px;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.top-dropdown:hover .top-dropdown-menu {
    display: block;
}

.top-dropdown-menu a {
    display: block;
    padding: 7px 14px;
    font-size: 13px;
    white-space: nowrap;
    color: #333 !important;
}

.top-dropdown-menu a:hover {
    background: #f5f5f5;
}

.right-icons .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(11,26,52,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.anand-logo {
    height: 22px;
}

/* Hamburger - always visible on mobile */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
}

header.scrolled .hamburger,
header.header-light .hamburger {
    color: #333;
}

.hamburger i {
    transition: .3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav Header (inside slide menu) */
.mobile-nav-header {
    display: none;
}

.cart-gap{
    gap:15px!important;
}
/* Mobile Close Button */
.mobile-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }

    .hero-slide video,
    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,rgba(0,0,0,.2),rgba(0,0,0,.75));
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 40px;
}

.hero-heading {
    font-size: 45px;
    margin-bottom: 2px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 50px;
}

.hero-sub {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 50px;
}

.other-color {
    color: rgba(255, 255, 255, 0.75)!important;
}

/* ===== SEARCH CARD (Bootstrap grid inside) ===== */
.search-card {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 38px 48px;
    box-shadow: 0 24px 70px rgba(2, 8, 23, 0.9);
    text-align: left;
    backdrop-filter: blur(35px);
}


.ros {
    font-size: 20px;
    color: rgba(0, 158, 227, 1) !important;
    line-height: 25px;
    font-weight: 500;
    font-style: italic;
}

.top-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 25px;
}

    .top-text a {
        color: #70bffc;
        text-decoration: underline;
    }

/* ===== FILTER TABS (New Design) ===== */
.filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    background: transparent;
    transition: all 0.3s ease;
    font-weight: 400;
}

.filter-tab:hover {
    border-color: rgba(0, 158, 227, 1);
}

    .filter-tab.active {
        background: #B3E4F880;
        border-color: #B3E4F880;
        font-weight: 500;
        color: #ffffff;
    }

.filter-tab i {
    font-size: 12px;
}

/* Filter Panels */
.filter-panel {
    display: none;
}

.filter-panel.active {
    display: block;
}

/* Filter Fields */
.filter-field {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 0 15px;
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
}

    .filter-field select {
        width: 100%;
        background: none;
        border: none;
        color: #AEAEAE;
        font-size: 12px;
        text-transform: uppercase;
        appearance: none;
        padding-right: 25px;
        font-weight: 400;
        letter-spacing: 0.5px;
        cursor: pointer;
    }

.filter-field select:focus {
    outline: none;
}

.filter-field select option {
    color: #333;
    background: #fff;
}

.filter-field i.fa-chevron-down {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #666;
    pointer-events: none;
}

/* Filter Search Button */
.filter-search-btn {
    background: rgba(0, 158, 227, 1);
    border: none;
    padding: 0 30px;
    height: 48px;
    width: 100%;
    color: #ffffff;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.filter-search-btn:hover {
    background: rgba(0, 140, 200, 1);
}

.filter-search-btn i {
    font-size: 14px;
}

/* Old styles kept for backward compatibility */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.tab {
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: 1px solid rgba(179, 228, 248, 1);
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
}

.tab.active {
    background: rgba(179, 228, 248, 0.5);
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
}

.field {
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 5px;
    padding: 9px 10px 0px;
    position: relative;
    height: 44px;
}

.field select {
    width: 100%;
    background: none;
    border: none;
    color: rgba(174, 174, 174, 1);
    font-size: 10px;
    text-transform: uppercase;
    appearance: none;
    padding-right: 20px;
}

.field i.fa-chevron-down {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #c7d0da;
}

.search-btn {
    background: rgba(0, 158, 227, 1);
    border: none;
    padding: 12px 18px 12px 18px;
    height: 44px;
    line-height: 18px;
    color: rgba(255, 255, 255, 1);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    max-width: 115px;
}

/* dots */
.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
}

    .dot.active {
        background: rgba(255, 255, 255, 1);
        width: 15px;
        height: 15px;
        border: 1px rgba(255, 255, 255, 1);
    }



/* ===== RESPONSIVE ===== */
@media (max-width:991.98px) {
    header {
        padding: 12px 12px;
    }

    .hero-inner {
        padding-top: 90px;
        padding-bottom: 70px;
    }
}

@media (max-width:767.98px) {
    /* Mobile Header - Smaller logos */
    .logo img {
        height: 14px !important;
        width: auto;
    }

    .hero {
        position: relative;
        height: auto;
        overflow: hidden;
    }

    /* Hide divider line on mobile */
    .header-divider {
        display: none;
    }

    /* Smaller cart icon on mobile */
    .cart-icon img {
        height: 24px !important;
    }

    .cart-badge {
        position: absolute;
        top: -6px;
        left: 5px;
        background: none;
        color: #009ee3;
        font-size: 14px;
        font-weight: 700;
        min-width: 18px;
        height: 18px;
        line-height: 18px;
        text-align: center;
        border-radius: 50%;
        padding: 0 4px;
        box-shadow: none;
    }
    /* Smaller ANAND logo on mobile */
    .anand-logo {
        height: 18px !important;
    }

    /* Right icons - reduce gap on mobile */
    .right-icons {
        gap: 10px !important;
    }

    /* Mobile Slide-in Menu from Left */
    .main-nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        padding: 0;
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    }

    .main-nav.open {
        left: 0;
    }

    /* Mobile Nav Header */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        background: #f9f9f9;
    }

    .mobile-logo {
        height: 24px;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-nav a {
        display: block;
        padding: 15px 20px;
        color: #333 !important;
        font-size: 14px;
    }

    .main-nav a::after {
        display: none;
    }

    /* Mobile Dropdown */
    .top-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f5f5f5;
        padding: 0;
        border-radius: 0;
    }

    .top-dropdown.open .top-dropdown-menu {
        display: block;
    }

    .top-dropdown-menu a {
        padding: 12px 20px 12px 35px;
        font-size: 13px;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: block;
        font-size: 18px;
    }
}

@media (max-width:575.98px) {
    .hero-heading {
        font-size: 26px;
        line-height: 34px;
    }

    .search-card {
        padding: 20px 16px;
    }

    .top-text {
        font-size: 16px;
        line-height: 22px;
    }

    .filter-tabs {
        gap: 8px;
        margin-bottom: 15px;
    }

    .filter-tab {
        padding: 8px 14px;
        font-size: 11px;
    }

    .filter-field {
        height: 44px;
    }

    .filter-field select {
        font-size: 10px;
    }

    .filter-search-btn {
        height: 44px;
        font-size: 14px;
    }
    .ros {
        font-size: 15px;
        color: rgba(0, 158, 227, 1) !important;
        line-height: 25px;
        font-weight: 500;
        font-style: italic;
    }
}

/* Extra small screens */
@media (max-width:400px) {
    header {
        padding: 10px 12px;
    }

    .logo img {
        height: 14px !important;
    }
    .hero-sub {
        font-size: 13px;
        margin-bottom: 15px;
        font-weight: 400;
        color: rgba(255, 255, 255, 1);
        line-height: 50px;
    }

    .cart-icon img {
        height: 24px !important;
    }


    .anand-logo {
        height: 17px !important;
    }
    .ros {
        font-size: 15px;
        color: rgba(0, 158, 227, 1) !important;
        line-height: 25px;
        font-weight: 500;
        font-style: italic;
    }
    .right-icons {
        gap: 8px !important;
    }

    .hamburger {
        font-size: 16px;
    }
}















a {
    text-decoration: none !important;
}



/* ===== FOOTER ===== */
.site-footer {
    background: #f5f5f7;
    padding: 50px 50px 0;
    font-size: 13px;
    color: #9c9c9c;
}

.site-footer a {
    color: #1e1e1e;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
}

.site-footer a:hover {
    color: #009EE3;
}

/* Footer top row */
.footer-top-row {
    padding-bottom: 30px;
}

/* Left column */
.footer-left-col {
    display: flex;
    flex-direction: column;
}

/* Left image + contact overlay */
.footer-contact-wrap {
    position: relative;
    width: 100%;
    
}

.footer-contact-img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* Overlay card at bottom */
.footer-contact-card {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    width: 88%;
}

.ras {
    font-size: 14px;
    font-weight: 500;
    color: #002E6D;
}

/* Container for each line */
.footer-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-line i {
    width: 18px;
    height: 18px;
    color: #009EE3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Link columns */
.footer-links-col {
    padding-left: 20px;
}

.footer-heading {
    font-weight: 400;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-list li {
    margin-bottom: 14px;
}

.footer-list li a {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.footer-list li a:hover {
    color: #009EE3;
}

/* Newsletter row */
.footer-newsletter-row {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
    align-items: center;
}

.footer-news-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 11px;
    background: transparent;
    color: #009EE3;
    margin-bottom: 10px;
    border: 1px solid #009EE3;
    font-weight: 500;
}

.footer-news-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-news-text a {
    color: #009EE3;
    font-size: 14px;
}

.footer-newsletter-form {
    margin-top: 0;
}

.footer-news-input {
    font-size: 11px;
    border: 1px solid #d1d5db;
    height: 38px;
    border-radius: 3px 0 0 3px !important;
    background: #fff;
}

.footer-news-input::placeholder {
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #aaa;
}

.footer-news-btn {
    width: 42px;
    border-radius: 0 3px 3px 0;
    border: none;
    background: #009EE3;
    color: #ffffff;
    height: 38px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-news-btn:hover {
    background: #0088cc;
}

/* Bottom footer strip */
.gab-footer {
    background: #f5f5f7;
    padding: 20px 0;
    margin-top: 0;
    border-top: 1px solid #e0e0e0;
}

/* Row 1: Logo + Store Buttons */
.gab-footer-row1 {
    padding-bottom: 15px;
}

.footer-logo {
    width: 130px;
    height: auto;
}

.store-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.store-btn {
    height: auto;
    width: 140px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.store-btn:hover {
    transform: scale(1.05);
}

/* Row 2: Copyright + Download Text */
.gab-footer-row2 {
    padding-top: 0px;
}

.footer-bottom-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.copyright-text {
    font-size: 11px;
    color: #888;
    line-height: 1.4;
}

.footer-links-inline {
    display: inline-flex;
    gap: 15px;
    margin-left: 10px;
}

.footer-links-inline a {
    font-size: 11px;
    color: #888;
    text-decoration: underline;
}

.footer-links-inline a:hover {
    color: #009EE3;
}

.download-text {
    font-size: 10px;
    color: #888;
    text-align: right;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .site-footer {
        padding: 40px 30px 0;
    }

    .footer-contact-wrap {
        max-width: 220px;
        margin-bottom: 30px;
    }

    .footer-links-col {
        padding-left: 10px;
    }

    .footer-newsletter-row {
        margin-top: 25px;
        padding-top: 20px;
    }

    .download-text {
        text-align: right;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding: 30px 20px 0;
    }

    .footer-left-col {
        margin-bottom: 30px;
    }

    .footer-contact-wrap {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-links-col {
        padding-left: 0;
        text-align: left;
    }

    .footer-heading {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .footer-list li {
        margin-bottom: 10px;
    }

    .footer-newsletter-row {
        margin-top: 25px;
        padding-top: 25px;
        text-align: center;
    }

    .footer-newsletter-form {
        margin-top: 15px;
    }

    .gab-footer {
        padding: 20px 0;
    }

    .gab-footer-row1,
    .gab-footer-row2 {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 0px;
        display: block;
        margin-top: 16px;
    }

    .store-buttons {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-bottom-text {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }

    .copyright-text {
        text-align: center;
    }

    .footer-links-inline {
        justify-content: center;
        margin-left: 0;
    }

    .download-text {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 25px 15px 0;
    }

    .footer-contact-wrap {
        max-width: 100%;
    }

    .footer-contact-card {
        padding: 10px 14px;
    }

    .ras {
        font-size: 13px;
    }

    .footer-list li a {
        font-size: 14px;
    }

    .store-btn {
        height: 28px;
    }
    .store-btn {
        height: 23px;
        width: auto;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .download-text {
        font-size: 9px;
    }
}

















.intro-wrapper {
    padding: 40px 16px;
}

.intro-box {
    max-width: 848px;
    margin: 10px auto;
    padding: 0 15px;
}

.intro-subtitle {
    font-size: 26px;
    color: #a0b1c8;
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 1.5;
}

.intro-text {
    font-size: 26px;
    line-height: 1.6;
    color: rgba(14, 59, 100, 1);
    font-weight: 400;
    letter-spacing: -0.9px;
}

.intro-text a {
    color: #0066cc;
    text-decoration: none;
}

.intro-text a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .intro-box {
        max-width: 700px;
    }

    .intro-subtitle {
        font-size: 22px;
    }

    .intro-text {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .intro-wrapper {
        padding: 35px 15px;
    }

    .intro-box {
        max-width: 100%;
    }

    .intro-subtitle {
        font-size: 18px;
        line-height: 1.4;
    }

    .intro-text {
        font-size: 18px;
        line-height: 1.5;
    }


}

@media (max-width: 575.98px) {
    .intro-wrapper {
        padding: 30px 15px;
    }

    .intro-subtitle {
        font-size: 18px;
    }

    .intro-text {
        font-size: 18px;
        letter-spacing: -0.3px;
    }
}









.bu-section {
    padding: 50px 16px 70px;
    background: rgba(245, 245, 247, 1);
    text-align: center;
}

.bu-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: #ffffff;
    color: rgba(0, 158, 227, 1);
    margin-bottom: 8px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight:500;
    line-height:15px;
}

.bu-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 22px;
    color: rgba(0, 46, 109, 1);
}

/* ===== TABS (same design) ===== */
.bu-tabs {
    display: inline-flex;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    background: rgba(241, 240, 246, 1);
    /* box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08); */
    margin-bottom: 26px;
}

.bu-tab {
    border-radius: 5px;
    border: 1px solid transparent;
    padding: 6px 18px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .08em;
    text-transform: uppercase;
   /* background: transparent;
    color: #4b5563;*/
    cursor: pointer;
    white-space: nowrap;
}

    .bu-tab.active {
        background: rgba(255, 255, 255, 1);
        color: rgba(0, 158, 227, 1);
        border-color: rgba(255, 255, 255, 1);
        font-weight: 500;
    }

/* ===== EACH BUSINESS UNIT BLOCK ===== */
.bu-item {
    display: none;
}

    .bu-item.active {
        display: block;
    }

.bu-slider-row {
    margin: 0 auto 24px;
}

.bu-slide-wrapper {
    background: #000;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.bu-slide-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}



   /* .bu-side .bu-slide-img {
        height: 220px;
    }*/

.bu-content {
    max-width: 850px;
    margin: 10px auto;
    text-align: start;
}

.bu-unit-title {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 6px;
    color: rgba(14, 59, 100, 1);
}

.bu-unit-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(14, 59, 100, 1);
    max-width: 540px;
    font-weight: 300;
}

.bu-cta {
    margin-top: -50px;
}

.bu-btn {
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    border: none;
    background: rgba(0, 159, 223, 1);
    color: #ffffff;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    float: right;
    font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width:991.98px) {
    .bu-side {
        display: none;
    }

    .bu-slide-img {
        height: 260px;
    }
}

@media (max-width:575.98px) {
    .bu-section {
        padding: 40px 10px 100px;
    }

    .bu-title {
        font-size: 20px;
    }

    .bu-slide-img {
        height: 220px;
    }
}


/* ==== SLIDER ARROW BUTTONS ==== */
.bu-center {
    position: relative;
}

.bu-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 14px;
    transition: 0.2s ease;
    background-color:transparent;
    color:white;
    font-weight:500;
}

    .bu-arrow:hover {
        background: #ffffff;
    }



.bu-btn-text {
    font-size: 10px;
    font-weight: 600;
    margin-left: 4px;
}

@media (max-width: 575.98px) {
    .bu-prev {
        left: 6px;
    }

    .bu-next {
        right: 6px;
    }

    .bu-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
/* BUTTONS IMAGE KE UPAR SHOW KARNE KE LIYE */
.bu-slider-row {
  position: relative;
}

.bu-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.bu-prev {
  left: 100px;
  width:35px !important;
  }

.bu-next {
    right: 100px;
    width: 35px !important;
}












.fp-section {
    padding: 60px 20px 60px;
}

.fp-header-row {
    margin-bottom: 16px;
}

.fp-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin-bottom: 8px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
}

.fp-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
    color: rgba(0, 46, 109, 1);
}

.fp-view-all {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    background: #ffffff;
    color: rgba(0, 158, 227, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0.5px solid rgba(0, 158, 227, 1);
}

    .fp-view-all i {
        font-size: 10px;
    }

/* SLIDER AREA */
.fp-slider-wrapper {
    position: relative;
    margin-top: 12px;
}

.fp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    /* border-radius: 50%; */
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    color: rgba(0, 158, 227, 1);
    border: none;
}

.fp-arrow-left {
    left: -10px;
}

.fp-arrow-right {
    right: -10px;
}

.fp-arrow i {
    font-size: 12px;
}

.fp-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
}

    .fp-track::-webkit-scrollbar {
        height: 0;
    }

/* CARD */
.fp-card {
    flex: 0 0 25%;
    min-width: 267px;
    max-width: 289px;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    padding: 0 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fp-card-top {
    display: flex;
    justify-content: end;
    /* gap: 6px; */
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.fp-badge {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 5px 12px 5px 12px;
    border-radius: 5px;
    font-weight: 500;
    color: white;
    margin: 0px 5px;
    background: rgba(0, 159, 223, 0.7);
}

.fp-card-img-box {
    text-align: center;
    margin-bottom: 14px;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* HALF BOX BACKGROUND (exact top area only) */
.fp-card > div:first-child {
    background: #f4f7fb; /* 👈 same light grey screenshot color */
    border-radius: 10px 10px 0 0;
    padding-top: 10px;
}

/* Image box (stays inside grey area) */
.fp-card-img-box {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .fp-card-img-box img {
        max-height: 100%;
        object-fit: contain;
    }


    .fp-card-img-box img {
        max-width: 246px;
        max-height: 220px;
        object-fit: contain;
        position: relative;
        bottom: -44px;
    }

.fp-card-body {
    font-size: 12px;
    padding: 15px;
    margin-top: 40px;
}

.fp-card-title {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 46, 109, 1);
    margin-bottom: 4px;
    line-height: 24px;
}

.fp-card-sub {
    font-size: 14px;
    color: rgba(30, 30, 30, 1);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 300;
}

.fp-card-model {
    font-size: 16px;
    color: rgba(156, 156, 156, 1);
}

    .fp-card-model span {
        color: rgba(48, 48, 48, 1);
        font-weight: 400;
        font-size: 16px;
    }

    .fp-card-model::before {
        content: "• ";
        color: rgba(0, 158, 227, 1);
        font-size: 17px;
        vertical-align: middle;
        margin-right: 2px;
    }

/* RESPONSIVE */
@media (max-width:991.98px) {
    .fp-card {
        flex: 0 0 33.3333%;
    }
}

@media (max-width:767.98px) {
    .fp-section {
        padding: 30px 12px 50px;
    }

    .fp-card {
        flex: 0 0 70%;
    }

    .fp-arrow-left {
        left: -4px;
    }

    .fp-arrow-right {
        right: -4px;
    }
}

@media (max-width:575.98px) {
    .fp-card {
        flex: 0 0 80%;
    }

    .fp-title {
        font-size: 20px;
    }

    .fp-view-all {
        margin-top: 8px;
    font-size: 12px;
    letter-spacing: .01em;
    text-transform: capitalize;
    padding: 5px 5px 5px 5px;
    border-radius: 5px;
    background: #ffffff;
    color: rgba(0, 158, 227, 1);
    display: inline-flex;
    align-items: center;
    gap: 0px;
    border: 0.5px solid rgba(0, 158, 227, 1);
    float: inline-end;
}
    }


/* ===== OWL CAROUSEL CUSTOM STYLES ===== */
.fp-owl-carousel .owl-nav,
.pc-owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
}

.fp-owl-carousel .owl-nav button,
.pc-owl-carousel .owl-nav button {
    width: 36px;
    height: 36px;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(0, 158, 227, 1) !important;
    border: none !important;
    border-radius: 4px;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.fp-owl-carousel .owl-nav button:hover,
.pc-owl-carousel .owl-nav button:hover {
    background: rgba(0, 158, 227, 1) !important;
    color: #ffffff !important;
}

.fp-owl-carousel .owl-nav button i,
.pc-owl-carousel .owl-nav button i {
    font-size: 14px;
}

.fp-owl-carousel .owl-nav button.owl-prev,
.pc-owl-carousel .owl-nav button.owl-prev {
    margin-left: -15px;
}

.fp-owl-carousel .owl-nav button.owl-next,
.pc-owl-carousel .owl-nav button.owl-next {
    margin-right: -15px;
}

/* Owl Carousel item spacing fix */
.fp-owl-carousel .owl-item,
.pc-owl-carousel .owl-item {
    padding: 10px 0;
}

.fp-owl-carousel .fp-card,
.pc-owl-carousel .pc-card {
    margin: 0;
    max-width: 100%;
}

/* Hide disabled nav buttons */
.fp-owl-carousel .owl-nav button.disabled,
.pc-owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
    cursor: default;
}

@media (max-width: 767px) {
    .fp-owl-carousel .owl-nav button,
    .pc-owl-carousel .owl-nav button {
        width: 30px;
        height: 30px;
    }

    .fp-owl-carousel .owl-nav button i,
    .pc-owl-carousel .owl-nav button i {
        font-size: 12px;
    }

    .fp-owl-carousel .owl-nav button.owl-prev,
    .pc-owl-carousel .owl-nav button.owl-prev {
        margin-left: -5px;
    }

    .fp-owl-carousel .owl-nav button.owl-next,
    .pc-owl-carousel .owl-nav button.owl-next {
        margin-right: -5px;
    }

    .fp-slider-wrapper,
    .pc-slider-wrapper {
        padding: 0 10px;
    }
}

@media (max-width: 575px) {
    .fp-owl-carousel .owl-nav button,
    .pc-owl-carousel .owl-nav button,
    .news-owl-carousel .owl-nav button,
    .testimonial-owl-carousel .owl-nav button {
        width: 28px;
        height: 28px;
    }

    .fp-owl-carousel .owl-nav button i,
    .pc-owl-carousel .owl-nav button i,
    .news-owl-carousel .owl-nav button i,
    .testimonial-owl-carousel .owl-nav button i {
        font-size: 10px;
    }

    .fp-owl-carousel .owl-nav button.owl-prev,
    .pc-owl-carousel .owl-nav button.owl-prev,
    .news-owl-carousel .owl-nav button.owl-prev,
    .testimonial-owl-carousel .owl-nav button.owl-prev {
        margin-left: 0;
    }

    .fp-owl-carousel .owl-nav button.owl-next,
    .pc-owl-carousel .owl-nav button.owl-next,
    .news-owl-carousel .owl-nav button.owl-next,
    .testimonial-owl-carousel .owl-nav button.owl-next {
        margin-right: 0;
    }
}

/* ===== NEWS & TESTIMONIALS OWL CAROUSEL STYLES ===== */
.news-owl-carousel .owl-nav,
.testimonial-owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
}

.news-owl-carousel .owl-nav button,
.testimonial-owl-carousel .owl-nav button {
    width: 36px;
    height: 36px;
    background: #ffffff !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(0, 158, 227, 1) !important;
    border: none !important;
    border-radius: 4px;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.news-owl-carousel .owl-nav button:hover,
.testimonial-owl-carousel .owl-nav button:hover {
    background: rgba(0, 158, 227, 1) !important;
    color: #ffffff !important;
}

.news-owl-carousel .owl-nav button i,
.testimonial-owl-carousel .owl-nav button i {
    font-size: 14px;
}

.news-owl-carousel .owl-nav button.owl-prev,
.testimonial-owl-carousel .owl-nav button.owl-prev {
    margin-left: -15px;
}

.news-owl-carousel .owl-nav button.owl-next,
.testimonial-owl-carousel .owl-nav button.owl-next {
    margin-right: -15px;
}

.news-owl-carousel .owl-item,
.testimonial-owl-carousel .owl-item {
    padding: 10px 0;
}

/* News Section */
.news-section {
    padding: 40px 20px;
}

.news-owl-carousel .article-card {
    margin: 0;
}

/* Testimonial Section */
.testimonial-section {
    padding: 40px 20px;
}

.testimonial-owl-carousel .wc-card {
    margin: 0;
}

@media (max-width: 767px) {
    .news-owl-carousel .owl-nav button,
    .testimonial-owl-carousel .owl-nav button {
        width: 30px;
        height: 30px;
    }

    .news-owl-carousel .owl-nav button.owl-prev,
    .testimonial-owl-carousel .owl-nav button.owl-prev {
        margin-left: -5px;
    }

    .news-owl-carousel .owl-nav button.owl-next,
    .testimonial-owl-carousel .owl-nav button.owl-next {
        margin-right: -5px;
    }

    .news-section,
    .testimonial-section {
        padding: 30px 15px;
    }
}


























.pc-section {
    padding: 40px 20px;
}

.pc-section .container-fluid {
    padding: 0 15px;
}

.pc-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: #ffffff;
    color: rgba(0, 158, 227, 1);
    margin-bottom: 8px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
}

.pc-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
    color: rgba(0, 46, 109, 1);
    margin: 0;
}

/* TABS */
.pc-tabs {
    display: inline-flex;
    gap: 6px;
    padding: 0;
    border-radius: 5px;
    flex-wrap: wrap;
}

.pc-tab {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 5px;
    background: transparent;
    color: rgba(0, 158, 227, 1);
    border: 0.5px solid rgba(178, 228, 247, 1);
    cursor: pointer;
}

    .pc-tab.active {
        background: rgba(209, 238, 250, 1);
        border: 0.5px solid rgba(178, 228, 247, 1);
        color: rgba(0, 158, 227, 1);
        font-weight: 500;
    }

/* SLIDER */
.pc-slider-wrapper {
    margin-top: 18px;
    position: relative;
}

.pc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15,23,42,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: rgba(0, 158, 227, 1);
    z-index: 3;
}

.pc-arrow-left {
    left: -10px;
}

.pc-arrow-right {
    right: -10px;
}

.pc-arrow i {
    font-size: 12px;
}

.pc-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
}

    .pc-track::-webkit-scrollbar {
        height: 0;
    }

/* CARDS */
.pc-card {
    flex: 0 0 25%;
    min-width: 220px;
    max-width: 280px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pc-card-img-wrap {
    padding: 25px 20px;
    text-align: center;
    min-height: 240px;
    background: linear-gradient(180deg, #F6FCFF 0%, #E3F7FF 63.46%, #C5E7F6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pc-card-img-wrap img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.pc-card-body {
    padding: 14px 15px;
    background: #ffffff;
}

.pc-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.pc-card-title .rojs {
    position: static;
    right: auto;
    width: 20px!important;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pc-card-count {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #002E6D;
    line-height: 15px;
    font-weight: 500;
    padding-left: 28px;
}

    .pc-card-count span {
        color: #002E6D;
        font-weight: 600;
    }

/* CATEGORY GROUPS */
.pc-category {
    display: none;
}

    .pc-category.active {
        display: block;
    }

/* RESPONSIVE */
@media(max-width:991px) {
    .pc-card {
        flex: 0 0 33%;
        min-width: 200px;
    }

    .pc-card-img-wrap {
        min-height: 160px;
    }
}

@media(max-width:767px) {
    .pc-section {
        padding: 30px 0;
    }

    .pc-section .container-fluid {
        padding: 0 12px;
    }

    .pc-card {
        flex: 0 0 70%;
        min-width: 180px;
        max-width: 240px;
    }

    .pc-card-img-wrap {
        min-height: 140px;
        padding: 20px 15px;
    }

    .pc-card-img-wrap img {
        max-height: 200px;
    }

    .pc-card-body {
        padding: 12px;
    }

    .pc-card-title {
        font-size: 13px;
        gap: 6px;
    }

    .pc-card-title .rojs {
        width: 18px;
        height: 18px;
    }

    .pc-card-count {
        font-size: 10px;
        padding-left: 24px;
    }

    .pc-arrow-left {
        left: -4px;
    }

    .pc-arrow-right {
        right: -4px;
    }

    .pc-title {
        font-size: 20px;
        line-height: 28px;
    }

    .pc-tabs {
        justify-content: flex-start;
        gap: 4px;
    }

    .pc-tab {
        font-size: 10px;
        padding: 4px 8px;
    }
}

@media(max-width:575px) {
    .pc-card {
        flex: 0 0 80%;
        min-width: 160px;
        max-width: 220px;
    }

    .pc-card-img-wrap {
        min-height: 200px;
    }

    .pc-card-body {
        padding: 10px 12px;
    }

    .pc-card-title {
        font-size: 12px;
        gap: 6px;
    }

    .pc-card-title .rojs {
        width: 16px;
        height: 16px;
    }

    .pc-card-count {
        font-size: 9px;
        padding-left: 22px;
    }
}

















.about-panel {
    border-radius: 8px;
    padding: 28px;
    box-shadow: none;
}

/* Image */


    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius:5px;
    }

/* Vertical divider for larger screens */
.about-content {
    position: relative;
    padding-left: 32px;
}

    .about-content::before {
        content: "";
        position: absolute;
        left: 0;
        top: -80px;
        bottom: -80px;
        width: 1px;
        background: rgba(196, 196, 196, 1);
        border-radius: 2px;
    }


    .rab{
        padding:50px 0px 60px
    }

.badge-custom {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin-bottom: 8px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
}

.about-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 45px;
    color: rgba(0, 46, 109, 1);
}

.about-desc {
    color: rgba(30, 30, 30, 1);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 18px;
}

/* feature items */
.feature-number {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(139.67deg, #FFFFFF 22.87%, #d3effa 84.53%);
    border: 1px solid #d0e8ff;
    color: rgba(0, 158, 227, 1);
    font-weight: 300;
    font-size: 12px;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 46, 109, 1);
}

.feature-sub {
    color: #6b7280;
    font-size: 13px;
    margin-top: 4px;
}

/* responsive tweaks */
@media (max-width: 991.98px) {
    .about-content {
        padding-left: 0;
    }

        .about-content::before {
            display: none;
        }

    .about-img {
        max-height: 320px;
    }

    .about-title {
        font-size: 22px;
    }
}

@media (max-width: 420px) {


    .feature-number {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}


























.brand-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 18px;
    transition: all 0.3s ease;
}

    .brand-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transform: translateY(-3px);
    }

    .brand-card img {
        max-height: 40px;
        max-width: 120px;
        object-fit: contain;
        display: block;
    }

/* Carousel control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-size: 70% 70%;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .brand-card {
        height: 80px;
        padding: 14px;
    }

        .brand-card img {
            max-height: 32px;
        }
}






























/* Main section */
.app-showcase {
    background: linear-gradient(180deg, #174f83 0%, #123a63 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.app-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("img/bg.webp"); /* 👈 Your BG Image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.45; /* BG visibility */
    z-index: 0;
}

/* Overlay */
.app-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* Dark overlay */
    z-index: 1;
}

/* Bring real content above overlay */
.app-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 540px;
    align-items: center;
    gap: 40px;
}

/* Text side */
.app-text-block {
    color: #e7f3ff;
}

.app-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.app-heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #eaf6ff;
}

.app-heading .highlight {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    padding: 0 6px;
    border-radius: 4px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.app-description {
    font-size: 15px;
    line-height: 1.6;
    color: #cfe9ff;
    margin-bottom: 20px;
    max-width: 520px;
}

.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    padding: 0px 0px;
}


.download-text {
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
}

.store-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.store-btn svg {
    height: 20px;
    width: auto;
    display: block;
}

/* Right side visual */
.app-visual-wrap {
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-bg-card {
    position: absolute;
    right: 18px;
    width: 420px;
    height: 260px;
    transform: rotate(-6deg);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(6,20,40,0.4);
}

.visual-main-img {
    position: absolute;
    right: 18px;
    top: -10px;
    width: 360px;
    height: 230px;
    transform: rotate(-2deg);
    border-radius: 8px;
    background-image: url("img/main.webp"); /* 👈 Replace */
    background-size: cover;
    background-position: center;
    box-shadow: 0 16px 30px rgba(8,28,56,0.35);
}

.mockup-phone {
    position: absolute;
    right: 40px;
    bottom: -8px;
    width: 110px;
    height: 220px;
    border-radius: 28px;
    background: linear-gradient(180deg, #0e6fd0, #0b59aa);
    box-shadow: 0 18px 40px rgba(6,20,40,0.45);
    transform: rotate(-6deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 3;
}

.mockup-phone .mockup-screen {
    width: 86%;
    height: 92%;
    border-radius: 18px;
    background-image: url("img/screen.webp"); /* 👈 Replace */
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.mockup-phone.back {
    right: 20px;
    bottom: 16px;
    width: 88px;
    height: 180px;
    transform: rotate(-2deg) scale(0.92);
    opacity: 0.95;
    z-index: 1;
}















:root {
    --hero-bg: #14466b;
    --btn-blue: #00a8f0;
    --btn-blue-h: #0097d8;
    --line-white: rgba(255,255,255,.55);
}

/* ===== HERO SECTION ===== */
.hx-section {
    background: var(--hero-bg);
    color: #fff;
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
}

/* world map bg */
.hx-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/map.webp") center/1440px no-repeat;
    opacity: 5%;
    height: 588px;
    pointer-events: none;
}

.hx-section .container-fluid {
    position: relative;
    z-index: 1;
}

.hx-section .row {
    gap: 30px 0;
}

/* Left content wrapper */
.hx-content {
    position: relative;
}

/* ===== LEFT CONTENT ===== */
.hx-tag {
    display: inline-block;
    padding: 5px 10px 5px 10px;
    background: #B3E4F880;
    margin-bottom: 18px;
    border-radius: 5px;
    border: 0.5px solid #B3E4F8;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 500;
}

.hx-title {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff85;
}

.dams {
    color: #FFFFFF !important;
}

.hx-desc {
    margin: 0;
    max-width: 551px;
    line-height: 24px;
    opacity: .92;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
}

.hx-caption {
    margin: 22px 0 6px;
    font-size: 12px;
    font-weight: 500;
    color: #AEAEAE;
}

/* btn group */
.hx-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hx-actions img {
    height: 40px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hx-actions img:hover {
    transform: scale(1.05);
}

.hx-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.hx-primary {
    background: #FFFFFF;
    color: #009EE3;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    padding: 10px 15px 10px 15px;
}

.jasm {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border: 0.5px solid #FFFFFFBF !important;
    color: #FFFFFFBF !important;
    font-weight: 400;
}

.hx-primary:hover {
    background: #fcfeff;
}

.hx-outline {
    color: #fff;
    border: 1px solid var(--line-white);
}

    .hx-outline:hover {
        border-color: #fff
    }

/* ===== RIGHT IMAGE STACK ===== */
.hx-images {
    position: relative;
    text-align: center;
}

.hx-images .rass {
    max-width: 100%;
    height: auto;
}

.hx-img-box,
.hx-img-box2 {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,.38);
}

/* top image */
.hx-img-box {
    width: 430px;
    height: 260px;
    transform: skewX(-10deg) rotate(-4deg);
}

    .hx-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: skewX(10deg) rotate(4deg) scale(1.08);
    }

/* bottom image */
.hx-img-box2 {
    width: 360px;
    height: 225px;
    position: absolute;
    right: -40px;
    bottom: -50px;
    transform: skewX(-10deg) rotate(4deg);
}

    .hx-img-box2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: skewX(10deg) rotate(-4deg) scale(1.08);
    }

/* HX Section Responsive */
@media (max-width: 991.98px) {
    .hx-section {
        padding: 50px 15px;
    }

    .hx-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .hx-title {
        font-size: 24px;
    }

    .hx-title br {
        display: none;
    }

    .hx-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .hx-actions {
        right: 0;
        display: flex;
        justify-content: center;
    }

    .hx-images {
        text-align: center;
    }

    .rass {
        max-width: 100%;
        max-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .hx-section {
        padding: 40px 15px;
    }

    .hx-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .hx-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .hx-caption {
        font-size: 11px;
        margin: 18px 0 14px;
    }

    .hx-actions img {
        height: 36px;
    }

    .rass {
        max-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .hx-section {
        padding: 30px 12px;
    }

    .hx-title {
        font-size: 18px;
    }

    .hx-desc {
        font-size: 13px;
    }

    .hx-actions img {
        height: 32px;
    }

    .rass {
        max-height: 220px;
    }
}









 

    /* header */
    .news-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:20px;
      position:relative;
    }

    .news-left{
      display:flex;
      align-items:center;
      gap:18px;
    }

    .news-badge{
      display:inline-block;
      background:var(--badge-bg);
      color:var(--blue);
      padding:6px 10px;
      border-radius:6px;
      font-weight:600;
      font-size:12px;
    }

    .news-title{
      margin:0;
      font-size:22px;
      color:var(--blue);
      font-weight:700;
      letter-spacing:0.1px;
    }

    /* controls — top-right */
    .news-controls {
      display:flex;
      gap:8px;
      align-items:center;
    }

/* outer card */
.wc-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 2px 0px 30px 3px rgba(15, 23, 42, 0.05);
    padding: 18px 22px;
    max-width: 900px;
    margin: 20px auto;
}

/* inner layout: text left, logo right */
.wc-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
}

/* quote icon */
.wc-qbadge {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

    .wc-qbadge img {
      
        display: block;
    }

/* quote text */
.wc-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 14px;
}

/* name + meta */
.wc-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f75d6;
    margin: 0 0 4px;
}

.wc-meta {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0;
}

/* right logo block */
.wc-avatar {
    width: 140px;
    min-width: 140px;
    border-radius: 10px;
    background: radial-gradient(circle at top, #e7f3ff, #d7e9fb);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .wc-avatar img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

/* responsive: stack on mobile */
@media (max-width: 640px) {
    .wc-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .wc-avatar {
        width: 120px;
        min-width: 120px;
        align-self: flex-end;
        margin-top: 8px;
    }
}

.news-control-btn {
    width: 36px;
    height: 36px;
    color: rgba(0, 158, 227, 1);
    border-radius: 8px;
    border: 1px solid var(--card-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 243, 250, 1);
}
    .news-control-btn:active{ transform: translateY(1px) }

    /* carousel and cards */
    .news-carousel .carousel-item { padding:6px 0; }
.article-card {
    border: 1px solid var(--card-border);
    overflow: hidden;
    /* background: #fff; */
    transition: transform .18s ease, box-shadow .18s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
    .article-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 14px 30px rgba(13,38,76,0.07);
    }

    .article-img{
      width:100%;
      height:160px;
      object-fit:cover;
      display:block;
    }

    .article-body{
      padding:12px 14px 18px;
      flex:1 1 auto;
    }

.article-title {
    font-size: 18px;
    color: rgba(0, 46, 109, 1);
    font-weight: 500;
    margin: 6px 0 8px;
    line-height: 24px;
}

.article-meta {
    font-size: 12px;
    color: rgba(156, 156, 156, 1);
    font-weight: 500;
    line-height: 16px;
}

    /* smaller screens */
    @media (max-width: 991.98px) {
      .article-img { height:150px; }
    }
    @media (max-width: 576px) {
      .news-title{ font-size:18px; }
      .article-img{ height:160px; }
    }

    /* tweak to vertically stretch card columns */
    .row-eq > [class*='col-'] {
      display: flex;
      align-items: stretch;
    }























/* Wrapper */
.feedback-section {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.feedback-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.feedback-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feedback-badge {
    display: inline-block;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #eaf4ff;
    color: #0b4aa6;
    font-weight: 600;
}

.feedback-title {
    margin: 0;
    font-size: 20px;
    color: #0b4aa6;
    font-weight: 700;
}

/* Controls */
.feedback-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.feedback-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #eef3f8;
    color: #0b4aa6;
    box-shadow: 0 6px 14px rgba(13, 38, 76, 0.04);
    cursor: pointer;
}

/* Card */
.feedback-card {
    background: #fff;
    border: 1px solid #eef3f8;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 10px 24px rgba(13, 38, 76, 0.03);
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .feedback-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 36px rgba(13, 38, 76, 0.06);
    }

.feedback-quote {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #eaf4ff;
    color: #0b4aa6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 4px;
}

.feedback-thumb {
    width: 94px;
    height: 94px;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 94px;
    background: #f3f7fb;
    border: 1px solid #eef3f8;
}

    .feedback-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.feedback-content {
    flex: 1 1 auto;
}

.feedback-text {
    font-size: 14px;
    color: #39445a;
    line-height: 1.6;
    margin: 0 0 12px;
}

.feedback-name {
    font-size: 13px;
    color: #0b76b5;
    font-weight: 600;
}

.feedback-role {
    display: block;
    font-size: 12px;
    color: #7b8aa1;
    font-weight: 400;
    margin-top: 4px;
}

/* Grid Layout */
.feedback-slide-row {
    display: flex;
    gap: 20px;
}

.feedback-slide-col {
    flex: 1 1 0;
    min-width: 0;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .feedback-slide-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feedback-slide-col {
        flex: 0 0 48%;
    }
}

@media (max-width: 576px) {
    .feedback-card {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        gap: 12px;
    }

    .feedback-quote {
        align-self: flex-start;
        margin-top: 0;
    }

    .feedback-thumb {
        width: 100%;
        height: 180px;
        flex: 0 0 auto;
        border-radius: 8px;
        order: 0;
    }

    .feedback-content {
        order: 1;
    }

    .feedback-slide-row {
        flex-direction: column;
    }

    .feedback-slide-col {
        flex: 0 0 100%;
    }

    .feedback-title {
        font-size: 18px;
    }
}

















/* BREADCRUMB */
.page-breadcrumb {
    font-size: 13px;
    color: #8f9aa6;
    margin: 20px 0 10px;
}

    .page-breadcrumb span {
        margin: 0 3px;
    }

/* MAIN WRAPPER */
.products-page-wrap {
    padding: 100px 0 40px;
}

/* Breadcrumb spacing */
.products-page-wrap .page-breadcrumb {
    margin-top: 20px;
    margin-bottom: 30px;
}

/* SIDEBAR */
.products-sidebar {
    padding: 20px 18px;
    font-size: 14px;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    position: sticky;
    top: 100px;
}

/* Sidebar scrollbar - show only on hover */
.products-sidebar::-webkit-scrollbar {
    width: 4px;
}

.products-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.products-sidebar::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 2px;
}

.products-sidebar:hover::-webkit-scrollbar-thumb {
    background: #ccc;
}

.products-sidebar:hover::-webkit-scrollbar-thumb:hover {
    background: #009EE3;
}

/* Product page responsive */
@media (max-width: 991.98px) {
    .products-page-wrap {
        padding: 90px 15px 40px;
    }

    .products-page-wrap .page-breadcrumb {
        margin-top: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .products-page-wrap {
        padding: 80px 10px 30px;
    }

    .products-page-wrap .page-breadcrumb {
        font-size: 11px;
    }

    .products-header {
        margin-bottom: 20px;
    }
}


.form-select-sm {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: 12px;
    font-weight: 500;
    color: rgba(164, 164, 164, 1) !important;
    border-radius: 2px;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .12em;
    color: #444;
    margin-bottom: 12px;
}

.filter-title i {
    font-size: 13px;
}

.filter-title span {
    line-height: 1;
}


.filter-block + .filter-block {
    border-top: 1px solid #edf0f3;
    margin-top: 16px;
    padding-top: 16px;
}

.filter-heading {
    font-weight: 500;
    color: rgba(174, 174, 174, 1);
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.filter-heading:hover {
    color: #009EE3;
}

.filter-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.filter-heading[aria-expanded="false"] .filter-arrow,
.filter-heading.collapsed .filter-arrow {
    transform: rotate(-90deg);
}

.filter-content {
    padding-top: 10px;
    max-height: 200px;
    overflow-y: auto;
}

/* Filter content scrollbar - show only on hover */
.filter-content::-webkit-scrollbar {
    width: 4px;
}

.filter-content::-webkit-scrollbar-track {
    background: transparent;
}

.filter-content::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 2px;
}

.filter-content:hover::-webkit-scrollbar-thumb {
    background: #ccc;
}

.filter-content:hover::-webkit-scrollbar-thumb:hover {
    background: #009EE3;
}


    .filter-heading small {
        font-weight: 400;
        color: #a0a7b2;
        font-size: 12px;
    }

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
    user-select: none;
}

    .filter-option input {
        margin-right: 8px;
        border: 1px solid rgba(164, 164, 164, 1);
        width: 20px;
        height: 20px;
        border-radius: 1px;
    }
/* Hide default checkbox */
.products-sidebar .filter-option input[type="checkbox"] {
    appearance: none;
    font-size: 15px;
    position: relative;
}



.rabs {
    font-size: 15px;
    font-weight: 500;
    color: rgba(53, 53, 53, 1);
    padding: 0px;
    margin: 0px;
}

.rots {
    color: rgba(164, 164, 164, 1);
    font-weight:500;
    font-size:15px;
}

    /* Checked state */
    .products-sidebar .filter-option input[type="checkbox"]:checked {
        border-color: rgba(0, 158, 227, 1);
        background: rgba(0, 158, 227, 1);
    }

        /* Checkmark icon */
        .products-sidebar .filter-option input[type="checkbox"]:checked::after {
            content: "✔";
            font-size: 13px;
            color: #fff;
            position: absolute;
            top: -1px;
            left: 3px;
            font-weight: 600;
        }

    /* Hover effect (optional, same design feel) */
    .products-sidebar .filter-option input[type="checkbox"]:hover {
        border-color: rgba(0, 158, 227, 0.7);
    }

/* Mobile Filter & Sort Row */
.mobile-filter-sort-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #009EE3;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.mobile-filter-btn:hover {
    background: #0088cc;
}

.mobile-filter-btn i {
    font-size: 12px;
}

.mobile-filter-sort-row .sort-select {
    flex: 1;
}

/* Filter Modal Overlay */
.filter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.filter-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Filter Modal */
.filter-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.filter-modal.active {
    right: 0;
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.filter-modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #333;
}

.filter-modal-title i {
    color: #009EE3;
}

.filter-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s ease;
}

.filter-modal-close:hover {
    color: #009EE3;
}

.filter-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.filter-modal-body .filter-block + .filter-block {
    border-top: 1px solid #edf0f3;
    margin-top: 16px;
    padding-top: 16px;
}

.filter-modal-body .filter-content {
    max-height: none;
    overflow: visible;
}

.filter-modal-footer {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.filter-clear-btn {
    flex: 1;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-clear-btn:hover {
    border-color: #009EE3;
    color: #009EE3;
}

.filter-apply-btn {
    flex: 1;
    padding: 12px 20px;
    background: #009EE3;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.filter-apply-btn:hover {
    background: #0088cc;
}

/* HEADER RIGHT */
.products-header {
    display: flex;
    justify-content: end;
    /* align-items: end; */
    margin-bottom: 50px;
}

    .products-header h2 {
        font-size: 20px;
        margin: 0;
        font-weight: 600;
    }

.sort-select {
    font-size: 13px;
    padding: 6px 10px;
}

/* Hide desktop sorting on mobile */
@media (max-width: 991.98px) {
    .products-header {
        display: none;
    }
}

/* ---------- PRODUCT CARD FULL DESIGN ---------- */

.product-card {
    position: relative;
    border: 1px solid rgba(226, 226, 226, 1);
    background: #fff;
    padding: 16px 16px 14px;
    height: 95%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    /* Top Half Color Background */
    .product-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 120px; /* Adjust for exact screenshot match */
        background: rgba(245, 245, 247, 1); /* Light blue shade */
        z-index: 0;
    }

/* Content above background */
.product-badges,
.product-img-wrap,
.product-title,
.product-meta {
    position: relative;
    z-index: 1;
}

/* BADGES */
.product-badges {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
}

.badge-pill {
    border-radius: 5px;
    padding: 5px 12px 5px 12px;
    font-weight: 500;
}

.badge-primary-soft {
    background: rgba(0, 159, 223, 0.7);
    color: rgba(255, 255, 255, 1);
}

.badge-secondary-soft {
    background: rgba(0, 159, 223, 0.7);
    color: rgba(255, 255, 255, 1);
}

/* IMAGE WRAPPER */
.product-img-wrap {
    text-align: center;
    padding: 6px 0 10px;
    min-height: 125px;
}

    .product-img-wrap img {
        max-width: 100%;
        height: auto;
        transform: translateY(-8px); /* little lift like screenshot */
    }

/* TITLE */
.product-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 24px;
    color: rgba(0, 46, 109, 1);
}



.dom {
    border-TOP: 1px solid rgba(217, 217, 217, 1)
}

/* META */
.product-meta {
    font-size: 12px;
    color: rgba(30, 30, 30, 1);
    line-height: 24px;
}

    .product-meta a {
        color: #007bff;
        font-weight: 500;
        text-decoration: none;
    }

/* HIDE ON FILTER */
.product-card-wrap {
    transition: opacity .2s ease,transform .2s ease;
}

    .product-card-wrap.hidden {
        opacity: 0;
        transform: scale(.98);
        pointer-events: none;
        position: absolute;
        visibility: hidden;
    }

/* ========== CATEGORY PAGE CARD STYLES ========== */
.category-card-wrap {
    transition: opacity .2s ease, transform .2s ease;
}

.category-card-wrap.hidden {
    opacity: 0;
    transform: scale(.98);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.category-card-wrap a {
    text-decoration: none;
    display: block;
}

/* Override pc-card sizing for grid layout */
.category-card-wrap .pc-card {
    flex: none;
    min-width: auto;
    max-width: 100%;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width:991.98px) {
    .products-sidebar {
        margin-bottom: 20px;
    }
}


















/* Breadcrumb */
.page-breadcrumb {
    font-size: 12px;
    color: rgba(156, 156, 156, 1);
    margin: 0px 20px 40px;
    font-weight: 400;
    line-height: 18px;
}

    .page-breadcrumb a {
        text-decoration: none;
        color: #8f9aa6;
    }

    .page-breadcrumb span {
        margin: 0 3px;
    }

/* Main Card */
.product-detail-card {
    background: #fff;
    border-radius: 5px;
    padding: 70px 40px 70px;

    border: 1px solid #e4e7eb;
    margin-bottom: 30px;
}

/* Product Details Page */
.product-details-wrap {
    padding: 100px 45px 40px;
}

.product-details-wrap .page-breadcrumb {
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Keep old class for backward compatibility */
.rools {
    padding: 100px 45px 40px !important;
}

/* Product Details Responsive */
@media (max-width: 991.98px) {
    .product-details-wrap {
        padding: 90px 30px 40px;
    }

    .product-details-wrap .page-breadcrumb {
        margin-top: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .product-details-wrap {
        padding: 80px 15px 30px;
    }

    .product-details-wrap .page-breadcrumb {
        font-size: 11px;
    }
}
/* ---------------- IMAGE SECTION ------------- */
/* WRAPPER: main image + thumbs */
.pd-gallery {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

/* LEFT SMALL THUMBS COLUMN */
.pd-thumbs {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;

}









/* SINGLE THUMB BOX */
.pd-thumb {
    width: 60px;
    height: 60px;
    border-radius: 3px;
    border: 1px solid #e1e6ee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
}

    .pd-thumb img {
        max-width: 100%;
        max-height: 100%;
    }

    /* ACTIVE THUMB (blue border) */
    .pd-thumb.active {
        border-color: rgba(0, 158, 227, 1);
        box-shadow: 0 0 0 1px rgba(0, 158, 227, 1);
    }

/* MAIN IMAGE BOX (square) */
.pd-main {
    flex: 1;
    border: 1px solid #e1e6ee;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    width: 431px;
    height: 431px;
}

    .pd-main img {
        max-width: 100%;
        max-height: 100%;
    }

.pd-actions {
    width: 100%;
    display: flex;
    justify-content: end;
    gap: 19px;
    margin-top: 16px;
    padding-left: 4px;
}

/* QTY BOX */
.qty-control {
    display: flex;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    height: 50px; /* same height as button */
}

.qty-btn {
    width: 40px;
    background: #f2f5f8;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.qty-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
}

/* ADD TO CART BUTTON */
.btn-add-cart {
    width: 385px;
    height: 50px;
    background: #009EE3;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-add-cart:hover {
        background: #0088c4;
    }

/* Product Info (Right Side) */
.pd-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.pd-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin-bottom: 8px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
}

.pd-badge-primary {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin-bottom: 8px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
}

.pd-badge-secondary {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin-bottom: 8px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
}

.pd-title {
    font-size: 26px;
    font-weight: 400;
    color: rgba(0, 46, 109, 1);
    line-height: 38px;
}

.pd-subtitle {
    font-size: 16px;
    color: rgba(30, 30, 30, 1);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 24px;
}

.pd-price {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(0, 158, 227, 1);
    line-height: 24px;
    font-weight: 500;
    margin-top: 20px;
}

    .pd-price a {
        color: rgba(0, 158, 227, 1);
        text-decoration: none;
        font-weight: 500;
    }

.pd-section-title {
    font-size: 20px;
    font-weight: 400;
    margin-top: 14px;
    color: rgba(0, 46, 109, 1);
    margin-bottom: 6px;
    line-height: 28px;
}

/* SPEC LIST WRAPPER */
.pd-spec-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    /* EACH ROW */
    .pd-spec-list li {
        position: relative;
        padding-left: 16px;
        margin-bottom: 6px;
        font-size: 13px;
        line-height: 24px;
        font-weight: 400;
        color: rgba(48, 48, 48, 1);
    }

        /* BLUE SQUARE BULLET */
        .pd-spec-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: #00a1e6; /* same blue (#009EE3 range) */
            border-radius: 2px; /* slight curve like screenshot */
            position: absolute;
            left: 0;
            top: 6px;
        }

/* LABEL (Category:, Make:, etc.) */
.pd-spec-label {
    font-weight: 300;
    color: rgba(138, 138, 138, 1);
    margin-right: 4px;
    font-size: 16px;
    line-height: 24px;
}

.pd-features {
    font-size: 14px;
    color: rgba(48, 48, 48, 1);
    font-weight: 400;
    padding-left: 16px;
}

    .pd-features li {
        margin-bottom: 4px;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        color: rgba(48, 48, 48, 1);
    }


.rol {
    padding: 0px 65px !important;
}

        .pd-features li::marker {
            color: #007bff;
        }

@media (max-width:991.98px) {
    .pd-gallery {
        flex-direction: column;
    }

    .pd-thumbs {
        flex-direction: row;
        order: 2;
    }

    .pd-main {
        order: 1;
    }

    /*.pd-actions {
        flex-direction: column;
    }*/
}

.filter-title {
    color: rgba(53, 53, 53, 1);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom:25px;
}








/* Cart Page Wrapper */
.cart-page-wrap {
    padding: 100px 20px 40px;
}

.cart-page-wrap .container-fluid {

}

.cart-page-wrap .page-breadcrumb {
    margin-top: 20px;
    margin-bottom: 30px;
}

.page {
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 13px;
    color: #8f9aa6;
    margin-bottom: 16px;
}

    .breadcrumb a {
        color: #8f9aa6;
    }

    .breadcrumb span {
        margin: 0 3px;
    }

/* LAYOUT: LEFT CART + RIGHT SUMMARY */
.cart-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* COMMON CARD STYLE */
.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,.04);
    border: 0.5px solid rgba(217, 217, 217, 1) !important;
}

/* LEFT MAIN CART CARD */
.cart-card {
    flex: 1 1 0;
    padding: 20px 26px;
}

/* header row (IMAGE / PRODUCT / PRICE / QTY / TOTAL) */
.cart-header {
    display: flex;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 46, 109, 1);
    padding-bottom: 10px;
    border-bottom: 1px solid #ecf0f4;
    margin-bottom: 4px;
    line-height: 18px;
}

    .cart-header div {
        padding-right: 10px;
    }

.cart-col-image-h {
    flex: 0 0 80px;
}

.cart-col-product-h {
    flex: 1 1 auto;
}

.cart-col-price-h {
    flex: 0 0 100px;
    text-align: center;
}

.cart-col-qty-h {
    flex: 0 0 120px;
    text-align: center;
}

.cart-col-total-h {
    flex: 0 0 100px;
    text-align: center;
}

.cart-col-remove-h {
    flex: 0 0 30px;
}

/* CART ROWS */
.cart-items {
    font-size: 13px;
    color: #4f5b6b;
}

.cart-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    border-bottom: 1px solid #e9edf2;
}

    .cart-row:last-child {
        border-bottom: none;
    }

.cart-img-wrap {
    flex: 0 0 70px;
}

.cart-img-box {
    width: 60px;
    height: 60px;
    border: 1px solid #b6d8ff;
    border-radius: 4px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .cart-img-box img {
        max-width: 100%;
        max-height: 100%;
    }

.cart-info {
    flex: 1 1 auto;
}

.cart-title {
    font-size: 14px;
    color: rgba(0, 46, 109, 1);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2px;
    line-height: 18px;
}

.cart-sub {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(30, 30, 30, 1);
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 15px;
    padding: 10px 0px 0px;
}
.cart-meta {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .cart-meta li {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 6px;
        font-size: 13px;
    }

        .cart-meta li::before {
            content: "";
            width: 3.5px;
            height: 3.33px;
            background: rgba(0, 158, 227, 1);
            /* border-radius: 2px; */
            margin-top: 6px;
            flex-shrink: 0;
        }

        /* label boldness like screenshot */
        .cart-meta li span.label {
            color: rgba(138, 138, 138, 1);
            font-weight: 500;
            font-size: 10px;
            line-height: 15px;
        }

        /* value black bold */
        .cart-meta li span.value {
            color: rgba(48, 48, 48, 1);
            font-weight: 500;
            text-transform: uppercase;
            font-size: 10px;
            line-height: 15px;
        }

.cart-price,
.cart-total {
    text-align: center;
    font-weight: 500;
    color: rgba(0, 158, 227, 1);
    font-size: 18px;
    line-height: 24px;
}

.cart-qty {
    flex: 0 0 120px;
    text-align: center;
}

.qty-box {
    display: inline-flex;
    border-radius: 5px;
    overflow: hidden;
    height: 35px;
    border: 0.5px solid rgba(174, 174, 174, 1);
}

.qty-btn {
    width: 26px;
    border: none;
    color: rgba(138, 138, 138, 1);
    background: #f2f5f800;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

.qty-input {
    width: 36px;
    border: none;
    text-align: center;
    font-size: 14px;
}

.cart-remove {
    text-align: right;
    font-size: 21px;
    cursor: pointer;
    color: #009EE3;
    background: #F5F5F7;
    padding: 0px 10px;
}

    .cart-remove:hover {
        color: #ff5252;
    }

/* RIGHT: CART TOTAL CARD */
.summary-card {
    flex: 0 0 260px;
    padding: 18px 22px;
    font-size: 13px;
    color: #4f5b6b;
}

.summary-title {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 14px;
    color: rgba(0, 46, 109, 1);
    line-height: 38px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.summary-label {
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(0, 46, 109, 1);
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 10px;
}

.summary-value {
    font-weight: 400;
    color: rgba(0, 158, 227, 1);
    font-size: 14px;
    line-height: 18px;
}

.summary-row.total-row {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #ecf0f4;
}

/* Button under Cart Total (for modal trigger) */
.summary-btn {
    margin-top: 14px;
    width: 100%;
    border: none;
    border-radius: 4px;
    background: #009ee3;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 12px;
    cursor: pointer;
}

    .summary-btn:hover {
        background: #0084bd;
    }

/* MODAL TOP CONTENT (IMAGE + TEXT SIDE BY SIDE) */
.modal-summary {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #4f5b6b;
}

.modal-summary-img {
    flex: 0 0 80px;
}

.modal-summary-img-inner {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    border: 1px solid #e1e6ed;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

    .modal-summary-img-inner img {
        max-width: 100%;
        max-height: 100%;
    }

.modal-summary-text {
    flex: 1 1 auto;
}

    .modal-summary-text h6 {
        font-size: 14px;
        font-weight: 600;
        margin: 0 0 4px;
        color: #1d3557;
    }

    .modal-summary-text p {
        font-size: 12px;
        margin: 0 0 6px;
        color: #6b7584;
    }

.modal-summary-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    font-size: 12px;
    color: #6b7584;
}

    .modal-summary-list li {
        margin-bottom: 2px;
        padding-left: 10px;
        position: relative;
    }

        .modal-summary-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: #009ee3;
            font-size: 12px;
        }

/* Cart Modal Styling */
#cartDetailsModal .modal-content {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#cartDetailsModal .modal-header {
    background: #009ee3;
    color: #fff;
    border-bottom: none;
    padding: 18px 24px;
    border-radius: 8px 8px 0 0;
}

#cartDetailsModal .modal-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

#cartDetailsModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#cartDetailsModal .btn-close:hover {
    opacity: 1;
}

#cartDetailsModal .modal-body {
    padding: 24px;
    background: #f8f9fa;
}

#cartDetailsModal .modal-body hr {
    border-color: #e0e5eb;
    margin: 16px 0 20px;
}

#cartDetailsModal .form-label {
    font-size: 12px;
    font-weight: 600;
    color: #009ee3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

#cartDetailsModal .form-control {
    border: 1px solid #d0d7e0;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

#cartDetailsModal .form-control:focus {
    border-color: #009EE3;
    box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.15);
    outline: none;
}

#cartDetailsModal .form-control::placeholder {
    color: #a0a8b3;
    font-size: 13px;
}

#cartDetailsModal textarea.form-control {
    resize: none;
}

#cartDetailsModal .mb-2 {
    margin-bottom: 16px !important;
}

#cartDetailsModal .modal-footer {
    background: #fff;
    border-top: 1px solid #e8ecf0;
    padding: 16px 24px;
    gap: 12px;
}

#cartDetailsModal .modal-footer .btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
}

#cartDetailsModal .btn-outline-secondary {
    border-color: #d0d7e0;
    color: #5a6370;
    background: #fff;
}

#cartDetailsModal .btn-outline-secondary:hover {
    background: #f0f2f5;
    border-color: #c0c7d0;
    color: #333;
}

#cartDetailsModal .btn-primary {
    background: #009EE3;
    border: none;
    color: #fff;
}

#cartDetailsModal .btn-primary:hover {
    background: #0088cc;
}

/* Modal Summary Section */
#cartDetailsModal .modal-summary {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e8ecf0;
}

#cartDetailsModal .modal-summary-text h6 {
    color: #009ee3;
    font-size: 16px;
}

#cartDetailsModal .modal-summary-text p {
    color: #5a6370;
}

/* RESPONSIVE: summary below cart */
@media (max-width:991.98px) {
    .cart-page-wrap {
        padding: 90px 15px 40px;
    }

    .cart-page-wrap .page-breadcrumb {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .cart-layout {
        flex-direction: column;
    }

    .summary-card {
        width: 100%;
        flex: 0 0 auto;
    }
}

/* 🔥 MOBILE: NO OVERFLOW + CLEAR ORDER */
@media (max-width:767.98px) {

    .cart-page-wrap {
        padding: 80px 10px 30px;
    }

    .cart-page-wrap .page-breadcrumb {
        font-size: 11px;
    }

    .page {
        padding: 16px 10px 24px;
    }

    /* header hide on mobile to avoid overflow */
    .cart-header {
        display: none;
    }

    .cart-card {
        padding: 14px 12px;
    }

    .cart-row {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 0;
    }

    /* 1️⃣ Image (fixed small) */
    .cart-img-wrap {
        flex: 0 0 60px;
        order: 1;
    }

    /* 2️⃣ Product info (next to image / then full width) */
    .cart-info {
        flex: 1 1 calc(100% - 70px);
        order: 2;
    }

    .cart-row {
        position: relative;
        padding-right: 30px;
    }

    /* 3️⃣ Qty, Price, Total row */
    .cart-qty {
        flex: 0 0 auto;
        order: 3;
        text-align: left;
        margin-top: 10px;
    }

    .cart-price {
        flex: 1;
        order: 4;
        text-align: left;
        margin-top: 10px;
        font-size: 14px;
    }

    .cart-price::before {
        content: "Price: ";
        font-size: 11px;
        color: #888;
        font-weight: 400;
    }

    .cart-total {
        flex: 1;
        order: 5;
        text-align: right;
        margin-top: 10px;
        font-size: 14px;
    }

    .cart-total::before {
        content: "Total: ";
        font-size: 11px;
        color: #888;
        font-weight: 400;
    }

    /* Remove button - fixed position next to image */
    .cart-remove {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        font-size: 14px;
        padding: 4px 8px;
        border-radius: 4px;
    }
}









/* Inner Page Wrapper (Contact, News, etc.) */
.inner-page-wrap {
    padding-top: 100px;
}

.inner-page-wrap .page-wrap .page-breadcrumb {
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-wrap {
    margin: 0 auto;
    padding: 0px 33px 40px;
}

/* Inner Page Responsive */
@media (max-width: 991.98px) {
    .inner-page-wrap {
        padding-top: 90px;
    }

    .inner-page-wrap .page-wrap .page-breadcrumb {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .page-wrap {
        padding: 0px 20px 30px;
    }
}

@media (max-width: 767.98px) {
    .inner-page-wrap {
        padding-top: 80px;
    }

    .inner-page-wrap .page-wrap .page-breadcrumb {
        font-size: 11px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .page-wrap {
        padding: 0px 15px 25px;
    }
}

/* BREADCRUMB with ICONS (legacy) */
.breadcrumb {
    font-size: 12px;
    color: #8f9aa6;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .breadcrumb a {
        color: rgba(156, 156, 156, 1);
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
    }

    .breadcrumb i {
        font-size: 11px;
    }

.page-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin: 15px 0px 15px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
}

.page-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    color: rgba(14, 59, 100, 1);
}

.hero-image-wrap {
    overflow: hidden;
    border: 1px solid #dde3eb;
    background: #000;
}

    .hero-image-wrap img {
        width: 100%;
        object-fit: cover;
        display: block;
    }

@media (max-width:768px) {
    .page-title {
        font-size: 22px;
    }

    .hero-image-wrap img {
        height: 230px;
    }
}


.two-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.two-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
}

/* IMAGE (desktop) */
.two-img {
    width: 70%;
    max-width: 835px;
    height: 450px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    border-radius: 5px;
}

/* LEFT OVERLAY CARD (desktop) */
.two-card {
    position: absolute;
    width: 450px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 90%);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 40px 42px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.two-title {
    font-size: 26px;
    font-weight: 400;
    color: rgba(0, 46, 109, 1);
    margin-bottom: 20px;
}

.two-text {
    font-size: 15px;
    color: rgba(30, 30, 30, 1);
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 20px;
}

.two-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0, 158, 227, 1);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: 5px;
    line-height: 18px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.two-btn:hover {
    background: #0088cc;
}

/* ---------- TABLET VIEW ---------- */
@media (max-width: 991.98px) {
    .two-wrap {
        padding: 30px 15px;
    }

    .two-container {
        flex-direction: column;
    }

    .two-img {
        width: 100%;
        height: 350px;
        order: 1;
    }

    .two-card {
        position: relative;
        transform: none;
        width: 100%;
        left: auto;
        top: auto;
        order: 2;
        margin-top: -50px;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        background: #fff;
    }

    .two-title {
        font-size: 22px;
    }

    .two-text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 767.98px) {
    .two-wrap {
        padding: 20px 10px;
    }

    .two-img {
        height: 250px;
        border-radius: 5px;
    }

    .two-card {
        margin-top: -30px;
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 20px);
        padding: 25px 20px;
    }

    .two-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .two-text {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .two-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}



/* MAIN WRAPPER */
.sec3-main-box {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

/* MAIN IMAGE + CARD CONTAINER */
.sec3-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
}

/* IMAGE */
.sec3-photo {
    width: 70%;
    max-width: 835px;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

/* RIGHT SIDE WHITE BLUR CARD */
.sec3-info-card {
    position: absolute;
    width: 450px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 90%);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 40px 42px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* TITLE */
.sec3-heading {
    font-size: 26px;
    font-weight: 400;
    color: rgba(0, 46, 109, 1);
    margin-bottom: 20px;
}

/* TEXT CONTENT */
.sec3-description {
    font-size: 15px;
    color: rgba(30, 30, 30, 1);
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 20px;
}

/* BUTTON */
.sec3-cta-btn {
    display: inline-block;
    background: #009EE3;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.sec3-cta-btn:hover {
    background: #0088cc;
}

/* ---------- SEC3 TABLET VIEW ---------- */
@media (max-width: 991.98px) {
    .sec3-main-box {
        padding: 30px 15px;
    }

    .sec3-container {
        flex-direction: column;
    }

    .sec3-photo {
        width: 100%;
        height: 350px;
        order: 1;
    }

    .sec3-info-card {
        position: relative;
        transform: none;
        right: auto;
        top: auto;
        order: 2;
        margin-top: -50px;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        background: #fff;
    }

    .sec3-heading {
        font-size: 22px;
    }

    .sec3-description {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ---------- SEC3 MOBILE VIEW ---------- */
@media (max-width: 767.98px) {
    .sec3-main-box {
        padding: 20px 10px;
    }

    .sec3-photo {
        height: 250px;
        border-radius: 5px;
    }

    .sec3-info-card {
        margin-top: -30px;
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 20px);
        padding: 25px 20px;
        height: auto;
    }

    .sec3-heading {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .sec3-description {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .sec3-cta-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}






.gline-wrap {
    max-width: 820px;
    margin: 0 auto 20px;
    text-align: center;
    padding: 20px;
}

.gline-text {
    font-size: 20px;
    line-height: 28px;
    color: rgba(0, 46, 109, 1);
    margin: 0;
    font-weight: 400;
}

    .gline-text a {
        color: rgba(0, 158, 227, 1);
        font-weight: 400;
    }

/* Gline Responsive */
@media (max-width: 767.98px) {
    .gline-wrap {
        padding: 15px;
    }

    .gline-text {
        font-size: 16px;
        line-height: 24px;
    }
}













.gbu-facility-section {
    padding: 20px 0 10px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.gbu-facility-top {
       font-size: 20px;
    color: rgba(0, 46, 109, 1);
    line-height: 28px;
    font-weight: 400;
}

    .gbu-facility-top a {
        color: rgba(0, 158, 227, 1);
        font-weight: 400;
    }

.gbu-facility-bottom {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(74, 74, 74, 1);
    max-width: 849px;
    margin-left: auto;
    margin-right: auto;
    line-height: 20px;
    font-weight: 300;
}



















.gfac-card {
    padding-bottom: 18px;
    background: #fff;
    border-radius: 8px;
}

.gfac-img {
    width: 100%;
    height: 260px;
    border-radius: 5px;
}

.gfac-title {
    font-size: 24px;
    font-weight: 500;
    margin: 14px 0 14px 0;
    color: rgba(32, 56, 110, 1);
}

.gfac-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 16px 0;
}

    .gfac-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 300;
        color: rgba(48, 48, 48, 1);
    }

.gfac-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #b2e3ff;
    color: #00a2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    background: white;
    flex-shrink: 0;
}

.gfac-link {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 175, 233, 1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid;
}












/* About Us - Intro Text Section */
.gtext-section {
    padding: 30px 20px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.gtext-main {
    font-size: 18px;
    line-height: 28px;
    color: rgba(0, 46, 109, 1);
    font-weight: 400;
}

    .gtext-main a {
        color: rgba(0, 158, 227, 1);
        font-weight: 500;
    }

.gtext-sub {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(74, 74, 74, 1);
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    padding: 0px 40px;
}

/* Gtext Section Responsive */
@media (max-width: 991.98px) {
    .gtext-section {
        padding: 25px 15px 15px;
    }

    .gtext-main {
        font-size: 16px;
        line-height: 26px;
    }

    .gtext-sub {
        padding: 0 20px;
    }
}

@media (max-width: 767.98px) {
    .gtext-section {
        padding: 20px 12px 15px;
    }

    .gtext-main {
        font-size: 15px;
        line-height: 24px;
    }

    .gtext-sub {
        font-size: 12px;
        line-height: 1.6;
        padding: 0;
        margin-top: 10px;
    }
}
























/* About Us - Flag Section */
.gflag-wrap {
    margin: 0 auto;
    padding: 40px 30px 50px;
    
}

/* left content */
.gflag-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin: 15px 0px 15px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
}

.gflag-title {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgba(14, 59, 100, 1);
    line-height: 1.4;
}

.gflag-text-main {
    font-size: 15px;
    color: rgba(30, 30, 30, 1);
    line-height: 24px;
    margin-bottom: 15px;
    font-weight: 300;
}

.gflag-text-sub {
    font-size: 14px;
    color: rgba(80, 80, 80, 1);
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: 300;
}

/* right stacked images */
.hx-images {
    width: 100%;
    max-width: 500px;
}

.hx-images .rass {
    width: 100%;
    height: auto;
    border-radius: 8px;
    
}

.gflag-images {
    position: relative;
    height: 260px;
}

.gflag-img-box {
    position: absolute;
    width: 260px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

    .gflag-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.gflag-img-top {
    top: 0;
    left: 40px;
    transform: rotate(-4deg);
}

.gflag-img-bottom {
    bottom: 0;
    right: 10px;
    transform: rotate(3deg);
}

/* Flag Section Responsive */
@media (max-width: 991.98px) {
    .gflag-wrap {
        padding: 30px 20px 40px;
    }

    .gflag-title {
        font-size: 22px;
    }

    .hx-images {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .gflag-wrap {
        padding: 25px 15px 30px;
    }

    .gflag-tag {
        margin: 10px 0;
    }

    .gflag-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .gflag-text-main {
        font-size: 14px;
        line-height: 22px;
    }

    .gflag-text-sub {
        font-size: 13px;
        line-height: 20px;
    }

    .gflag-images {
        margin-top: 24px;
        height: 230px;
    }

    .gflag-img-box {
        width: 220px;
        height: 170px;
    }

    .gflag-img-top {
        left: 10px;
    }

    .gflag-img-bottom {
        right: 0;
    }
}


















/* About Gabriel India Section */
.gai-wrap {
 
    margin: 0 auto;
    padding: 40px 30px 50px;
}

/* Top pill + heading */
.gai-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin: 15px 0px 15px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
}

.roja {
    background-color: rgba(245, 245, 247, 1);
}

.rats {
    display: flex;
    gap: 12px;
    align-items: center;
}

.rajs {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.gai-title {
    font-size: 28px;
    font-weight: 500;
    color: rgba(0, 46, 109, 1);
    margin-bottom: 26px;
}

/* Stats cards */
.gai-stat-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: left;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
    height: 100%;
}

.gai-stat-icon {
    font-size: 22px;
    color: #009ee3;
    margin-bottom: 10px;
}

.gai-stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1e2933;
}

.gai-stat-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(154, 153, 153, 1);
    margin-top: 10px;
}

/* Middle text */
.gai-text-block {
    margin: 30px auto 35px;
    max-width: 700px;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: rgba(74, 74, 74, 1);
}

    .gai-text-block a {
        color: #009EE3;
        text-decoration: none;
        font-weight: 600;
    }

/* Mission / Vision cards */
.gai-mv-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
    height: 100%;
}

.gai-mv-placeholder {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    background: #f2f4f7;
    margin-bottom: 14px;
}

.gai-mv-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(30, 30, 30, 1);
    margin-bottom: 8px;
    line-height: 24px;
}

.gai-mv-title img {
    width: 20px;
    height: 20px;
}

    .gai-mv-title i {
        color: #0089e0;
        font-size: 12px;
    }

.gai-mv-text {
    font-size: 13px;
    color: rgba(0, 46, 109, 1);
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 12px;
    text-align: left;
    padding: 0px 28px;
}

.gai-mv-link {
    font-size: 12px;
    color: rgba(157, 157, 157, 1);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gai-mv-link:hover {
    color: #009EE3;
}

.side {
    text-align: start;
    padding: 0px 28px;
}

/* GAI Section Responsive */
@media (max-width: 991.98px) {
    .gai-wrap {
        padding: 30px 15px 40px;
    }

    .gai-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .gai-stat-number {
        font-size: 24px;
    }

    .gai-stat-label {
        font-size: 13px;
    }

    .gai-text-block {
        font-size: 15px;
        line-height: 24px;
        margin: 25px auto 30px;
    }

    .gai-mv-placeholder {
        height: 100px;
    }
}

@media (max-width: 767.98px) {
    .gai-wrap {
        padding: 25px 12px 35px;
    }

    .gai-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .gai-stat-card {
        padding: 18px 15px;
    }

    .gai-stat-number {
        font-size: 22px;
    }

    .gai-stat-label {
        font-size: 12px;
        margin-top: 8px;
    }

    .gai-text-block {
        font-size: 14px;
        line-height: 22px;
        margin: 20px auto 25px;
        padding: 0 10px;
    }

    .gai-mv-card {
        padding: 14px;
    }

    .gai-mv-placeholder {
        height: 90px;
    }

    .gai-mv-title {
        font-size: 15px;
    }

    .gai-mv-text {
        font-size: 12px;
        line-height: 18px;
        padding: 0 15px;
    }

    .side {
        padding: 0 15px;
    }
}

















/* Leadership Section */
.glead-wrap {
   
    margin: 0 auto;
    padding: 50px 30px 60px;
    text-align: center;
}

/* Top tag + heading */
.glead-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    background: rgba(241, 240, 246, 1);
    color: rgba(0, 158, 227, 1);
    margin: 15px 0px 15px;
    border: 0.5px solid rgba(179, 228, 248, 1);
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
}

.glead-title {
    font-size: 28px;
    font-weight: 500;
    color: rgba(0, 46, 109, 1);
    line-height: 1.4;
    margin-bottom: 15px;
}

.glead-text {
    font-size: 14px;
    color: #4e5a66;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto 25px;
}

    .glead-text p {
        margin-bottom: 8px;
        color: rgba(82, 82, 82, 1);
        font-size: 14px;
        line-height: 22px;
        font-weight: 300;
    }

/* Tabs */
.glead-tabs {
    display: inline-flex;
    border-radius: 5px;
    background: rgba(241, 240, 246, 1);
    padding: 4px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.glead-tab {
    border: none;
    background: transparent;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    color: rgba(0, 46, 109, 1);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .glead-tab.glead-active {
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 158, 227, 0.3);
        color: #009EE3;
    }

/* Panels */
.glead-panel {
    display: none;
}

    .glead-panel.glead-active {
        display: block;
    }

/* Person cards */
.glead-card {
    background: #0c5177;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.glead-card:hover {
    transform: translateY(-5px);
}

.glead-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.glead-info {
    padding: 12px 16px 14px;
}

.glead-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.glead-role {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

.glead-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.glead-photo {
    width: 100%;
    height: auto;
    display: block;
}

/* OVERLAY LAYER */
.glead-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    z-index: 2;
}

/* TEXT BLOCK ON IMAGE */
.glead-info {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 10px;
    z-index: 3;
}

.glead-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 2px;
}

.glead-role {
    font-size: 10px;
    color: #e0e6f1 !important;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Leadership Section Responsive */
@media (max-width: 991.98px) {
    .glead-wrap {
        padding: 40px 15px 50px;
    }

    .glead-title {
        font-size: 24px;
    }

    .glead-text p {
        font-size: 13px;
        line-height: 20px;
    }

    .glead-tab {
        padding: 8px 18px;
        font-size: 11px;
    }
}

@media (max-width: 767.98px) {
    .glead-wrap {
        padding: 30px 12px 40px;
    }

    .glead-tag {
        margin: 10px 0;
    }

    .glead-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .glead-text {
        margin: 0 auto 20px;
    }

    .glead-text p {
        font-size: 12px;
        line-height: 18px;
    }

    .glead-tabs {
        margin-bottom: 20px;
    }

    .glead-tab {
        padding: 8px 14px;
        font-size: 10px;
    }

    .glead-name {
        font-size: 13px;
    }

    .glead-role {
        font-size: 9px;
    }

    .glead-info {
        bottom: 12px;
    }
}

















.gcon-wrap {
    margin: 0 auto;
    /* padding: 40px 16px 60px; */
    background: #ffffff;
}



.gcon-form {
    padding: 10px 70px 10px;
}
/* TOP STRIP */
.gcon-top {
    background: #f6f7fb;
    padding: 50px 70px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.gcon-top-left {
    flex: 1 1 300px;
    font-size: 26px;
    font-weight: 400;
    line-height: 40px;
    color: rgba(32, 56, 110, 1);
}

    .gcon-top-left span {
        color: rgba(0, 158, 227, 1);
        font-weight: 400;
    }

.gcon-top-right {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    flex: 1 1 auto;
}

.gcon-info-card {
    background: #ffffff;
    border-radius: 4px;
    padding: 0px 18px;
    min-width: 280px;
    flex: 1 1 280px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .05);
    height: 100px;
}

/* Contact Top Responsive */
@media (max-width: 991.98px) {
    .gcon-top {
        padding: 30px 25px;
        gap: 20px;
    }

    .gcon-top-left {
        flex: 1 1 100%;
        font-size: 22px;
        line-height: 32px;
    }

    .gcon-top-right {
        flex: 1 1 100%;
        gap: 15px;
    }

    .gcon-info-card {
        min-width: 200px;
        height: 90px;
        padding: 0 15px;
    }

    .gcon-info-text strong {
        font-size: 14px;
    }

    .gcon-info-text a {
        font-size: 14px;
    }
}

@media (max-width: 767.98px) {
    .gcon-top {
        padding: 25px 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .gcon-top-left {
        font-size: 20px;
        line-height: 28px;
        text-align: center;
    }

    .gcon-top-right {
        flex-direction: column;
        gap: 12px;
    }

    .gcon-info-card {
        min-width: 100%;
        height: auto;
        padding: 15px;
    }

    .gcon-info-icon {
        width: 40px;
        height: 40px;
    }

    .gcon-info-text strong {
        font-size: 13px;
    }

    .gcon-info-text a {
        font-size: 13px;
    }
}

.gcon-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #009ee3;
    font-size: 16px;
    flex-shrink: 0;
}

.gcon-info-text {
    font-size: 12px;
    color: #606c7a;
}

    .gcon-info-text strong {
        display: block;
        font-size: 16px;
        text-transform: revert;
        letter-spacing: .04em;
        color: rgba(48, 48, 48, 1);
        margin-bottom: 2px;
        font-weight: 300;
    }

    .gcon-info-text a {
        color: rgba(0, 46, 109, 1);
        font-weight: 400;
        font-size: 16px;
    }

/* FORM AREA */
.gq-wrap {
    margin: 40px auto;
    padding: 0 60px 60px;
    background: #ffffff;
}

.gq-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 18px;
    color: rgba(32, 56, 110, 1);
}

    .gq-title span {
         color: rgba(0, 158, 227, 1);
       
    }

.gq-field {
    border: 1px solid #dde3ec;
    border-radius: 2px;
    font-size: 11px;
    text-transform: uppercase;
    color: #9aa4b0;
    padding: 8px 10px;
    width: 100%;
    background: #ffffff;
    outline: none;
}

.gq-select {
    border: 1px solid #dde3ec;
    border-radius: 2px;
    font-size: 11px;
    text-transform: uppercase;
    color: #9aa4b0;
    padding: 8px 10px;
    width: 100%;
    background: #f7f8fb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2390a0b3'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.gq-textarea {
    border: 1px solid #dde3ec;
    border-radius: 2px;
    font-size: 11px;
    text-transform: uppercase;
    color: #9aa4b0;
    padding: 8px 10px;
    width: 100%;
    min-height: 130px;
    resize: vertical;
    outline: none;
}

    .gq-field:focus,
    .gq-select:focus,
    .gq-textarea:focus {
        border-color: #009ee3;
        box-shadow: 0 0 0 1px rgba(0,158,227,.18);
    }

/* New Enquiry Form Styles */
.enquiry-form-wrap {
    padding: 40px 60px 60px;
    background: #fff;
}

.enquiry-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 30px;
    color: #002E6D;
}

.enquiry-title span {
    color: #009EE3;
}

.enquiry-field,
.enquiry-select,
.enquiry-textarea {
    width: 100%;
    border: 1px solid #dde3ec;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    padding: 14px 16px;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.5px;
}

.enquiry-select {
    background: #f7f8fb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%23555'/%3E%3C/svg%3E") no-repeat right 16px center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.enquiry-textarea {
    min-height: 120px;
    resize: vertical;
}

.enquiry-field:focus,
.enquiry-select:focus,
.enquiry-textarea:focus {
    border-color: #009EE3;
    box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.1);
}

.enquiry-field::placeholder,
.enquiry-textarea::placeholder {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enquiry-submit-btn {
    background: #009EE3;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 14px 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.enquiry-submit-btn:hover {
    background: #0088cc;
}

/* Enquiry Form Responsive */
@media (max-width: 991.98px) {
    .enquiry-form-wrap {
        padding: 30px 20px 40px;
    }

    .enquiry-title {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .enquiry-form-wrap {
        padding: 25px 15px 30px;
    }

    .enquiry-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .enquiry-field,
    .enquiry-select,
    .enquiry-textarea {
        padding: 12px 14px;
    }

    .enquiry-submit-btn {
        width: 100%;
    }
}

@media (max-width:768px) {
    .gcon-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .gcon-top-right {
        width: 100%;
    }

    .gcon-info-card {
        flex: 1 1 100%;
    }
}



















.facility-wrapper {
    text-align: center;
    padding: 0px 33px 40px;
}

.facility-text {
    font-size: 20px;
    color: rgba(0, 46, 109, 1);
    margin-bottom: 5px;
    font-weight: 400;
    line-height: 28px;
}

    .facility-text a {
        color: #0089e0;
        text-decoration: none;
    }

.facility-card {
    
    overflow: hidden;
    transition: .3s;
}

.facility-card-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.facility-card-title {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 46, 109, 1);
    margin-top: 10px;
    line-height: 24px;
}

.facility-card-date {
    font-size: 12px;
    color: rgba(156, 156, 156, 1);
    margin-top: 4px;
    font-weight: 500;
    line-height: 16px;
}

/* News & Contact Page Responsive */
@media (max-width: 991.98px) {
    .facility-wrapper {
        padding: 20px 15px;
    }

    .facility-text {
        font-size: 16px;
    }

    .gfac-card {
        margin-bottom: 20px;
    }

    .gfac-title {
        font-size: 20px;
    }

    .gfac-list li {
        font-size: 13px;
    }

    .gcon-wrap {
        padding: 20px 15px;
    }

    .gcon-top {
        flex-direction: column;
        gap: 20px;
    }

    .gcon-top-left {
        font-size: 20px;
    }

    .gcon-top-right {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .facility-wrapper {
        padding: 15px 10px;
    }

    .facility-text {
        font-size: 14px;
        text-align: center;
    }

    .facility-card-title {
        font-size: 15px;
        line-height: 20px;
    }

    .facility-card-img {
        height: 150px;
    }

    .gfac-img {
        height: 200px;
    }

    .gfac-title {
        font-size: 18px;
        margin: 10px 0;
    }

    .gfac-list li {
        font-size: 12px;
        gap: 8px;
    }

    .gfac-badge {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .gcon-top-left {
        font-size: 18px;
        text-align: center;
    }

    .gq-wrap {
        padding: 20px 15px;
    }

    .gq-title {
        font-size: 20px;
    }

    .raks {
        padding: 15px !important;
    }

    .gbu-facility-section {
        padding: 15px;
    }

    .gbu-facility-top {
        font-size: 14px;
    }

    .gbu-facility-bottom {
        font-size: 13px;
    }
}


































/*All Media*/



@media (max-width: 768px){
    .logo img {
    height: 15px;
}
    .search-card {
        height: 395px;
    }

    .tab {
        display: inline-grid;
    }
    .intro-box{
        margin:0px;
    }

    .bu-tabs {
        display: revert-layer;
        padding:3px;
    }
    .bu-btn {
        margin-top: 40px;
    }

    .hx-section {
        padding: 40px 20px !important;
    }

    .hx-section::before {
        height: 800px;
    }

    .hx-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .hx-title {
        font-size: 22px;
    }

    .hx-title br {
        display: none;
    }

    .hx-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .hx-caption {
        font-size: 11px;
    }

    .hx-actions {
        right: 0;
        display: flex;
        justify-content: center;
    }

    .hx-actions img {
        max-width: 150px;
    }

    .hx-images {
        text-align: center;
    }

    .rass {
        max-width: 100%;
        width: auto;
        max-height: 300px;
    }


    .about-panel {
        padding:  0px 20px !important;
    }

    .about-content {
        padding-top: 60px;
    }

    .product-detail-card{
        padding: 20px;
    }

    .pd-main{
        width:100%;
    }

    .product-details-wrap,
    .rools{
        padding: 80px 15px 30px !important;
    }

    .rol {
        padding: 0px 15px !important;
    }

    .btn-add-cart {
        width: auto;
        height: 50px;
        background: #009EE3;
        border: none;
        border-radius: 4px;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    
    }


