@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --primary-bg-color: #20387c; /* global scope */
    --secondary-bg-color: #294289; /* global scope */
    --text-color: green; /* global scope */
    --link-color: green; /* global scope */
    --button-color: #294289; /* global scope */
}
/* header */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    animation: tickerMove 25s linear infinite;
}

@keyframes tickerMove {
    0% {
        transform: translateX(10%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* =========================
   FOOTER
========================= */

.main-footer {
    position: relative;

    padding: 55px 0 20px;

    background: url("assets/img/footer-bg.jpg") center center/cover no-repeat;

    overflow: hidden;
}

/* OVERLAY */

.footer-overlay {
    position: absolute;

    inset: 0;

    background: #073762;
}

/* =========================
   GRID
========================= */

.footer-grid {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr 0.9fr 1.2fr;

    gap: 34px;

    padding-bottom: 35px;

    border-bottom: 1px solid #cfcfcf;
}

/* =========================
   LOGO
========================= */

.footer-logo {
    width: 313px;

    margin-bottom: 18px;
}

/* =========================
   TEXT
========================= */

.footer-about p {
    font-size: 15px;

    line-height: 1.8;

    color: #ffffff;

    margin-bottom: 18px;
}

/* =========================
   HEADINGS
========================= */

.footer-col h3 {
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.footer-social-wrap h4,
.footer-other h4 {
    font-size: 15px;

    color: #111;

    margin: 22px 0 15px;

    font-weight: 700;
}

/* =========================
   LIST
========================= */

.footer-col ul {
    padding: 0;

    margin: 0;

    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;

    position: relative;

    padding-left: 16px;
}

.footer-col ul li::before {
    content: "◉";

    position: absolute;

    left: 0;

    top: 6px;

    font-size: 9px;

    color: #ffffff;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #cfcfcf;
    padding-left: 3px;
}

/* =========================
   CONTACT
========================= */

.footer-contact-item {
    display: flex;

    gap: 14px;

    margin-bottom: 22px;
}

.footer-contact-item i {
    font-size: 21px;
    color: #ffffff;
}

.footer-contact-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 500;
}

.footer-contact-item a,
.footer-contact-item p {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    line-height: 1.7;

    margin: 0;
}

/* =========================
   SOCIAL
========================= */

.footer-social {
    display: flex;

    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;

    border: 1px dashed #ef4444;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #ef4444;

    font-size: 18px;

    transition: 0.3s;
}

.footer-social a:hover {
    background: #ef4444;

    color: #fff;

    transform: translateY(-3px);
}

/* =========================
   BROCHURE
========================= */

.footer-brochure img {
    width: 100%;

    height: 160px;

    object-fit: cover;

    margin-bottom: 16px;
}

/* =========================
   BUTTON
========================= */

.footer-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 150px;

    height: 44px;

    background: #101010;

    color: #fff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: 0.3s;

    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.footer-btn:hover {
    background: #d91d1d;

    color: #fff;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    font-size: 15px;
    color: #333;
}
.footer-bottom p {
    margin-bottom: 0;
    color: white;
}
/* =========================
   MOBILE
========================= */

@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    /* 1st item full width */
    .footer-grid > *:nth-child(1) {
        grid-column: 1 / -1;
    }

    /* 2nd & 3rd item half width */
    .footer-grid > *:nth-child(2),
    .footer-grid > *:nth-child(3) {
        grid-column: span 1;
    }

    /* 4th item full width */
    .footer-grid > *:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-col h3 {
        font-size: 17px;
    }
    .footer-contact-item {
        margin-bottom: 11px;
    }
}

/* ── TOP BAR ── */
.top-bar {
    background-color: #073762;
    padding: 6px;
}

.top-text marquee {
    white-space: nowrap;
    color: white;
    text-align: center;
}

.top-links a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.sep {
    color: #fff;
}

/* ── MAIN HEADER ── */
.main-header {
    background: white;
    padding: 8px 0px;
}

.header-inner {
    gap: 16px;
}

/* Logo */
.logo-box {
    width: 189px;
    /* background: #fff; */
    /* border-radius: 0 0 12px 12px; */
    padding: 28px 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    /* border-top: 4px solid red; */
}

.logo-img {
    width: 100%;
    height: 49px;
}

/* Search — smaller, centered */
.search-wrap {
    max-width: 480px;
}

.search-box {
    display: flex;
    overflow: hidden;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #bbbbbb;
}

.search-box input {
    border: none;
    height: 38px;
    padding-left: 14px;
    font-size: 13px;
    box-shadow: none !important;
    width: 100%;
}

.btn-search {
 width: 52px;
    height: 41px;
    border: none;
    background: #073762;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

/* Language selector */
.language-wrapper {
    position: relative;
}

.main-header {
    transition:
        margin-top 0.3s ease,
        opacity 0.3s ease;
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: box-shadow 0.3s ease;
    border-top: 1px solid #afafaf;
}

.main-nav.stuck {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.lang-toggle-btn {
    background: #f1f1f1;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border: 1px solid #a5a5a5;
    color: #222222;
}

.language-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: fit-content;
    background: #fff;
    border-radius: 10px;
    padding: 7px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    display: none;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    z-index: 10011;
    max-height: 480px;
    overflow-y: auto;
        border: 1px solid #727272;
}

.show-lang {
      display: grid !important;
    grid-template-columns: 1fr;
}

.lang-item {
    text-decoration: none;
    color: #222;
    padding: 7px 9px;
    border-radius: 0;
    transition: 0.3s;
    font-size: 13px;
    cursor: pointer;
    border-bottom: 1px solid #8f8f8f;
}

.lang-item:hover {
    background: #0b57a4;
    color: #fff;
}

/* Franchise button */
.btn-franchise {
    border: none;
    padding: 7px 18px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    margin-right: 12px;
}

.red-btn {
    background: #073762;
}

/* ── NAV ── */
.main-nav {
    background: #e5e5e5;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    color: #282828;
    text-decoration: none;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 600;
}
.menu-item > a i {
    font-size: 11px;
    font-weight: bold;
    color: black;
}
.menu-item > a .nav-icon {
    font-size: 17px;
    color: #282828;
}
/* Simple dropdown */
.dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;

    /* Width according to content */
    width: max-content;
    min-width: max-content;

    /* Prevent children text from breaking */
    white-space: nowrap;

    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

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

.dropdown-box a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 12px 16px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #7c7c7c;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    z-index: 1;
}

.dropdown-box a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #e0e0e0;
    transition: width 0.35s ease;
    z-index: -1;
}

.dropdown-box a:hover::before {
    width: 100%;
}

.dropdown-box a:hover {
    color: #000000;
    padding-left: 22px;
}
/* Mega menu */
.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 900px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s;
    z-index: 999;
}

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

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-col h5 {
    color: #e53935;
    margin-bottom: 14px;
    font-size: 16px;
}

.mega-col a {
    display: block;
    text-decoration: none;
    color: #222;
    padding: 6px 0;
    font-size: 14px;
    transition: 0.3s;
}

.mega-col a:hover {
    color: #0b4ea2;
    padding-left: 8px;
}

/* About dropdown in top bar */
.about-dropdown {
    position: relative;
}

.about-btnn {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.about-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 9999;
}

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

.about-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: 0.3s;
}

.about-menu a:hover {
    background: #f5f5f5;
    color: #0b4ea2;
    padding-left: 22px;
}

@media (max-width: 991px) {
    .header-inner {
        /* flex-direction: column; */
        align-items: stretch !important;
        height: auto;
        padding: 10px 0;
    }

    .search-wrap {
        width: 100%;
        margin: 0 !important;
        max-width: 100%;
    }

    .language-dropdown {
        width: 100%;
        left: 0;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hide Google Translate widget but keep it functional */
#google_translate_element {
    display: none;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.px-4 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

/* ── BANNER ── */

.hero-slider {
    position: relative;
    overflow: hidden;
}

/* SWIPER */

.heroSwiper {
    width: 100%;
    height: auto;
}

/* SLIDE */
.swiper-wrapper {
    height: auto;
}
.hero-item {
    width: 100%;
    height: 100%;
}

.hero-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* =========================
   ARROWS
========================= */

.hero-prev,
.hero-next {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.28);

    backdrop-filter: blur(4px);

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.3s;
}

.hero-prev {
    display: none;
    left: 28px;
}

.hero-next {
    display: none;
    right: 28px;
}

.hero-prev i,
.hero-next i {
    color: #fff;

    font-size: 22px;
}

/* HOVER */

.hero-prev:hover,
.hero-next:hover {
    background: #ef1c24;
}

/* =========================
   PAGINATION
========================= */

.hero-slider .swiper-pagination {
    bottom: 18px !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;

    background: #fff;

    opacity: 0.7;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-bg-color);
    opacity: 1;
}
.hero-slider .swiper-pagination-bullet {
    height: 9px;
    width: 9px;
}
/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {
    /* .heroSwiper {
        height: 220px;
    } */

    .hero-prev,
    .hero-next {
        width: 38px;
        height: 38px;
    }
}
/* =========================
   WHY CHOOSE SECTION
========================= */

.choose-section {
    padding: 55px 0 65px;
    background: #f7f7f7;
}

/* =========================
   HEADING
========================= */
.section-heading {
    text-align: center;
    margin-bottom: 45px;
}
.section-heading h2,
.section-heading h1,
.section-heading h3 {
    color: #3a3a3a;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 14px;
}
.section-heading p {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #222;
}
/* =========================
   GRID
========================= */
.choose-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;
}
/* =========================
   ITEM
========================= */
.choose-item {
    text-align: center;

    padding: 18px 25px;

    border-right: 1px solid #b5b5b5;

    transition: 0.3s;
}
.choose-item:last-child {
    border-right: none;
}

/* HOVER */

.choose-item:hover {
    transform: translateY(-5px);
}

/* =========================
   ICON
========================= */

.choose-icon {
    width: 74px;
    height: 74px;

    margin: auto auto 18px;

    background: #073762;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s;
}
.choose-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    margin-top: 14px;
}
.choose-icon img {
    width: 34px;
}

.choose-item:hover .choose-icon {
    transform: rotate(8deg) scale(1.05);
}

/* =========================
   TEXT
========================= */

.choose-item h4 {
    font-size: 15px;

    color: #222;

    line-height: 1.6;

    margin-bottom: 6px;
}

.choose-item h3 {
    color: #073762;

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 0px;
    margin-right: 9px;
    line-height: 1;
}

.choose-item span {
    color: #073762;

    font-size: 18px;

    font-weight: 700;

    display: block;
}

.choose-item p {
    font-size: 15px;

    color: #222;

    margin: 0;

    line-height: 1.6;
}

/* =========================
   MOBILE
========================= */

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

    .choose-item {
        border-right: none;

        border-bottom: 1px solid #ddd;

        padding: 30px 15px;
    }
}

@media (max-width: 576px) {
    .choose-icon {
        width: 60px;
        height: 60px;
    }
    .choose-section {
        padding: 0;
    }
    .about-right h2 {
        font-weight: 500;
    }
    .about-right h3 {
        font-weight: 500;
    }
    .choose-item h3 {
        font-size: 15px;
    }
    .choose-grid {
        grid-template-columns: 1fr 1fr;
    }

    .choose-heading h2 {
        font-size: 28px;
    }
}

/* ── FLOATING BUTTONS ── */
/* ══════════════════════════════════════
   FLOATING BUTTONS — LEFT SIDE
══════════════════════════════════════ */
.float-btns {
    position: fixed;
    left: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    z-index: 9999;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.float-btn.vid {
    background: #e53935;
}

/* ── WhatsApp Circle Button ── */
.float-btn.wa {
    background: #25d366;
}

/* ── Mail Button (expand on hover) ── */
.float-btn.mail {
    background: #e53935;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    overflow: hidden;
    white-space: nowrap;
    transition:
        width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.35s ease;
    justify-content: flex-start;
    flex-direction: row-reverse;
    padding: 0 14px;
    gap: 10px;
}

.float-btn.mail:hover {
    width: 190px;
}

.float-btn.mail .mail-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #fff;
    opacity: 0;
    transform: translateX(8px);
    transition:
        opacity 0.25s ease 0.1s,
        transform 0.25s ease 0.1s;
    white-space: nowrap;
}

.float-btn.mail:hover .mail-label {
    opacity: 1;
    transform: translateX(0);
}

/* ══════════════════════════════════════
   WHATSAPP POPUP — LEFT SIDE
══════════════════════════════════════ */
.wa-popup {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: auto;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 9999;
    animation: popUp 0.25s ease;
}

.wa-popup.open {
    display: flex;
}

@keyframes popUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Popup Header */
.wa-popup-header {
    background: #25d366;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.wa-popup-header .wa-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-popup-header .wa-icon-wrap i {
    font-size: 22px;
    color: #fff;
}

.wa-popup-header .header-text h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
}

.wa-popup-header .header-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.wa-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.85;
    line-height: 1;
}

.wa-close:hover {
    opacity: 1;
}

/* Popup Body */
.wa-popup-body {
    padding: 14px 16px;
}

.wa-popup-body p {
    font-size: 13px;
    color: #555;
    margin: 0 0 12px;
}

.wa-chat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #25d366;
    border-radius: 8px;
    padding: 10px 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.wa-chat-row:hover {
    background: #f0fdf4;
}

.wa-chat-row .wa-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e8f9ef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-chat-row .wa-av i {
    font-size: 20px;
    color: #25d366;
}

.wa-chat-row .wa-info {
    flex: 1;
}

.wa-chat-row .wa-info strong {
    display: block;
    font-size: 14px;
    color: #222;
    font-weight: 700;
}

.wa-chat-row .wa-info span {
    font-size: 11px;
    color: #888;
}

.wa-chat-row .wa-arrow i {
    font-size: 22px;
    color: #25d366;
}

.scroll-top-btn {
    position: fixed;
    right: 14px;
    bottom: 90px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: 0.2s;
}

.scroll-top-btn:hover {
    background: #b50f57;
}

.scroll-top-btn i {
    color: #fff;
    font-size: 18px;
}

.phone-fab {
    position: fixed;
    right: 14px;
    bottom: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: 0.2s;
}

.phone-fab:hover {
    background: var(--secondary);
}

.phone-fab i {
    color: #fff;
    font-size: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .stat-box {
        border-right: none;
        border-bottom: 1px solid #dde;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .banner-content {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .hero-carousel .carousel-item {
        min-height: 300px;
    }

    .banner-content h1 {
        font-size: 24px;
    }

    .banner-content {
        padding: 30px 20px;
    }

    .range-card img,
    .kids-card img {
        height: 190px;
    }

    .diamond-box {
        width: 95px;
        height: 95px;
    }

    .about-img {
        height: 240px;
        margin-bottom: 24px;
    }
}

@media (min-width: 80px) and (max-width: 125px) {
    html {
        font-size: 7px;
    }
}

/* new style */
.about-section {
    padding: 67px 0px !important;
    overflow: hidden;
}

.about-wrapper {
    display: grid;

    grid-template-columns: 38% 62%;

    align-items: stretch;
}

/* LEFT */

.about-left img {
    width: 100%;
    height: auto;

    object-fit: cover;

    display: block;
}

/* RIGHT */

.about-right {
    padding: 0px 50px;
}

.about-right h2 {
    font-size: 26px;

    line-height: 1.2;

    color: #16213e;

    font-weight: 700;

    margin-bottom: 18px;
}

.about-right h2 span {
    color: var(--secondary-bg-color);
}

.about-line {
    width: 80px;
    height: 3px;

    background: var(--secondary-bg-color);

    margin-bottom: 30px;
}

.about-text {
    font-size: 17px;

    line-height: 2;

    color: #333;

    margin-bottom: 28px;
}

.about-right h4,
.about-right h3 {
    font-size: 24px;

    color: #16213e;

    margin-bottom: 24px;

    font-weight: 700;
}

/* POINTS */

.about-point {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 22px;
}

.about-point i {
    color: var(--secondary-bg-color);
    font-size: 16px;
    margin-top: 4px;
}

.about-point p {
    margin: 0;

    font-size: 16px;

    line-height: 1.9;

    color: #333;
}

/* BUTTON */

.about-btn {
    display: inline-block;

    background: #073762;

    color: #fff;

    text-decoration: none;

    padding: 15px 34px;

    font-size: 13px;

    font-weight: 700;

    margin-top: 12px;

    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

.about-btn:hover {
    background: #4a4a4a;

    transform: translateY(-2px);

    color: #fff;
}

/* MOBILE */

@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-right {
        padding: 35px 20px;
    }

    .about-right h2 {
        font-size: 24px;
        font-weight: 600;
    }

    .about-text,
    .about-point p {
        font-size: 16px;
    }
}

.collection-section {
    padding: 80px 0;
    padding-bottom: 25px;
    background: #f7f7f7;
}

.collection-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

/* CARD */

.collection-card {
    border: none;

    padding: 0;

    position: relative;

    transition: 0.4s ease;

    overflow: hidden;
}
.collection-card h4{
       font-size: 20px;
    background-color: #073762;
    padding: 10px 20px;
    border-radius: 3px;
    color: white;
}
.collection-card h4 a{
    color: white;
    cursor: pointer;
    display: block;
    width: 100%;
}
.collection-inner {
    position: relative;

    overflow: hidden;
}

.collection-inner img {
    width: 100%;
    height: 420px;

    object-fit: cover;

    transition: 0.5s;
}

/* OVERLAY */

.collection-inner::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, 0.15);

    z-index: 1;

    transition: 0.4s;
}

/* CONTENT */

/* COLLECTION SECTION */

.collection-section {
    padding: 60px 0;

    background: #f7f7f7;
}

/* HEADING */

.collection-heading {
    text-align: center;

    margin-bottom: 40px;
}

.collection-heading h2 {
    color: #e53935;

    font-size: 28px;

    margin-bottom: 10px;

    font-weight: 700;
}

.collection-heading p {
    max-width: 850px;

    margin: auto;

    font-size: 14px;

    line-height: 1.8;

    color: #222;
}

/* CARD */

.collection-inner {
    position: relative;

    overflow: hidden;

       height: auto;

         margin-bottom: 3px;
}

.collection-inner img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s;
}

/* OVERLAY */

.collection-inner::before {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, 0.08);

    z-index: 1;
}

/* CONTENT */

.collection-content {
    position: absolute;
    bottom: -4%;
    right: 15px;

    transform: translateY(-50%);

    z-index: 2;
}

.collection-content h3 {
    color: var(--primary-bg-color);

    font-size: 22px;

    margin-bottom: 19px;

    font-weight: 700;
}

.collection-content span {
    display: block;

    font-size: 14px;

    color: #222;

    margin-bottom: 18px;

    font-weight: 600;
}

/* BUTTON */

.collection-content a {
    display: inline-block;
    background: #f7f7f7;
    color: #505050;
    text-decoration: none;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 4px 4px 0 #2d2d44;
    transition: 0.3s;
}
.collection-content a i{
    font-size: 22px;
}
.collection-content a:hover {
    background: var(--primary-bg-color);

    color: #fff;
}

/* HOVER */

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

/* MOBILE */

@media (max-width: 991px) {
    .collection-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
}

.video-call-section {
    background: #f8f5ef
        url("https://www.transparenttextures.com/patterns/cream-paper.png");
    padding: 0;
    margin-top: 24px;
}

/* WRAPPER */

.video-call-wrapper {
    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 40px;
}

/* LEFT */

.video-left {
    text-align: center;
}

.video-left img {
    width: 100%;
    max-width: 700px;

    height: auto;

    object-fit: contain;
}

/* RIGHT */

.video-right {
    padding-left: 20px;
}

.video-subtitle {
    color: var(--primary-bg-color);

    font-size: 20px;

    display: block;

    margin-bottom: 18px;

    font-weight: 500;
}

.video-right h2 {
    font-size: 29px;
    line-height: 1.2;
    color: #16213e;
    margin-bottom: 35px;
    font-weight: 600;
}

/* BUTTON */

.video-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--button-color);

    color: #fff;

    text-decoration: none;

    padding: 16px 34px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

.video-btn:hover {
    background: #262626;

    color: #fff;

    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 991px) {
    .video-call-wrapper {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .video-right {
        padding-left: 0;
    }

    .video-right h2 {
        font-size: 34px;
    }

    .video-subtitle {
        font-size: 15px;
    }

    .video-btn {
        font-size: 15px;

        padding: 14px 24px;
    }
}

.range-section {
    padding: 55px 0;
    background: #07376226;
}

/* HEADING */

.range-heading {
    text-align: center;

    margin-bottom: 35px;
}

.range-heading h2 {
    color: #e53935;

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 10px;
}

.range-heading p {
    max-width: 850px;

    margin: auto;

    font-size: 15px;

    line-height: 1.8;

    color: #222;
}

/* CARD */

.saree-card {
    background: #fff;

    transition: 0.3s;
}

.saree-img {
    overflow: hidden;
}

.saree-img img {
    width: 100%;
   aspect-ratio: 1;
    height: auto;

    object-fit: cover;

    transition: 0.4s;
}

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

/* CONTENT */

.saree-content {
    text-align: center;

    padding: 15px 10px 20px;
}

.saree-content h4 {
    color: #303030;

    font-size: 17px;

    font-weight: 600;

    margin-bottom: 5px;
    min-height: 30px;
}
.saree-content h4 a{
        color: #303030;
        text-decoration: none;
}
.saree-content span {
    display: block;

    color: #222;

    font-size: 14px;

    margin-bottom: 15px;
}

/* BUTTONS */

.saree-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-quote {
    font-family: 13px;
}

.btn-call,
.btn-quote {
    flex: 1;
    text-decoration: none;
    padding: 9px 14px;
    font-size: 16px !important;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
    border: 1px solid #073762;
    text-align: center;
    border-radius: 7px !important;
}
.btn-call i,
.btn-quote i {
    font-size: 17px;
    margin-right: 6px;
}
.btn-call {
    display: flex;
    justify-content: center;
    background: #111111;
    color: white;
}

.btn-quote {
    background:#073762;
}

.btn-call:hover,
.btn-quote:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 991px) {
    .saree-img img {
        height: auto;
    }
}

.quality-section {
    position: relative;

    padding: 60px 0 90px;

    background: url("assets/img/quality-bg.jpg") center center/cover no-repeat;

    overflow: hidden;
}

/* OVERLAY */

.quality-overlay {
    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, 0.82);
}

.quality-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 40px;

    align-items: center;

    justify-content: center;
}

/* ITEM */

.quality-item {
    display: flex;

    justify-content: center;
}

/* DIAMOND */

.diamond-box {
    width: 135px;
    height: 135px;

    background: #073762;

    transform: rotate(45deg);

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    position: relative;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

/* INNER BORDER */

.diamond-box::before {
    content: "";

    position: absolute;

    inset: 8px;

    border: 1px dashed rgba(255, 255, 255, 0.8);
}

/* CONTENT */

.diamond-box img {
    width: 42px;

    margin-bottom: 12px;

    transform: rotate(-45deg);
}

.diamond-box h4 {
    color: #fff;

    font-size: 14px;

    line-height: 1.3;

    text-align: center;

    margin: 0;

    font-weight: 700;

    transform: rotate(-45deg);
}

/* HOVER */

.diamond-box:hover {
    transform: rotate(45deg) translateY(-8px);
}

/* MOBILE */

@media (max-width: 991px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 59px;
    }
}

@media (max-width: 576px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
}

.latest-section {
    padding: 60px 0;

    background: #f7f7f7;
}

/* TOP */

.latest-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;

    margin-bottom: 35px;
}

/* HEADING */

.latest-heading {
    max-width: 850px;
}

.latest-heading h2 {
    color: #073762;

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 14px;
}

.latest-heading p {
    font-size: 15px;

    line-height: 1.8;

    color: #222;
}

/* VIEW BTN */

.view-all-btn {
    background: #fff;
    border: 1px solid #073762;
    color: #073762;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #ef4444;

    color: #fff;
}

/* GRID */

.latest-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;
}

/* CARD */

.latest-card {
    background: #fff;

    border: 1px solid #ddd;

    overflow: hidden;

    transition: 0.3s;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.latest-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.latest-img {
    overflow: hidden;

    position: relative;
}

.latest-img img {
    width: 100%;
    aspect-ratio: 1;
    height: auto;

    object-fit: cover;

    transition: 0.5s;
}

/* IMAGE EFFECT */

.latest-card:hover img {
    transform: scale(1.08);
}

/* CONTENT */

.latest-content {
    padding: 20px 18px 22px;

    text-align: center;
}

.latest-content h4 {
    font-size: 16px;

    line-height: 1.6;

    color: #1f2937;

    font-weight: 700;

    margin-bottom: 20px;
}

/* BUTTONS */

.latest-btns {
    display: flex;

    justify-content: center;

    gap: 10px;
}

.catalog-btn,
.enquire-btn {
    text-decoration: none;

    padding: 10px 16px;

    font-size: 14px;

    font-weight: 600;

    color: #fff;

    transition: 0.3s;
}

.catalog-btn {
    background: #073762;
}

.enquire-btn {
    background: linear-gradient(to bottom, #444, #111);
}

.catalog-btn:hover,
.enquire-btn:hover {
    color: #fff;

    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 991px) {
    .latest-top {
        flex-direction: column;
    }

    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest-img img {
        height: auto;
    }
}

@media (max-width: 576px) {
    .latest-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SECTION
========================= */

.kids-section {
    padding: 45px 0;

    background: #ebebeb;
}

/* =========================
   LAYOUT
========================= */

.kids-wrapper {
}

/* when left banner is not present, make kids wrapper full width */
.kids-wrapper.no-left {
    display: block;
}
/* ensure right section uses full width when no left banner */
.kids-wrapper.no-left .kids-right {
    width: 100%;
}

/* =========================
   LEFT BANNER
========================= */

.kids-banner {
    position: relative;

    height: 379px;

    overflow: hidden;
}

/* IMAGE */

.kids-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.kids-banner:hover img {
    transform: scale(1.08);
}

/* DARK OVERLAY */

.kids-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 20px;

    overflow: hidden;
}

/* RED TITLE */

.kids-overlay span {
    color: #ff1f1f;

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 20px;

    letter-spacing: 1px;

    animation: fadeDown 1s ease;
}

/* BIG TEXT */

.kids-overlay h2 {
    color: #fff;

    font-size: 30px;

    line-height: 1.15;

    font-weight: 400;

    margin-bottom: 30px;

    text-transform: uppercase;

    animation: zoomFade 1.2s ease;
}

/* BUTTON */

.kids-overlay a {
    width: 190px;
    height: 48px;

    border: 1px solid #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #fff;

    font-size: 15px;

    font-weight: 600;

    position: relative;

    overflow: hidden;

    transition: 0.4s;

    animation: fadeUp 1.4s ease;
}

/* BUTTON EFFECT */

.kids-overlay a::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: #d04340;

    transition: 0.4s;

    z-index: 0;
}

.kids-overlay a:hover::before {
    left: 0;
}

.kids-overlay a:hover {
    color: white;
}

.kids-overlay a span {
    position: relative;
    z-index: 2;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RIGHT TOP
========================= */

.kids-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    border-bottom: 1px solid #ddd;

    padding-bottom: 14px;

    margin-bottom: 22px;
}

.kids-top h2 {
    color: #073762;

    font-size: 28px;

    margin-bottom: 10px;

    font-weight: 700;
}

.kids-top p {
    max-width: 780px;

    font-size: 14px;

    line-height: 1.8;

    color: #222;
}

/* =========================
   NAV
========================= */

.kids-nav {
    display: flex;

    gap: 6px;
}

.kids-prev,
.kids-next {
    width: 28px;
    height: 28px;

    border: 1px solid #ccc;

    background: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.3s;
}

.kids-prev:hover,
.kids-next:hover {
    background: #ef4444;

    color: #fff;

    border-color: #ef4444;
}

/* =========================
   SWIPER
========================= */

.kidsSwiper {
    overflow: hidden;
}

/* =========================
   CARD
========================= */

.kids-card {
    background: #fff;

    border: 1px solid #ddd;

    overflow: hidden;

    transition: 0.3s;
}

.kids-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.kids-img {
    overflow: hidden;
}

.kids-img img {
    width: 100%;

    height: auto;
    aspect-ratio: 1;
    object-fit: cover;

    transition: 0.5s;
}

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

/* CONTENT */

.kids-content {
    text-align: center;

    padding: 12px 8px 14px;
}

.kids-content h4 {
    font-size: 15px;

    color: #222;

    font-weight: 700;

    margin-bottom: 4px;
}

.kids-content span {
    font-size: 13px;

    color: #444;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .kids-wrapper {
        grid-template-columns: 1fr;
    }

    .kids-banner {
        height: auto;
    }
}

/* =========================
   YOUTUBE SECTION
========================= */

.youtube-section {
    padding: 55px 0 50px;

    background: #f7f7f7;
}

/* =========================
   HEADING
========================= */

.youtube-heading {
    text-align: center;

    margin-bottom: 35px;
}

.youtube-heading h2 {
    color: #e31e24;

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 14px;
}

.youtube-heading p {
    max-width: 900px;

    margin: auto;

    font-size: 15px;

    line-height: 1.8;

    color: #333;
}

/* =========================
   GRID
========================= */

.youtube-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-bottom: 38px;
}

/* =========================
   CARD
========================= */

.youtube-card {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid #ddd;

    background: #fff;

    transition: 0.4s;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.youtube-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* IMAGE */

.youtube-card img {
    width: 100%;

    height: 235px;

    object-fit: cover;

    transition: 0.5s;
}

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

/* OVERLAY */

.youtube-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;
}

/* PLAY BUTTON */

.play-btn {
    width: 68px;
    height: 68px;

    background: #ef1c24;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #fff;

    font-size: 34px;

    position: relative;

    transition: 0.3s;

    animation: pulse 2s infinite;
}

.play-btn:hover {
    background: #d90d15;

    color: #fff;

    transform: scale(1.08);
}

/* PULSE EFFECT */

.play-btn::before {
    content: "";

    position: absolute;

    inset: -10px;

    border-radius: 50%;

    border: 2px solid rgba(239, 28, 36, 0.4);

    animation: ring 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

@keyframes ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* =========================
   BUTTON
========================= */

.youtube-btn-wrap {
    text-align: center;
}

.youtube-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 185px;
    height: 42px;

    border: 1px solid #ef4444;

    background: #fff;

    color: #ef4444;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;

    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
}

.youtube-btn:hover {
    background: #ef4444;

    color: #fff;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .youtube-card img {
        height: 220px;
    }

    .youtube-heading h2 {
        font-size: 26px;
    }
}

/* =========================
   PRODUCTION SECTION
========================= */

.production-section {
    position: relative;

    padding: 45px 0 65px;

    background: url("assets/img/production-bg.jpg") center center/cover
        no-repeat;

    overflow: hidden;
}

/* OVERLAY */

.production-overlay {
    position: absolute;

    inset: 0;

    background: rgba(255, 255, 255, 0.86);
}

/* =========================
   HEADING
========================= */

.production-heading {
    text-align: center;

    margin-bottom: 32px;
}

.production-heading h2 {
    color: var(--primary-bg-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.production-heading p {
   display: none;
}

/* =========================
   GRID
========================= */

.production-grid {
    display: grid;

    grid-template-columns: repeat(7, 1fr);

    border: 1px solid #d9d9d9;

    background: rgba(255, 255, 255, 0.55);
}

/* ITEM */

.production-item {
    min-height: 160px;

    border-right: 1px solid #d9d9d9;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 15px;

    transition: 0.3s;
}

.production-item:last-child {
    border-right: none;
}

.production-item:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* =========================
   ICON
========================= */

.production-icon {
    width: 92px;
    height: 92px;

    background: var(--primary-bg-color);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    position: relative;

    transition: 0.3s;
}

/* DOTTED BORDER */

.production-icon::before {
    content: "";

    position: absolute;

    inset: 7px;

    border: 2px dashed rgba(255, 255, 255, 0.8);

    border-radius: 50%;
}

/* IMAGE */

.production-icon img {
    width: 42px;

    position: relative;

    z-index: 2;
}

/* HOVER */

.production-item:hover .production-icon {
    transform: translateY(-5px);
}

/* =========================
   TEXT
========================= */

.production-item h4 {
    font-size: 16px;

    color: #333;

    font-weight: 700;

    margin: 0;
}

/* =========================
   MOBILE
========================= */

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

    .production-item {
        border-bottom: 1px solid #ddd;
    }
}

@media (max-width: 576px) {
    .production-grid {
        grid-template-columns: 1fr;
    }
}

.detail-banner {
    background: linear-gradient(135deg, #1a2540 0%, #243057 60%, #2e1a06 100%);

    padding: 70px 0 60px;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.detail-banner::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(201, 146, 10, 0.18),
            transparent 45%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(178, 34, 34, 0.12),
            transparent 45%
        );
}

.badge-label {
    display: inline-block;

    background: var(--red);

    color: #fff;

    padding: 6px 18px;

    border-radius: 3px;

    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.detail-banner h1 {
    font-size: 46px;

    color: #fff;

    font-weight: 800;

    line-height: 1.4;

    max-width: 900px;

    margin: auto;
}

/* =========================
           BREADCRUMB
        ========================= */

.breadcrumb-area {
    background: #fff;

    padding: 14px 0;

    border-bottom: 1px solid #eee;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb a {
    color: var(--gold);

    text-decoration: none;
}

/* =========================
           MAIN SECTION
        ========================= */

.blog-detail-section {
    padding: 23px 0;
}

/* =========================
           LEFT CONTENT
        ========================= */

.blog-content-wrap {
    background: #fff;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.blog-main-img {
    width: 100%;

    height: 430px;

    object-fit: cover;
}

.blog-content-body {
    padding: 16px;
}

.blog-content-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 18px;
}

.blog-divider {
    width: 60px;

    height: 4px;

    border-radius: 10px;

    background: linear-gradient(90deg, var(--gold), var(--red));

    margin-bottom: 24px;
}

.blog-text {
    font-size: 16px;

    color: var(--text);

    line-height: 2;
}

.blog-text p {
    margin-bottom: 18px;
}

/* BUTTON */

.blog-back-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 28px;

    background: #1e54a4;

    color: #fff;

    padding: 13px 28px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.blog-back-btn:hover {
    background: #dc3545;

    color: #fff;

    transform: translateX(-4px);
}

/* =========================
           SIDEBAR
        ========================= */

.sidebar-card {
    background: #fff;

    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);

    margin-bottom: 28px;
}

.sidebar-card-header {
    background: var(--primary-bg-color);

    padding: 18px 22px;

    display: flex;

    align-items: center;

    gap: 12px;
}

.sidebar-card-header .bar {
    width: 4px;

    height: 24px;

    background: #ffffff;

    border-radius: 20px;
}

.sidebar-card-header h4 {
    color: #fff;

    font-size: 18px;

    font-weight: 700;

    margin: 0;
}

.sidebar-card-body {
    padding: 22px;
}

/* =========================
           RELATED BLOG
        ========================= */

.related-item {
    display: flex;

    gap: 14px;

    text-decoration: none;

    padding: 14px 0;

    border-bottom: 1px solid #eee;

    transition: 0.3s;
}

.related-item:last-child {
    border: none;
}

.related-item:hover {
    transform: translateX(5px);
}

.related-item img {
    width: 85px;

    height: 70px;

    border-radius: 8px;

    object-fit: cover;
}

.rel-info h6 {
    font-size: 16px;
    color: #343434;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 2px;
}

.rel-info span {
    color: #20387c;

    font-size: 14px;

    font-weight: 600;
}

/* =========================
           FORM
        ========================= */

.form-label-custom {
    font-size: 13px;

    font-weight: 700;

    color: var(--navy);

    margin-bottom: 6px;

    display: block;

    text-transform: uppercase;
}

.form-control-custom {
    width: 100%;

    padding: 12px 15px;

    border: 1.5px solid #ddd;

    border-radius: 8px;

    background: #fafafa;

    font-size: 14px;

    margin-bottom: 16px;

    outline: none;

    transition: 0.3s;
}

.form-control-custom:focus {
    border-color: var(--gold);

    background: #fff;

    box-shadow: 0 0 0 3px rgba(201, 146, 10, 0.12);
}

textarea.form-control-custom {
    resize: none;

    min-height: 110px;
}

/* BUTTON */

.btn-enquiry {
    width: 100%;

    height: 50px;

    border: none;

    background: var(--primary-bg-color);

    color: #fff;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s;
}

.btn-enquiry:hover {
    background: #dc3545;
    opacity: 0.9;

    transform: translateY(-2px);
}

/* =========================
           ALERT
        ========================= */

.alert-success-custom {
    background: #eaffea;

    border: 1px solid #77c977;

    padding: 12px 15px;

    border-radius: 8px;

    color: #236423;

    margin-bottom: 16px;
}

.alert-error-custom {
    background: #fff0f0;

    border: 1px solid #e18080;

    padding: 12px 15px;

    border-radius: 8px;

    color: #992525;

    margin-bottom: 16px;
}

/* =========================
           MOBILE
        ========================= */

@media (max-width: 991px) {
    .blog-main-img {
        height: 280px;
    }

    .blog-content-body {
        padding: 24px;
    }

    .blog-content-body h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .detail-banner h1 {
        font-size: 30px;
    }

    .blog-main-img {
        height: 220px;
    }

    .blog-content-body h2 {
        font-size: 24px;
    }
}

/* =========================
   BLOG SECTION
========================= */

.blog-section {
    padding: 55px 0 60px;

    background: #f7f7f7;
}

/* =========================
   HEADING
========================= */

.blog-heading {
    text-align: center;

    margin-bottom: 38px;
}

.blog-heading h2 {
    color: #e31e24;

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 14px;
}

.blog-heading p {
    max-width: 920px;

    margin: auto;

    font-size: 15px;

    line-height: 1.8;

    color: #333;
}

/* =========================
   GRID
========================= */

.blog-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

/* =========================
   CARD
========================= */

.blog-card {
    background: #fff;

    border: 1px solid #ddd;

    overflow: hidden;

    transition: 0.3s;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* =========================
   IMAGE
========================= */

.blog-img {
    overflow: hidden;

    padding: 18px 18px 0;
}

.blog-img img {
    width: 100%;

    height: 200px;

    object-fit: cover;

    border-radius: 4px;

    transition: 0.5s;
}

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

/* =========================
   CONTENT
========================= */

.blog-content {
    padding: 20px 18px 24px;
}

.blog-content h3 {
    font-size: 18px;

    line-height: 1.5;

    color: #1f2937;

    font-weight: 700;

    margin-bottom: 14px;

    min-height: 82px;
}

.blog-content p {
    font-size: 14px;

    line-height: 1.8;

    color: #444;

    margin-bottom: 18px;

    min-height: 78px;
}

/* =========================
   BUTTON
========================= */

.blog-content a {
    color: #ef4444;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    position: relative;
}

.blog-content a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0;

    height: 2px;

    background: #ef4444;

    transition: 0.3s;
}

.blog-content a:hover::after {
    width: 100%;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-img img {
        height: 220px;
    }
}

/* =========================
   CONTENT SECTION
========================= */

.content-section {
    padding: 35px 0 50px;

    background: #ecf6ff;
}

/* =========================
   BLOCK
========================= */

.content-block {
    margin-bottom: 34px;
}
.content-block img {
    float: right;
    width: 32%;
    height: auto;
    margin-left: 25px;
}
/* =========================
   HEADING
========================= */

.content-block h2 {
    color: #073762;

    font-size: 27px;

    font-weight: 700;

    margin-bottom: 12px;

    line-height: 1.4;
}

.content-block h3 {
    color: #222;

    font-size: 18px;

    font-weight: 700;

    margin: 18px 0 12px;
}

/* =========================
   PARAGRAPH
========================= */

.content-block p {
    font-size: 17px;

    line-height: 1.8;

    color: #333;

    margin-bottom: 12px;
}

/* =========================
   LIST
========================= */

.content-block ul {
    padding-left: 18px;

    margin: 0;
}

.content-block ul li {
    font-size: 17px;

    line-height: 1.8;

    color: #333;

    margin-bottom: 8px;
}

/* STRONG */

.content-block strong {
    color: #222;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .content-block h2 {
        font-size: 20px;
    }

    .content-block h3 {
        font-size: 17px;
    }

    .content-block p,
    .content-block ul li {
        font-size: 15px;
    }
}

a {
    text-decoration: none;
}

/* ══ SCROLL REVEAL ══ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.from-left {
    transform: translateX(-60px);
    opacity: 0;
}

.reveal.from-right {
    transform: translateX(60px);
    opacity: 0;
}

.reveal.from-scale {
    transform: scale(0.85);
    opacity: 0;
}

.reveal.visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

/* ══ PAGE BANNER ══ */
.page-banner {
    background: #d1d1d1;
    padding: 55px 0 44px;
    position: relative;
    overflow: hidden;
}

.page-banner .circle1 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -80px;
    right: -60px;
    animation: floatCircle 6s ease-in-out infinite;
}

.page-banner .circle2 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -40px;
    left: 10%;
    animation: floatCircle 8s ease-in-out infinite reverse;
}

.page-banner::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 44px;
    background: #f5f5f5;
    clip-path: ellipse(55% 100% at 50% 100%);
}

@keyframes floatCircle {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    animation: bannerIn 0.7s ease both;
}

.page-banner nav {
    animation: bannerIn 0.9s ease both;
}

@keyframes bannerIn {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: var(--fw);
}

.page-banner .breadcrumb-item a:hover {
    color: #fff;
}

.page-banner .breadcrumb-item.active {
    color: #fff;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ══ COMMON ══ */
.sec-pad {
    padding: 84px 0;
}

.sec-title-lg {
    font-size: 21px;
    font-weight: 600;
    color: #3e3e3e !important;
    line-height: 1.2;
    border-bottom: 1px solid #9d9d9d;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.sec-line-left {
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 22px;
    transition: width 1.1s ease;
}

.sec-line-left.grow {
    width: 50px;
}

.sec-line-center {
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin: 10px auto 32px;
    transition: width 1.1s ease;
}

.sec-line-center.grow {
    width: 60px;
}

/* ══ ABOUT SECTION ══ */
.about-section {
    background: #e9e9e9;
}

.about-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.95;
    margin-bottom: 18px;
}

.profile-link {
    color: var(--accent);
    font-size: 14px;
    font-weight: var(--fw);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 3px;
}

.profile-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(1);
    transition:
        transform 0.35s ease,
        background 0.3s;
    transform-origin: left;
}

.profile-link:hover {
    color: var(--secondary);
}

.profile-link:hover::after {
    background: var(--secondary);
    transform: scaleX(0.4);
}

.profile-link i {
    transition: transform 0.35s;
}

.profile-link:hover i {
    transform: translateY(3px);
}

.logo-watermark {
    position: absolute;
    bottom: 20px;
    left: -10px;
    font-size: 110px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
    animation: wmPulse 4s ease-in-out infinite;
}

@keyframes wmPulse {
    0%,
    100% {
        opacity: 0.07;
    }

    50% {
        opacity: 0.13;
    }
}

/* Image collage */
.img-collage {
    position: relative;
    height: 390px;
}

.img-collage .img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.5s ease,
        box-shadow 0.5s;
}

.img-collage:hover .img-main {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.img-collage .img-bottom {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 62%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    z-index: 3;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.5s ease 0.1s,
        box-shadow 0.5s;
}

.img-collage:hover .img-bottom {
    transform: translateY(-5px) translateX(-5px);
}

.accent-block {
    position: absolute;
    border-radius: 8px;
    z-index: 1;
    background: var(--accent);
    transition: background 0.4s;
}

.accent-block-1 {
    top: 30px;
    right: 72%;
    width: 55px;
    height: 130px;
    animation: floatBlock 3.5s ease-in-out infinite;
}

.accent-block-2 {
    bottom: 10px;
    right: 5%;
    width: 55px;
    height: 100px;
    animation: floatBlock 4s ease-in-out infinite reverse;
}

@keyframes floatBlock {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.img-collage:hover .accent-block {
    background: var(--primary);
}

/* Mission collage */
.mission-collage {
    position: relative;
    height: 360px;
}

.mission-collage .mc-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 76%;
    height: 290px;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    transition:
        transform 0.5s ease,
        box-shadow 0.5s;
}

.mission-collage:hover .mc-main {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.mission-collage .mc-accent1 {
    position: absolute;
    top: 25px;
    right: 73%;
    width: 50px;
    height: 120px;
    background: var(--accent);
    border-radius: 8px;
    z-index: 1;
    animation: floatBlock 3.8s ease-in-out infinite;
}

.mission-collage .mc-bottom {
    position: absolute;
    bottom: 0;
    left: 2%;
    width: 65%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    transition: transform 0.5s ease 0.1s;
}

.mission-collage:hover .mc-bottom {
    transform: translateX(6px) translateY(-5px);
}

.mission-collage .mc-accent2 {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 50px;
    height: 100px;
    background: var(--primary);
    border-radius: 8px;
    z-index: 2;
    animation: floatBlock 4.2s ease-in-out infinite reverse;
}

/* Vision collage */
.vision-collage {
    position: relative;
    height: 320px;
}

.vision-collage .vc-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 270px;
    object-fit: cover;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    transition:
        transform 0.5s ease,
        box-shadow 0.5s;
}

.vision-collage:hover .vc-main {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.vision-collage .vc-accent {
    position: absolute;
    top: 20px;
    left: 74%;
    width: 50px;
    height: 120px;
    background: var(--accent);
    border-radius: 8px;
    z-index: 1;
    animation: floatBlock 3.5s ease-in-out infinite;
}

.vision-collage .vc-bottom {
    position: absolute;
    bottom: 0;
    right: 2%;
    width: 60%;
    height: 175px;
    object-fit: cover;
    border-radius: 12px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease 0.1s;
}

.vision-collage:hover .vc-bottom {
    transform: translateX(-5px) translateY(-5px);
}

/* Mission / Vision text */
.mv-label {
    font-size: 12px;
    font-weight: var(--fw);
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mv-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.mv-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.mv-title:hover::after {
    width: 100%;
}

.mv-text {
    font-size: 14px;
    color: #555;
    line-height: 1.95;
    margin-bottom: 12px;
}

/* ══ STATS BAND ══ */
.stats-band {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -150px;
    right: -100px;
    animation: floatCircle 7s ease-in-out infinite;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-icon-big {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition:
        background 0.35s,
        transform 0.35s;
}

.stat-item:hover .stat-icon-big {
    background: var(--accent);
    transform: scale(1.15) rotate(8deg);
}

.stat-icon-big i {
    font-size: 24px;
    color: #fff;
}

.stat-num-big {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    font-weight: var(--fw);
    color: rgba(255, 255, 255, 0.8);
}

/* ══ VALUES SECTION ══ */
.values-section {
    background: #fff;
    padding: 84px 0;
}

.value-card {
    background: #f8f9fc;
    border-radius: 14px;
    padding: 34px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card > * {
    position: relative;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 44px rgba(15, 76, 156, 0.25);
}

.value-card:hover .value-title,
.value-card:hover .value-desc {
    color: #fff;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition:
        transform 0.4s,
        background 0.4s;
    box-shadow: 0 6px 18px rgba(15, 76, 156, 0.25);
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.18) rotate(12deg);
}

.value-icon i {
    font-size: 26px;
    color: #fff;
}

.value-title {
    font-size: var(--fs-h);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.value-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    transition: color 0.3s;
}

/* ══ PILLARS ══ */
.pillars-section {
    background: #fff;
    padding: 84px 0;
}

.pillars-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 50px;
}

.pillar-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    height: 100%;
    transition:
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.45s;
    cursor: pointer;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.pillar-img-wrap {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.pillar-card.ceo .pillar-img-wrap {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 40%, #9b59b6 100%);
}

.pillar-card.cfo .pillar-img-wrap {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 40%, #b39ddb 100%);
}

.pillar-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.5s ease;
}

.pillar-card:hover .pillar-img-wrap img {
    transform: scale(1.07) translateY(-6px);
}

/* Shine sweep */
.pillar-img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 70%
    );
    transition: left 0.65s ease;
}

.pillar-card:hover .pillar-img-wrap::after {
    left: 150%;
}

.pillar-body {
    padding: 24px 22px;
    text-align: center;
    border-top: 3px solid #f0f0f0;
    transition: border-color 0.35s;
}

.pillar-card:hover .pillar-body {
    border-color: var(--accent);
}

.pillar-name {
    font-size: var(--fs-h);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.pillar-card:hover .pillar-name {
    color: var(--primary);
}

.pillar-role {
    font-size: 14px;
    font-weight: var(--fw);
    color: var(--accent);
    margin-bottom: 14px;
}

.pillar-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.85;
}

/* ══ TEAM ══ */
.team-section {
    background: #f5f5f5;
    padding: 84px 0;
}

.team-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 40px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    transition:
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.45s,
        border-left-color 0.3s;
    height: 100%;
    border-left: 4px solid transparent;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent);
}

.team-img-wrap {
    flex-shrink: 0;
    width: 200px;
    background: #edf2f7;
    overflow: hidden;
    position: relative;
}

.team-img-wrap img {
    width: 100%;
    min-height: 260px;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.08);
}

.team-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 76, 156, 0.38),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card:hover .team-img-wrap::after {
    opacity: 1;
}

.team-body {
    padding: 28px 24px;
    flex: 1;
}

.team-name {
    font-size: var(--fs-h);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.team-card:hover .team-name {
    color: var(--primary);
}

.team-role {
    font-size: 14px;
    font-weight: var(--fw);
    color: #999;
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
}

.team-role::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.4s;
}

.team-card:hover .team-role::after {
    width: 100%;
}

.team-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.88;
}

/* ══ FLOATING BUTTONS ══ */
.float-btns {
    position: fixed;
    left: 14px;
    bottom: 110px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    position: relative;
}

.float-btn::before {
    content: attr(data-tip);
    position: absolute;
    left: 56px;
    background: #222;
    color: #fff;
    font-size: 12px;
    font-weight: var(--fw);
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.float-btn:hover::before {
    opacity: 1;
}

.float-btn:hover {
    transform: scale(1.15) translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.float-btn i {
    color: #fff;
    font-size: 18px;
}

.float-btn.vid {
    background: var(--primary);
}

.float-btn.wa {
    background: #25d366;
}

.float-btn.mail {
    background: #cc0000;
}

.float-btn.wa::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.scroll-top-btn {
    position: fixed;
    right: 14px;
    bottom: 90px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--accent);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition:
        background 0.3s,
        transform 0.3s;
}

.scroll-top-btn:hover {
    background: #b50f57;
    transform: scale(1.12) translateY(-3px);
}

.scroll-top-btn i {
    color: #fff;
    font-size: 18px;
}

.phone-fab {
    position: fixed;
    right: 14px;
    bottom: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.phone-fab:hover {
    background: var(--secondary);
    transform: scale(1.12) rotate(10deg);
}

.phone-fab i {
    color: #fff;
    font-size: 20px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
    .img-collage,
    .mission-collage,
    .vision-collage {
        height: 280px;
        margin-bottom: 40px;
    }

    .team-card {
        flex-direction: column;
    }

    .team-img-wrap {
        width: 100%;
    }

    .team-img-wrap img {
        min-height: 200px;
        height: 220px;
    }
}

@media (max-width: 767px) {
    .sec-title-lg,
    .pillars-title,
    .team-title,
    .mv-title {
        font-size: 24px;
    }

    .pillar-img-wrap {
        height: 220px;
    }

    .page-banner h1 {
        font-size: 26px;
    }

    .img-collage,
    .mission-collage {
        height: 220px;
    }

    .stat-num-big {
        font-size: 32px;
    }
}

a {
    text-decoration: none;
}

/* ══ SCROLL REVEAL ══ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.from-left {
    transform: translateX(-60px);
    opacity: 0;
}

.reveal.from-right {
    transform: translateX(60px);
    opacity: 0;
}

.reveal.from-scale {
    transform: scale(0.85);
    opacity: 0;
}

.reveal.visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

.page-banner .circle1 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -80px;
    right: -60px;
    animation: floatCircle 6s ease-in-out infinite;
}

.page-banner .circle2 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -40px;
    left: 10%;
    animation: floatCircle 8s ease-in-out infinite reverse;
}

.page-banner::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 44px;
    background: #f5f5f5;
    clip-path: ellipse(55% 100% at 50% 100%);
}

@keyframes floatCircle {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    animation: bannerIn 0.7s ease both;
}

.page-banner nav {
    animation: bannerIn 0.9s ease both;
}

@keyframes bannerIn {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: var(--fw);
}

.page-banner .breadcrumb-item a:hover {
    color: #fff;
}

.page-banner .breadcrumb-item.active {
    color: #fff;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ══ COMMON ══ */
.sec-pad {
    padding: 84px 0;
}
.sec-line {
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 24px;
    transition: width 1.1s ease;
}

.sec-line.grow {
    width: 50px;
}

.sec-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ══ INFO CARDS ══ */
.info-section {
    background: #f5f5f5;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
        border: 1px solid #9d9d9d;
}

.info-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: height 0.4s ease;
    z-index: 0;
}

.info-card:hover::before {
    height: 100%;
}

.info-card > * {
    position: relative;
    z-index: 1;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(15, 76, 156, 0.25);
}

.info-card:hover .info-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
}

.info-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(15, 76, 156, 0.25);
    transition: all 0.4s;
}

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

.info-icon-wrap i {
    font-size: 28px;
    color: #424242;
}

.info-title {
    font-size: var(--fs-h);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.info-val {
    font-size: 19px;
    font-weight: 500;
    color: #565656;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.info-sub {
    font-size: 13px;
    color: #777;
    transition: color 0.3s;
}

/* ══ CONTACT FORM + MAP ══ */
.form-section {
    background: #fff;
}

/* Form card */
.form-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    padding: 44px 40px;
       border: 1px solid #adadad;
}

.form-card h3 {
    font-size: var(--fs-h);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
}

.form-card .sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

/* Inputs */
.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-label-float {
    font-size: 14px;
    font-weight: var(--fw);
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.form-input {
    width: 100%;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--black);
    background: #fafafa;
    outline: none;
    transition:
        border-color 0.3s,
        box-shadow 0.3s,
        background 0.3s;
    font-family: "Poppins", sans-serif;
}

.form-input:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(217, 20, 105, 0.1);
}

.form-input.valid {
    border-color: #28a745;
}

.form-input.invalid {
    border-color: #dc3545;
}

/* Input icon inside */
.input-wrap {
    position: relative;
}

.input-wrap .i-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #bbb;
    transition: color 0.3s;
    pointer-events: none;
}

.input-wrap textarea ~ .i-icon {
    top: 18px;
    transform: none;
}

.form-input:focus ~ .i-icon {
    color: var(--accent);
}

/* Select */
select.form-input {
    cursor: pointer;
        border-right: 1px solid #d9d9d9;
        border-radius:0;
}

/* Submit button */
.btn-submit {
        background: black;
    color: #fff;
    font-size: var(--fs-btn);
    font-weight: var(--fw);
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    width: 100%;
    cursor: pointer;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.btn-submit::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.5s,
        height 0.5s;
}

.btn-submit:hover::after {
    width: 400px;
    height: 400px;
}


.btn-submit:active {
    transform: translateY(0);
}

/* Success message */
.success-msg {
    display: none;
    background: #d4edda;
    border: 1.5px solid #c3e6cb;
    color: #155724;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: var(--fw);
    margin-top: 16px;
    animation: fadeInUp 0.5s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map card */
.map-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 520px;
    border-top: 4px solid var(--primary);
    position: relative;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: none;
    display: block;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: slideUpCard 0.6s ease 0.3s both;
}

@keyframes slideUpCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-overlay-info .map-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-overlay-info .map-icon i {
    color: #fff;
    font-size: 18px;
}

.map-overlay-info .map-addr {
    font-size: 13px;
    font-weight: var(--fw);
    color: var(--secondary);
    line-height: 1.5;
}

.map-overlay-info .map-city {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* ══ BRANCHES SECTION ══ */
.branches-section {
    background: #f5f5f5;
    padding: 84px 0;
}

.branch-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 4px solid transparent;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
    border-left-color: var(--accent);
}

.branch-card .branch-head {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.branch-head-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s;
}

.branch-card:hover .branch-head-icon {
    transform: rotate(15deg) scale(1.1);
}

.branch-head-icon i {
    color: #fff;
    font-size: 20px;
}

.branch-head-title {
    font-size: var(--fs-h);
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.branch-body {
    padding: 22px;
}

.branch-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    line-height: 1.6;
}

.branch-row i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-row a {
    color: var(--primary);
    font-weight: var(--fw);
    transition: color 0.2s;
}

.branch-row a:hover {
    color: var(--accent);
}

/* ══ FAQ SECTION ══ */
.faq-section {
    background: #fff;
    padding: 84px 0;
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 12px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.accordion-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.accordion-button {
    font-size: 15px;
    font-weight: var(--fw);
    color: var(--secondary);
    background: #fff;
    border-radius: 12px !important;
    padding: 18px 22px;
    transition:
        color 0.3s,
        background 0.3s;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
    transition: filter 0.3s;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(10);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    padding: 16px 22px 20px;
    background: #fafafa;
}

/* ══ SOCIAL SECTION ══ */
.social-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    top: -100px;
    right: -80px;
    animation: floatCircle 7s ease-in-out infinite;
}

.social-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.social-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 36px;
}

.social-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin: 0 8px;
    transition: all 0.35s;
    position: relative;
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition:
        transform 0.35s,
        border-color 0.35s;
}

.social-btn:hover {
    color: #fff;
    transform: translateY(-6px) scale(1.1);
}

.social-btn:hover::before {
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.sb-fb {
    background: #1877f2;
}

.sb-ig {
    background: linear-gradient(
        135deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.sb-yt {
    background: #ff0000;
}

.sb-tw {
    background: #1da1f2;
}

.sb-li {
    background: #0a66c2;
}

/* ══ FLOATING BUTTONS ══ */
.float-btns {
    position: fixed;
    left: 14px;
    bottom: 110px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    position: relative;
}

.float-btn::before {
    content: attr(data-tip);
    position: absolute;
    left: 56px;
    background: #222;
    color: #fff;
    font-size: 12px;
    font-weight: var(--fw);
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.float-btn:hover::before {
    opacity: 1;
}

.float-btn:hover {
    transform: scale(1.15) translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.float-btn i {
    color: #fff;
    font-size: 18px;
}

.float-btn.vid {
    background: var(--primary);
}

.float-btn.wa {
    background: #25d366;
}

.float-btn.mail {
    background: #cc0000;
}

.float-btn.wa::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.scroll-top-btn {
    position: fixed;
    right: 14px;
    bottom: 90px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--accent);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition:
        background 0.3s,
        transform 0.3s;
}

.scroll-top-btn:hover {
    background: #b50f57;
    transform: scale(1.12) translateY(-3px);
}

.scroll-top-btn i {
    color: #fff;
    font-size: 18px;
}

.phone-fab {
    position: fixed;
    right: 14px;
    bottom: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.phone-fab:hover {
    background: var(--secondary);
    transform: scale(1.12) rotate(10deg);
}

.phone-fab i {
    color: #fff;
    font-size: 20px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
    .form-card {
        padding: 28px 20px;
    }

    .map-card {
        min-height: 380px;
    }

    .map-card iframe {
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .page-banner h1 {
        font-size: 26px;
    }

    .sec-title-lg,
    .faq-title,
    .social-title {
        font-size: 24px;
    }

    .form-card {
        padding: 24px 16px;
    }

    .info-card {
        padding: 24px 16px;
    }
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 10px;
}

.containerr {
    max-width: 1566px;
    margin: 0 auto;
    padding: 0 16px;
}

.containerrr {
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 16px;
}

a {
    text-decoration: none;
}

/* ── Scroll animation base ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb-bar {
    background: #f5f5f5;
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
    font-size: 13px;
}

.bc-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    color: #888;
}

.bc-nav a {
    color: #555;
}

.bc-nav a:hover {
    color: var(--blue);
}

.bc-sep {
    color: #bbb;
    font-size: 12px;
}

.bc-active {
    color: var(--text);
    font-weight: 600;
}

/* =====================================================
   SECTION 1 — HERO
   ===================================================== */
.hero-section {
    padding: 28px 0 32px;
    background: #fff;
}

.hero-card {
    display: flex;
    gap: 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow);
}

/* ─── Image Column ─── */
.hero-img-col {
    flex: 0 0 420px;
    position: relative;
}

.zoom-wrapper {
    position: relative;
    width: 100%;
    cursor: crosshair;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #fafafa;
}

.product-main-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    transition: opacity 0.25s;
}

.zoom-lens {
    position: absolute;
    border: 2px solid #999;
    background: rgba(255, 255, 255, 0.3);
    width: 120px;
    height: 100px;
    display: none;
    pointer-events: none;
    border-radius: 2px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.zoom-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    white-space: nowrap;
}

.zoom-result {
    display: none;
    position: absolute;
    left: calc(100% + 12px);
    top: 0;
    width: 380px;
    height: 320px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background-repeat: no-repeat;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    overflow: hidden;
}

.zoom-wrapper:hover .zoom-lens {
    display: block;
}

.zoom-wrapper:hover .zoom-hint {
    display: none;
}

/* Thumbnails */
.thumb-row {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.thumb-item {
    border: 2px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
    width: 80px;
    height: 66px;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--gold-btn);
}

/* ─── Info Column ─── */
.hero-info-col {
    flex: 1;
    min-width: 0;
}

.title-share-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.product-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.share-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    flex-shrink: 0;
    transition:
        border-color 0.2s,
        color 0.2s;
}

.share-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Qty row */
.qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.qty-input {
    width: 130px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
}

.qty-input:focus {
    border-color: #d04340;
}

.qty-unit {
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    background: #fafafa;
}

.edit-link {
    color: #d04340;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.edit-link:hover {
    text-decoration: underline;
}

.btn-get-price {
    background: #1e5cb8;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0 22px;
    height: 38px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    transition:
        background 0.2s,
        transform 0.15s;
    white-space: nowrap;
}

.btn-get-price:hover {
    background: #d04340;
    transform: translateY(-1px);
    color: #fff;
}

/* Specs table */
.specs-table {
    border-top: 1px solid var(--border);
    margin-bottom: 10px;
}

.spec-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.spec-key {
    width: 160px;
    flex-shrink: 0;
    font-size: 14px;
    color: #555;
}

.spec-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.view-more-link {
    display: inline-block;
    color: #d04340;
    font-size: 14px;
    margin-bottom: 20px;
}

.view-more-link:hover {
    text-decoration: underline;
}

/* CTA buttons */
.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    border: 1px solid gray;
    font-size: 14px;
    font-weight: 600;
    transition:
        border-color 0.2s,
        color 0.2s,
        transform 0.15s;
    white-space: nowrap;
}

.btn-call:hover {
    border-color: var(--blue);
    color: white;
    transform: translateY(-1px);
}

/* BUTTON ICON */
/* PHONE ICON FIX */

.btn-calll i {
    transform: rotate(90deg) !important;
    scale: 1 !important;
    display: inline-block;
}

.btn-enquiry i {
    font-size: 15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;
}

.btn-enquiryy {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #25d366;
    color: #fff;
    border-radius: 4px;
    padding: 0 20px;
    height: 42px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition:
        background 0.2s,
        transform 0.15s;
    white-space: nowrap;
}
.btn-enquiryy:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-1px);
}
.btn-enquiiry {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #0a66c2;
    color: #fff;
    border-radius: 4px;
    padding: 0 20px;
    height: 42px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    transition:
        background 0.2s,
        transform 0.15s;
    white-space: nowrap;
}
/* =====================================================
   SECTION 2 — PRODUCT DETAILS
   ===================================================== */
.pd-section {
    background: #fff;
    padding: 32px 0 36px;
}

.pd-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}

.pd-heading {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

/* Two-column grid matching the screenshot */
.pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.pd-row {
    display: flex;
    align-items: center;
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    gap: 10px;
    transition: background 0.15s;
}

.pd-row:hover {
    background: #fafafa;
}

.full-row {
    grid-column: 1 / -1;
}

.pd-key {
    min-width: 180px;
    font-size: 14px;
    color: #555;
    flex-shrink: 0;
}

.pd-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.pd-desc-text {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    margin-top: 18px;
    font-weight: 500;
    padding: 12px 14px;
    background: #fffbf0;
    border-left: 3px solid #e31e24;
    border-radius: 0 4px 4px 0;
}

.pd-cta {
    text-align: center;
    margin-top: 24px;
}

.btn-interested {
    display: inline-flex;
    align-items: center;
    background: #1e5cb8;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 40px;
    border-radius: 4px;
    transition:
        background 0.2s,
        transform 0.15s;
}

.btn-interested:hover {
    background: var(--gold-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* =====================================================
   SECTION 3 — ENQUIRY FORM
   ===================================================== */
.enquiry-section {
    background: #f9f9f9;
    padding: 40px 0 44px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.eq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
}

.eq-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 28px;
}

.eq-highlight {
    color: #d04340;
}

.eq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.eq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.eq-field.eq-full {
    grid-column: 1 / -1;
}

.eq-field label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.eq-field input,
.eq-field textarea {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 9px 12px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    resize: vertical;
}

.eq-field input:focus,
.eq-field textarea:focus {
    border-color: var(--gold-btn);
}

/* Phone field */
.phone-wrap {
    display: flex;
       border: 1px solid #dddddd;
    border-radius: 4px;
    overflow: hidden;
}

.phone-flag {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    background: #f5f5f5;
    border-right: 1px solid var(--border);
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    color: #444;
}

.phone-flag img {
    display: block;
}

.phone-input {
    flex: 1;
    border: none !important;
    border-radius: 0 !important;
    padding: 9px 12px;
    font-size: 14px;
    outline: none;
}

/* Quantity inside form */
.eq-qty-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eq-qty-wrap input {
    flex: 1;
}

.eq-unit {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 9px 12px;
    font-size: 14px;
    color: #555;
    background: #fafafa;
    white-space: nowrap;
}

/* Radio */
.radio-wrap {
    display: flex;
    gap: 20px;
}

.radio-opt {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 9px 18px;
}

.radio-opt input {
    margin: 0;
    accent-color: var(--blue);
}

.eq-submit {
    text-align: center;
    margin-top: 22px;
}

.btn-send {
    background: #1e5cb8;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 12px 48px;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.15s;
}

.btn-send:hover {
    background: #a90b10;
    transform: translateY(-2px);
}

/* =====================================================
   SECTION 4 — EXPLORE MORE PRODUCTS
   ===================================================== */
.explore-section {
    background: #fff;
    padding: 36px 0 40px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 24px;
}

/* Shared slider layout */
.slider-outer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cards-track {
    display: flex;
    gap: 16px;
    overflow: hidden;
    flex: 1;
}

.arrow-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}

.arrow-btn:hover {
    border-color: var(--gold-btn);
    color: var(--gold-btn);
}

/* Product cards */
.prod-card {
    flex: 0 0 calc(25% - 12px);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    background: #fff;
}

.prod-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.prod-card-img {
    position: relative;
    width: 100%;
    background: #f9f9f9;
    border-bottom: 1px solid var(--border);
}

.prod-card-img img {
    width: 100%;
    height: 155px;
    object-fit: contain;
    display: block;
    padding: 10px;
}

.prod-code {
    position: absolute;
    bottom: 6px;
    right: 8px;
    font-size: 11px;
    color: #888;
}

.prod-card-name {
    font-size: 13px;
    font-weight: 600;
    color: #d04340;
    text-align: center;
    padding: 12px 10px 10px;
    line-height: 1.4;
}

.btn-best-quote {
    display: inline-block;
    background: #1e5cb8;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    transition:
        background 0.2s,
        transform 0.15s;
}

.btn-best-quote:hover {
    background: var(--gold-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* =====================================================
   SECTION 5 — BLOGS
   ===================================================== */
.blog-section {
    background: #f9f9f9;
    padding: 36px 0 44px;
    border-top: 1px solid var(--border);
}

/* Blog cards */
.blog-card {
    flex: 0 0 calc(25% - 12px);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.blog-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.blog-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
}

.read-link {
    display: inline-block;
    color: #d04340;
    font-size: 13px;
    font-weight: 600;
    margin-top: auto;
}

.read-link:hover {
    text-decoration: underline;
}

/* =====================================================
   SCROLL-TO SMOOTH
   ===================================================== */

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .hero-card {
        flex-direction: column;
    }

    .hero-img-col {
        flex: none;
    }

    .zoom-result {
        display: none !important;
    }

    .pd-grid {
        grid-template-columns: 1fr;
    }

    .full-row {
        grid-column: 1;
    }

    .eq-grid {
        grid-template-columns: 1fr;
    }

    .eq-full {
        grid-column: 1;
    }

    .prod-card {
        flex: 0 0 calc(50% - 8px);
    }

    .blog-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 575px) {
    .product-title {
        font-size: 20px;
    }

    .qty-row {
        gap: 6px;
    }

    .qty-input {
        width: 100px;
    }

    .prod-card {
        flex: 0 0 calc(100% - 4px);
    }

    .blog-card {
        flex: 0 0 calc(100% - 4px);
    }

    .pd-key {
        min-width: 130px;
    }
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.nebula-testimonial-wrapper {
    padding: 70px 0;

    background: #f7f7f7;
}

.nebula-testimonial-container {
    max-width: 1280px;

    margin: auto;

    padding: 0 15px;
}

/* TITLE */

.nebula-testimonial-title {
    text-align: center;

    font-size: 38px;

    font-weight: 700;

    color: #111;

    margin-bottom: 45px;
}

/* =========================
   CARD
========================= */

.nebula-testimonial-card {
    background: #fff;

    border-radius: 18px;

    padding: 30px 25px;

    height: 100%;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

    transition: 0.3s;
}
.nebula-testimonial-card i {
    font-size: 30px;
    color: #606060;
}
.nebula-testimonial-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* TEXT */

.nebula-testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: #323232;
    margin-bottom: 20px;
}

/* =========================
   CLIENT INFO
========================= */
.client-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.nebula-client-info {
    display: flex;

    align-items: center;

    gap: 15px;
}

.nebula-client-img {
    width: 50px;

    height: 50px;

    border-radius: 50%;

    object-fit: cover;
}

/* NAME */

.nebula-client-name {
    font-size: 17px;
    font-weight: 500;
    color: #343434;
    margin: 0;
}

/* NAME ROW */

.nebula-name-row {
    display: flex;

    align-items: center;

    gap: 17px;
}

/* GOOGLE */

.google-img {
    width: 100px;

    object-fit: contain;
}

/* MOBILE */

@media (max-width: 991px) {
    .nebula-testimonial-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .nebula-testimonial-card {
        padding: 24px 18px;
    }

    .nebula-testimonial-title {
        font-size: 26px;
    }
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
    padding: 80px 0;

    background: #f5f7fb;
}

/* =========================
   LEFT
========================= */

.faq-left {
    position: sticky;

    top: 100px;
}

/* SUBTITLE */

.faq-subtitle {
    display: inline-block;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #c1121f;

    margin-bottom: 12px;

    text-transform: uppercase;
}

/* TITLE */

.faq-title {
    font-size: 42px;

    line-height: 1.3;

    font-weight: 700;

    color: #0b1f3a;

    margin-bottom: 18px;
}

/* LINE */

.faq-line {
    width: 70px;

    height: 4px;

    background: linear-gradient(90deg, #0b1f3a, #c1121f);

    border-radius: 30px;

    margin-bottom: 22px;
}

/* TEXT */

.faq-text {
    font-size: 15px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 26px;
}

/* BUTTON */

.faq-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 28px;

    background: linear-gradient(135deg, #0b1f3a, #c1121f);

    color: #fff;

    text-decoration: none;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s;
}

.faq-btn:hover {
    transform: translateY(-3px);

    color: #fff;

    box-shadow: 0 10px 25px rgba(11, 31, 58, 0.25);
}
.faq-a-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* YEH LINE HATAO agar hai */
/* .faq-item.open .faq-a-wrap { max-height: 200px; } */

/* =========================
   ACCORDION
========================= */

.custom-faq .accordion-item {
    border: none;

    border-radius: 12px !important;

    overflow: hidden;

    margin-bottom: 18px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* BUTTON */

.custom-faq .accordion-button {
    background: #fff;

    color: #0b1f3a;

    font-size: 17px;

    font-weight: 600;

    padding: 20px 24px;

    box-shadow: none !important;
}

/* ACTIVE */

.custom-faq .accordion-button:not(.collapsed) {
    background: #0b1f3a;

    color: #fff;
}

/* ICON */

.custom-faq .accordion-button i {
    color: #c1121f;
}

.custom-faq .accordion-button:not(.collapsed) i {
    color: #fff;
}

/* BODY */

.custom-faq .accordion-body {
    padding: 22px 24px;

    font-size: 15px;

    line-height: 1.9;

    color: #555;

    background: #fff;
}

/* REMOVE DEFAULT */

.custom-faq .accordion-button::after {
    filter: brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .faq-left {
        position: relative;

        top: 0;
    }

    .faq-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 28px;
    }

    .custom-faq .accordion-button {
        font-size: 15px;

        padding: 18px;
    }

    .custom-faq .accordion-body {
        padding: 18px;
    }
}

/* EXTRA CONTENT */

.more-content {
    display: none;

    margin-top: 10px;
}

.more-content.active {
    display: block;
}

/* READ MORE */

.read-more-wrap {
    display: flex;

    justify-content: center;

    margin-top: 18px;
}

.read-more-btn {
    border: none;

    background: #c1121f;

    color: #fff;

    padding: 11px 22px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;

    display: inline-flex;

    align-items: center;

    gap: 8px;
}

.read-more-btn:hover {
    background: #0b1f3a;

    transform: translateY(-2px);
}

.read-more-btn i {
    font-size: 13px;
}

/* =========================
   FLOATING SOCIAL
========================= */

.floating-social-fixed {
    position: fixed;
    bottom: 5%;
    right: 18px;
    z-index: 99999;
    display: flex;

    flex-direction: column;

    gap: 12px;
}

/* SOCIAL ITEM */

.float-social-item {
    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 20px;

    text-decoration: none;

    transition: 0.3s;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.float-social-item img {
    width: 52px;

    height: 52px;
}
/* HOVER */

.float-social-item:hover {
    transform: translateX(-5px) scale(1.08);

    color: #fff;
}

/* MOBILE */

@media (max-width: 576px) {
    .floating-social-fixed {
        right: 10px;
    }

    .float-social-item {
        width: 42px;

        height: 42px;

        font-size: 18px;
    }
}

/* ── CIRCLE ICONS ── */
.float-social-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    flex-shrink: 0;
}

.float-social-item:hover {
    transform: scale(1.18);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.call-bg {
    background: #2c3e50;
}
.whatsapp-bg {
    background: #25d366;
}

/* ── WHATSAPP POPUP ── */
.whatsapp-popup {
    position: fixed;
    right: 72px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 344px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-popup.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%) scale(1);
}

/* ── POPUP HEADER ── */
.wp-header {
    background: #2ab640;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.wp-header-icon {
    width: 47px;
    height: 47px;

    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #fff;
}

.wp-header-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.wp-header-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.wp-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.wp-close:hover {
    opacity: 0.8;
}

/* ── POPUP BODY ── */
.wp-body {
    padding: 14px;
}

.wp-body > p {
    font-size: 14px;
    color: #404040;
    margin: 0 0 12px;
}

.wp-chat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid #25d366;
    border-radius: 10px;
    padding: 10px 14px;
    background: #fff;
    width: 100%;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.wp-chat-btn:hover {
    background: #f0fff6;
    transform: translateY(-1px);
}

.wp-chat-icon-left {
    font-size: 32px;
    color: #25d366;
}

.wp-chat-btn-text {
    flex: 1;
}

.wp-chat-btn-text strong {
    display: block;
    font-size: 15px;
    color: #111;
    font-weight: 600;
}

.wp-chat-btn-text span {
    font-size: 14px;
    color: #444444;
}

.wp-chat-icon-right {
    font-size: 22px;
    color: #25d366;
}
/* =========================
   POPUP OVERLAY
========================= */

.quotePopup {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 35, 0.72);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

/* ACTIVE */

.quotePopup.active {
    display: flex;
}

/* =========================
   POPUP BOX
========================= */

.quote-popup-box {
    width: 100%;
      max-width: 444px;
    background: #fff;
    border-radius: 18px;
    overflow-y: auto;
    position: relative;
    animation: popupShow 0.35s ease;
}

/* ANIMATION */

@keyframes popupShow {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* =========================
   CLOSE BUTTON
========================= */

.quote-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--primary-bg-color);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.quote-close-btn:hover {
    background: #0b1f3a;
    transform: rotate(90deg);
}

/* =========================
   LEFT IMAGE
========================= */

.quote-popup-img {
    position: relative;
    height: 100%;
}

.quote-popup-img img {
    width: 100%;
  height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.6;
}

/* =========================
   IMAGE OVERLAY
========================= */

.quote-popup-overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 31, 58, 0.35),
        rgba(193, 18, 31, 0.72)
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.quote-popup-overlay-content h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.quote-popup-overlay-content p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   FORM AREA
========================= */

.quote-form-wrap {
    padding: 35px 35px;
}

/* SUBTITLE */

.quote-subtitle {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-bg-color);
    margin-bottom: 8px;
}

/* TITLE */

.quote-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 22px;
    line-height: 1.2;
}

/* =========================
   INPUT FIELDS
========================= */

.quote-input-group {
    margin-bottom: 12px;
}

.quote-input-group input,
.quote-input-group textarea {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    background: #f7f9fc;
}

/* TEXTAREA */

.quote-input-group textarea {
    height: 123px;
    resize: none;
}

/* INPUT FOCUS */

.quote-input-group input:focus,
.quote-input-group textarea:focus {
    border-color: #0b1f3a;
    box-shadow: 0 0 0 4px rgba(11, 31, 58, 0.08);
    background: #fff;
}

/* =========================
   SUBMIT BUTTON
========================= */

.quote-submit-btn {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, var(--primary-bg-color), #181818);
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.quote-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.2);
}

/* =========================
   PHONE INPUT
========================= */

.phone-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f9fc;
    transition: 0.3s;
}

.phone-input-wrap:focus-within {
    border-color: #0b1f3a;
    box-shadow: 0 0 0 4px rgba(11, 31, 58, 0.08);
    background: #fff;
}

/* COUNTRY CODE */

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-right: 1px solid #d9d9d9;
    background: #fff;
    height: 48px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1f3a;
}

/* FLAG */

.country-code img {
    width: 20px;
    border-radius: 2px;
}

/* PHONE INPUT */

.phone-input-wrap input {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    height: 48px;
    padding: 0 16px;
    width: 100%;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {
    .latest-section {
        padding: 0 !important;
    }
    .quote-popup-img {
        display: none;
    }

    .quote-form-wrap {
        padding: 28px 20px;
    }

    .quote-title {
        font-size: 26px;
    }

    .quote-popup-box {
        max-height: 92vh;
    }
}

@media (max-width: 576px) {
    .quote-title {
        font-size: 22px;
    }

    .quote-submit-btn {
        padding: 12px;
    }

    .quote-input-group input,
    .quote-input-group textarea {
        padding: 12px 14px;
    }
}
/* call animation  */
/* CALL LINK */

.call-link {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* CALL ICON */

.call-icon {
    font-size: 18px;
    background: linear-gradient(135deg, #fffffff0, #ffffff70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ringCall 1s infinite;
    transform-origin: center;
}

/* ANIMATION */

@keyframes ringCall {
    0% {
        transform: rotate(0deg);
    }

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

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

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
/* faqq */
.faq-wrap {
    display: flex;
    gap: 2.5rem;
    padding: 3rem 2.5rem;
    min-height: 520px;
    align-items: flex-start;
    margin: 0 auto;
}

.faq-left {
    flex: 1;
    padding-top: 8px;
}

.faq-tag {
    font-size: 11px;
    font-weight: 700;
    color: #a32d2d;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.faq-heading {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f3c;
    line-height: 1.15;
    margin-bottom: 14px;
}

.faq-accent {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #a32d2d, #7b1a1a);
    border-radius: 2px;
    margin-bottom: 20px;
}

.faq-sub {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 28px;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 22px;
    background: #1a1f3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.2s ease;
}

.faq-btn:hover {
    background: #073762;
    transform: translateY(-1px);
}

.faq-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: 10px;
    border: 1px solid #dde0e8;
    background: #fff;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 12px rgba(26, 31, 60, 0.07);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.35s ease;
}

.faq-q-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #073762 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s ease;
}

.faq-q-icon i {
    font-size: 12px;
    color: #fff;
    transition: color 0.35s ease;
}

.faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1a1f3c;
    transition: color 0.35s ease;
}

.faq-toggle {
    font-size: 16px;
    color: #999;
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.faq-a-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
    padding: 4px 20px 18px 58px;
    padding-top: 18px;
}
.faq-a p {
    margin-bottom: 0;
}
.faq-item.open {
    /* border-color: #1a1f3c; */
}

.faq-item.open .faq-q {
    background: #1a1f3c;
}

.faq-item.open .faq-q-text {
    color: #fff;
}

.faq-item.open .faq-toggle {
    color: #fff;
    transform: rotate(180deg);
}

.faq-item.open .faq-q-icon {
    background: #fff;
}

.faq-item.open .faq-q-icon i {
    color: #ffffff;
}

.faq-item.open .faq-a-wrap {
    max-height: 200px;
}
/* side bar  */
/* MOBILE MENU BUTTON */
.mobile-menu-btn {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
}
/* SIDE MENU */
.mobile-side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: 0.4s;
    overflow-y: auto;
    padding-bottom: 30px;
}

/* ACTIVE MENU */
.mobile-side-menu.active {
    left: 0;
}

/* HEADER */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-header h4 {
    color: #fff;
    margin: 0;
}

.close-menu {
    color: black;
    font-size: 30px;
    cursor: pointer;
}

/* NAV */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a,
.dropdown-togglee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    text-decoration: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 15px;
}
.mobile-nav a{
    border-bottom: 1px solid #999999;
}
.dropdown-togglee{
    padding:0;
    padding-right: 23px;
}
/* SUBMENU */
.mobile-submenu {
    display: none;
    background: wheat;
}

.mobile-submenu a {
    padding-left: 35px;
    font-size: 14px;
    color: black;
        background-color: #e9e9e9;
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* =========================================
   TOP BAR MOBILE ONE ROW FIX
========================================= */

@media (max-width: 768px) {
    .nebula-testimonial-wrapper {
        padding: 27px 0;
    }
    .content-block img {
        float: none;
        width: 100%;
        margin-left: 0px;
        margin-bottom: 23px;
    }
    .range-section {
            padding: 28px 0px !important;
    }
    /* TOP BAR */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* MAIN ROW */
    .top-bar .d-flex.align-items-center {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important; /* IMPORTANT */
        gap: 0 !important;
        width: 100%;
    }

    /* HIDE MARQUEE */
    .top-bar .flex-grow-1 {
        display: none !important;
    }

    /* RIGHT SECTION */
    .top-bar .flex-shrink-0 {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important; /* IMPORTANT */
    }

    /* HIDE ABOUT */
    .about-dropdown,
    .about-btnn,
    .sep {
        display: none !important;
    }

    /* PHONE */
    .call-link {
        display: none;
        align-items: center;
        font-size: 14px;
        color: #fff !important;
        text-decoration: none;
        white-space: nowrap;
        margin: 0;
    }

    /* MENU BUTTON */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto !important;
        padding: 0 !important;
        position: relative !important;
    }

    .mobile-menu-btn i {
        font-size: 32px !important;
        color: #000 !important;
        line-height: 1;
    }
}
/* =========================================
   PERFECT MOBILE HEADER
========================================= */

@media (max-width: 768px) {
    /* CONTAINER */
    .main-header .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* HEADER ROW */
    .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        width: 100%;
        padding: 12px 6px !important;
    }

    /* LOGO SECTION */
    .header-inner > a {
        flex: 0 0 auto;
        margin-right: 10px;
    }

    /* BIGGER LOGO */
    .logo-img {
            display: block;
        width: 234px;
        height: auto;
    }



    /* HIDE QUOTE BUTTON */
    .btn-franchise,
    .red-btn,
    .openQuotePopup {
        display: none !important;
    }

    /* RIGHT SECTION */


    /* LANGUAGE */
    .language-wrapper {
        margin: 0 !important;
    }

    .lang-toggle-btn {
        padding: 7px 12px !important;
        font-size: 12px !important;
        border-radius: 30px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .lang-toggle-btn svg {
        width: 15px;
        height: 15px;
    }



    /* HIDE GOOGLE TRANSLATE */
    #google_translate_element {
        display: none !important;
    }
}
/* =========================================
   KIDS SECTION RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .latest-heading h2 {
        font-size: 25px;
    }
    /* MAIN RIGHT SECTION */
    .kids-right {
        width: 75%;
        /* padding:0 15px; */
    }

    /* TOP AREA */
    .kids-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    /* HEADING */
    .kids-top h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    /* TEXT */
    .kids-top p {
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }

    /* NAVIGATION */
    .kids-nav {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .kids-prev,
    .kids-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
    }

    /* SWIPER */
    .kidsSwiper {
        overflow: hidden;
    }

    /* CARD */
    .kids-card {
        border-radius: 16px;
        overflow: hidden;
    }

    /* IMAGE */
    .kids-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 16px;
    }

    /* CONTENT */
    .kids-content {
        padding: 15px 5px;
    }

    .kids-content h4 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .kids-content span {
        font-size: 13px;
    }
}
/* =========================================
   FAQ SECTION RESPONSIVE
========================================= */

@media (max-width: 768px) {
    /* MAIN WRAPPER */
    .faq-wrap {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 50px 15px;
    }

    /* LEFT SIDE */
    .faq-left {
        width: 100%;
        text-align: left;
    }

    /* TAG */
    .faq-tag {
        font-size: 13px;
        padding: 6px 14px;
        display: inline-block;
        margin-bottom: 15px;
    }

    /* HEADING */
    .faq-heading {
        font-size: 29px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    /* ACCENT */
    .faq-accent {
        width: 70px;
        height: 4px;
        margin-bottom: 18px;
    }

    /* SUBTEXT */
    .faq-sub {
      display: none;
    }

    /* BUTTON */
    .faq-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 40px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    /* RIGHT SIDE */
    .faq-right {
        width: 100%;
    }

    /* FAQ ITEM */
    .faq-item {
        border-radius: 14px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    /* QUESTION ROW */
    .faq-q {
        padding: 8px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* ICON */
    .faq-q-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    /* QUESTION TEXT */
    .faq-q-text {
        font-size: 14px;
        line-height: 1.5;
        flex: 1;
    }

    /* TOGGLE */
    .faq-toggle {
        font-size: 14px;
    }

    /* ANSWER */
    .faq-a-wrap {
        padding: 0 16px 16px;
    }

    .faq-a {
        font-size: 14px;
        line-height: 2.8;
    }
}
/* =========================================
   LANGUAGE DROPDOWN PERFECT CENTER MOBILE
========================================= */

@media (max-width: 768px) {
    .language-wrapper {
        position: relative;
        display: none;
    }

    .language-dropdown {
        /* CENTER FIX */
        position: fixed !important;
        top: 110px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;

        width: 92% !important;
        max-width: 340px !important;

        background: #fff;
        border-radius: 16px;

        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);

        z-index: 999999;

        /* SCROLL */
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;

        /* GRID */
        /* display:grid !important; */
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* LANGUAGE ITEM */
    .lang-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        padding: 10px 12px;

        border-radius: 10px;

        font-size: 13px;
        line-height: 1.4;

        color: #222;
        text-decoration: none;

        transition: 0.3s ease;
    }

    .lang-item:hover {
        background: #f5f5f5;
    }
}
/* =========================================
   SHOW QUOTE BUTTON ON MOBILE
========================================= */

@media (max-width: 768px) {
    .btn-quote {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        padding: 10px 18px !important;

        font-size: 13px !important;
        font-weight: 600;

        /* border-radius:30px; */

        text-decoration: none;

        position: relative;
        z-index: 999;
    }
}
/* =========================================
   CORE VALUES RESPONSIVE
========================================= */

@media (max-width: 768px) {
    /* SECTION */
    .values-section {
        padding: 50px 0;
    }

    /* TITLE */
    .sec-title-lg {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 12px;
        font-weight: 700;
    }
    .about-section img {
        margin-bottom: 20px;
    }
    /* LINE */
    .sec-line-center {
        width: 70px;
        height: 4px;
        margin: 0 auto 30px;
    }

    /* ROW GAP */
    .values-section .row {
        row-gap: 18px;
    }

    /* COLUMN */
    .values-section .col-6 {
        padding-left: 8px;
        padding-right: 8px;
    }

    /* CARD */
    .value-card {
        padding: 22px 15px;
        border-radius: 18px;
        height: 100%;
        text-align: center;
    }

    /* ICON */
    .value-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }

    /* TITLE */
    .value-title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 10px;
        font-weight: 700;
    }

    /* DESCRIPTION */
    .value-desc {
        font-size: 13px;
        line-height: 1.7;
    }
}
/* =========================================
   QUALITY SECTION RESPONSIVE
========================================= */

@media (max-width: 768px) {
    /* SECTION */
    .quality-section {
        padding: 60px 0;
        padding-top: 0;
        overflow: hidden;
    }

    /* OVERLAY */
    .quality-overlay {
        opacity: 0.9;
    }

    /* CONTAINER */
    .quality-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* HEADING */
    .quality-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .quality-heading h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .quality-heading p {
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
        margin: 0 auto;
    }

    /* GRID */
    .quality-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
               gap: 13px;
        justify-content: center;
    }

    /* LAST ITEM CENTER */
    .quality-item:last-child {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
    }

    /* ITEM */
    .quality-item {
        display: flex;
        justify-content: center;
    }

    /* DIAMOND BOX */
    .diamond-box {
                  width: 136px;
        height: 136px;
        transform: rotate(0deg) !important;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 15px;
    }

    /* INNER CONTENT FIX */
    .diamond-box img {
        transform: rotate(-45deg);
    }

    .diamond-box h4{
          transform: rotate(0deg);
    }


    /* ICON */
    .diamond-box img {
        width: 38px;
        height: auto;
        margin-bottom: 10px;
    }

    /* TEXT */
    .diamond-box h4 {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
        margin: 0;
    }
}
/* =========================================
   PRODUCTION SECTION RESPONSIVE
========================================= */

@media (max-width: 768px) {
    .section-heading {
        margin-bottom: 29px;
    }
    /* SECTION */
    .production-section {
        padding: 20px 0;
        overflow: hidden;
    }

    /* CONTAINER */
    .production-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* HEADING */
    .production-heading {
        text-align: center;
        margin-bottom: 40px;
    }

    .production-heading h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .production-heading p {
        font-size: 14px;
        line-height: 1.8;
        margin: 0 auto;
        max-width: 100%;
    }

    /* GRID */
    .production-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    /* LAST ITEM CENTER */
    .production-item:last-child {
        grid-column: 1 / -1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* ITEM */
    .production-item {
        padding: 22px 15px;
        border-radius: 18px;
        text-align: center;
    }

    /* ICON */
    .production-icon {
        width: 75px;
        height: 75px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .production-icon img {
        width: 42px;
        height: auto;
        object-fit: contain;
    }

    /* TITLE */
    .production-item h4 {
        font-size: 16px;
        line-height: 1.5;
        margin: 0;
    }
}
/* PHONE INPUT WITH FLAG */

.phone-wrap {
    position: relative;
}

.country-box {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border-radius: 30px;
    z-index: 2;
}

.country-box img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.country-box span {
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

/* INPUT PADDING */
.phone-input {
    padding-left: 95px !important;
}
/* FIX INPUT OVERFLOW ISSUE */

.eq-field input,
.eq-field textarea,
.phone-wrap,
.phone-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* MOBILE FIX */

@media (max-width: 768px) {
    .eq-grid {
        grid-template-columns: 1fr;
    }

    .eq-field {
        width: 100%;
        overflow: hidden;
    }

    .phone-wrap {
        flex-wrap: nowrap;
    }

    .phone-flag {
        min-width: 85px;
        padding: 0 10px;
    }

    .phone-input {
        min-width: 0;
        flex: 1;
    }

    .eq-field input,
    .eq-field textarea {
        font-size: 14px;
        padding: 14px;
    }
}
/* ===================================== */
/* HERO SECTION RESPONSIVE CSS */
/* ===================================== */

@media (max-width: 1200px) {
    .hero-card {
        gap: 40px;
    }

    .product-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .hero-card {
        flex-direction: column;
        gap: 40px;
    }

    .hero-img-col,
    .hero-info-col {
        width: 100%;
    }

    .product-title {
        font-size: 36px;
    }

    .seo-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .zoom-result {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-card {
        padding: 25px;
        border-radius: 24px;
    }

    .product-title {
        font-size: 30px;
        line-height: 1.3;
    }

    .title-share-row {
        gap: 15px;
        align-items: flex-start;
    }

    .share-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .seo-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .cta-row {
        flex-direction: column;
        gap: 15px;
    }

    .btn-calll,
    .btn-enquiiry,
    .btn-enquiryy {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 18px;
        font-size: 15px;
    }

    .thumb-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .thumb-item {
        width: 75px;
        height: 75px;
    }

    .zoom-hint {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .hero-card {
        padding: 18px;
    }

    .product-title {
        font-size: 26px;
    }

    .product-main-img {
        border-radius: 18px;
    }

    .thumb-item {
        width: 65px;
        height: 65px;
    }

    .seo-info-box {
        padding: 18px;
        border-radius: 18px;
    }

    .seo-content p {
        font-size: 13px;
    }

    .btn-calll,
    .btn-enquiiry,
    .btn-enquiryy {
        font-size: 14px;
        padding: 13px 16px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-card {
        gap: 25px;
    }

    .product-title {
        font-size: 24px;
    }

    .title-share-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .seo-content p {
        line-height: 1.7;
    }

    .thumb-row {
        gap: 10px;
    }
}
.country-dropdown {
    position: relative;
    width: 120px;
}

.country-btn {
    width: 100%;
    height: 55px;
    border: none;
    outline: none;
    background: #f8fafc;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.country-btn img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.country-btn i {
    font-size: 13px;
    color: #64748b;
}

.country-list {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 8px 0;
    list-style: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 99;
}

.country-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: 0.3s;
}

.country-list li:hover {
    background: #f1f5f9;
}

.country-list img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.country-list span {
    font-size: 14px;
    font-weight: 600;
}

/* MOBILE */

@media (max-width: 768px) {
    .country-dropdown {
        width: 105px;
    }

    .country-btn {
        height: 50px;
        font-size: 14px;
        padding: 0 10px;
    }
}
/* =========================================
   HIDE FLOATING SOCIAL ON MOBILE
========================================= */

@media (max-width: 768px) {
    .floating-social-fixed,
    .whatsapp-popup {
        /*display: none !important;*/
    }
}
/* MENU HEADER LOGO */
.menu-logo {
    height: 34px;
    width: auto;
    display: block;
}
/* blog swiper */
/* ===== BLOG SECTION ===== */
.blog-main-section {
    padding: 60px 0;
    background: #ecf6ff;
}

.blog-main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADING ===== */
.blog-main-heading {
    text-align: center;
    margin-bottom: 40px;
}

.blog-main-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: inline-block;
}

.blog-main-heading h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #a32d2d;
    margin: 10px auto 0;
    border-radius: 2px;
}

.blog-main-heading p {
    font-size: 15px;
    color: #666;
    max-width: 620px;
    margin: 14px auto 0;
    line-height: 1.8;
}

/* ===== SWIPER WRAPPER ===== */
.blog-swiper-outer {
    position: relative;
    padding: 0 10px 0px;
}

.blogMainSwiper {
    overflow: hidden;
}

.blogMainSwiper .swiper-slide {
    height: auto;
}

/* ===== BLOG CARD ===== */
.blog-main-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ebebeb;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.blog-main-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ===== CARD IMAGE ===== */
.blog-main-card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ===== CARD BODY ===== */
.blog-main-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.blog-main-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a32d2d;
}

.blog-main-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.45;
}
.blog-main-card-title a {
    color: #2c2c2c;
}
.blog-main-card-excerpt {
    font-size: 15px;
    color: #777;
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

/* ===== CARD FOOTER ===== */
.blog-main-card-footer {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.blog-main-card-date {
    font-size: 15px;
    color: #5c5c5c;
    font-weight: 600;
}

.btn-blog-main-read {
    background: var(--button-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.btn-blog-main-read:hover {
    background: #303030;
}

/* ===== PAGINATION ===== */
.blogMainSwiper .swiper-pagination {
    bottom: 10px;
}

.blogMainSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
}

.blogMainSwiper .swiper-pagination-bullet-active {
    background: #a32d2d;
    width: 22px;
    border-radius: 4px;
}

/* ===== NAV ARROWS ===== */
.blogMainSwiper .swiper-button-next,
.blogMainSwiper .swiper-button-prev {
    color: #a32d2d;
    top: 40%;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blogMainSwiper .swiper-button-next {
    right: -5px;
}

.blogMainSwiper .swiper-button-prev {
    left: -5px;
}

.blogMainSwiper .swiper-button-next::after,
.blogMainSwiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 800;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .blog-main-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-choose-heading {
        display: none;
    }
    .blog-main-section {
        padding: 40px 0;
    }
    .blog-main-heading h2 {
        font-size: 24px;
    }
    .blog-main-heading p {
        font-size: 14px;
    }
}
.mid-banner {
    margin-top: 30px;
}
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* product page css */
.product-page {
    --pp-primary: var(--site-primary, #b22222);
    --pp-secondary: var(--site-secondary, #c9920a);
    --pp-ink: #152033;
    --pp-muted: #667085;
    --pp-line: rgba(21, 32, 51, 0.1);
    --pp-soft: #f6f7fb;
    color: var(--pp-ink);
    background: linear-gradient(180deg, #fff 0%, #fafafa 46%, #fff 100%);
}

.product-page a {
    text-decoration: none;
       font-size: 22px;
}
.product-page a i{
    font-size: 20px;
}
.pp-section {
    padding: 40px 0px;
}

.pp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(178, 34, 34, 0.16);
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(178, 34, 34, 0.06);
    color: var(--pp-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pp-title {
    margin: 14px 0 10px;
    font-size: 33px;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: 0;
    color: #3e3e3e;
}

.pp-subtitle {
    color: var(--pp-muted);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.8;
}

.pp-card {
    border: 1px solid var(--pp-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.pp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border: 0;
    border-radius: 4px;
       padding: 11px 16px;
    font-weight: 600;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
    cursor: pointer;
}

.pp-btn:hover {
    transform: translateY(-2px);
}

.pp-btn-primary {
    color: #fff;
    background: #073762;
    font-size: 15px;
}

.pp-btn-secondary {
    color: #ffffff;
    background-color:#073762;
}

.pp-btn-outline {
    color: #ffffff;
    background: #3ec250;
    border: 1px solid var(--pp-line);
    padding: 1px 20px;
    font-size: 20px !important;
    font-weight: 600 !important;
}

.pp-hero {
    position: relative;
    overflow: hidden;
    padding: 25px 0px;
    background: linear-gradient(45deg, #e9e9e9, #ffffff);
}

.pp-breadcrumb {
    margin-bottom: 22px;
    font-size: 14px;
    padding: 16px 0px;
    color: var(--pp-muted);
    background-color: #ffffff;
    border: 1px solid #dddddd;
    padding-left: 19px;
}

.pp-breadcrumb a {
    color: #20387c;
    font-weight: 500;
    font-size: 16px;
}

.pp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(24px, 5vw, 54px);
    align-items: start;
}

.pp-gallery {
    display: flex;
    position: relative;
    padding: 13px;
}

.pp-image-stage {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
   aspect-ratio: 1;
    background: linear-gradient(135deg, #f4f6f8, #fff);
}
.pp-image-stage .zoom-badge{
    color: #20387c;
    font-weight: 500;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 999;
    background-color: white;
    border-radius: 5px 0px;
    padding: 4px 10px;
}
.pp-image-stage img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition:
        transform 0.35s ease,
        opacity 0.2s ease;
}

.pp-zoom-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    border-radius: 999px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(21, 32, 51, 0.78);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
}

.pp-thumbs {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
    gap: 10px;
    margin-top: 0;
    margin-right: 12px;
}

.pp-thumb {
    height: 76px;
    border: none;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

.pp-thumb:hover,
.pp-thumb.active {
    transform: translateY(-1px);
}

.pp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
     padding: 0;
}

.pp-info-panel {
}

.pp-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.pp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--pp-line);
    color: #344054;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
}

.pp-quick-actions {
     display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    width: 50%;
}

.pp-trust {
    padding: 16px;
    border: 1px solid var(--pp-line);
    border-radius: 8px;
    background: #fff;
}

.pp-trust i {
    color: var(--pp-primary);
    font-size: 22px;
}

.pp-trust strong {
    display: block;
    margin-top: 9px;
    font-size: 14px;
}

.pp-trust span {
    display: block;
    margin-top: 4px;
    color: var(--pp-muted);
    font-size: 12px;
    line-height: 1.5;
}

.pp-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 26px;
}

.pp-section-head h2 {
    margin: 0;
    font-size: 27px;
    font-weight: 700;
}

.pp-spec-list {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.pp-spec {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--pp-line);
}

.pp-spec:last-child {
    border-bottom: 0;
}

.pp-spec span {
    color: var(--pp-muted);
    font-size: 14px;
}

.pp-spec strong {
    text-align: right;
    font-size: 14px;
}

.pp-content {
    padding: 24px;
    line-height: 1.85;
    color: #475467;
}

.pp-content h1,
.pp-content h2,
.pp-content h3,
.pp-content h4 {
    color: var(--pp-ink);
    font-weight: 800;
}

.pp-more {
    display: none;
}

.pp-more.active {
    display: block;
}

.pp-form-card {
    overflow: hidden;
}

.pp-form-top {
    padding: 28px;
    color: #fff;
    background: #073762;
}

.pp-form-top h2 {
    margin: 0 0 8px;
    font-size: 27px;
    font-weight: 700;
    margin-top: 0 !important;
}

.pp-form-body {
    padding: 28px;
}

.pp-field label {
display: block;
    margin-bottom: 8px;
    color: #5c5c5c;
    font-size: 16px;
    font-weight: 700;
}

.pp-control {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--pp-ink);
    background: #fff;
    outline: none;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.pp-control:focus {
    border-color: var(--pp-primary);
    box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.1);
}

.pp-phone {
    display: flex;
}

.pp-phone-code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d0d5dd;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    padding: 0 12px;
    background: #f9fafb;
    font-weight: 800;
}

.pp-phone .pp-control {
    border-radius: 0 8px 8px 0;
}

.pp-product-card {
    height: 100%;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.pp-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(178, 34, 34, 0.28);
    box-shadow: 0 20px 44px rgba(16, 24, 40, 0.12);
}

.pp-product-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f7f8fa;
}

.pp-product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 11px;
}

.pp-product-body {
     padding: 11px;
    padding-top: 0;
}

.pp-product-body h3 {
    margin: 0 0 17px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
    text-align: center;
}

.pp-product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.pp-swiper-wrap {
    position: relative;
}

.pp-slider-nav {
    display: flex;
    gap: 10px;
}

.pp-icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pp-line);
    border-radius: 8px;
    color: var(--pp-ink);
    background: #fff;
}

.pp-blog-card,
.pp-review-card {
    height: 100%;
    padding: 20px;
}

.pp-blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    background: var(--pp-soft);
}

.pp-blog-card h3,
.pp-review-card h3 {
    font-size: 17px;
    font-weight: 800;
}

.pp-review-stars {
    color: #f59e0b;
    margin-bottom: 12px;
}

.pp-faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 24px;
    align-items: start;
}

.pp-faq-list {
    display: grid;
    gap: 12px;
}

.pp-faq-item {
    border: 1px solid var(--pp-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.pp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    padding: 18px;
    text-align: left;
      color: #ffffff;
    background: #073762;
    font-weight: 600;
    font-size: 16px;
}

.pp-faq-a {
    display: none;
    padding: 0 18px 18px;
    color: var(--pp-muted);
    line-height: 1.75;
}

.pp-faq-item.open .pp-faq-a {
    display: block;
        padding-top: 13px;
}

.pp-faq-item.open .pp-faq-q i {
    transform: rotate(180deg);
}

.pp-status {
    border-radius: 8px;
    padding: 13px 15px;
    margin-bottom: 18px;
    background: #ecfdf3;
    color: #027a48;
    font-weight: 800;
}

.pp-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .pp-quick-actions{
        width: 100%;
    }
    .pp-hero-grid,
    .pp-detail-grid,
    .pp-faq-layout {
        grid-template-columns: 1fr;
    }

    .pp-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .info-section {
        padding-top: 44px;
    }
    .pp-title {
        font-size: 27px;
        font-weight: 700;
    }
    .pp-hero {
        padding-top: 0;
    }
    .pp-section-head {
        align-items: start;
        flex-direction: column;
    }

    .pp-quick-actions {
        grid-template-columns: 1fr;
    }

    .pp-trust-grid {
        grid-template-columns: 1fr;
    }

    .pp-form-top,
    .pp-form-body,
    .pp-content,
    .pp-info-panel {
        padding: 20px;
    }
}

.profile-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.profile-card .card-body {
    border: 1px solid #b5b5b5;
}
.profile-header {
    background: #0f3561;
    color: white;
    padding: 23px 30px;
}
.profile-header h2 {
    font-size: 22px;
}
.company-logo {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    object-fit: cover;
    background: white;
    padding: 10px;
}

.table td {
    padding: 16px;
    vertical-align: middle;
}

.label {
    font-weight: 600;
    color: #6c757d;
    width: 35%;
}

.value {
    font-weight: 500;
    color: #212529;
}

.badge-custom {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {

    .profile-header {
        text-align: center;
    }

    .header-content {
        flex-direction: column;
    }

    .table td {
        display: block;
        width: 100%;
    }

    .label {
        padding-bottom: 5px !important;
    }
}
.sitemap-card {
    border: 1px solid black;
}
.sitemap-category-row h5 {
    margin-bottom: 22px !important;
    font-weight: 600;
}
.blog-share a {
    color: black;
}
.blog-date {
    color: #242424 !important;
}
.blog-share a {
    font-size: 18px;
}

@media (max-width: 1500px) {
    .container {
        max-width: 1300px;
    }
}
.slider-pagination{
    position: static !important;
}
.swiper-pagination-bullet-active{
    background:var(--primary-bg-color)
}
.openQuotePopup{
    display:inline-flex;
    align-items:center;
}

.quote-icon{
    display:inline-block;
    font-size:18px;
    animation: messageSend 1.8s infinite ease-in-out;
}

@keyframes messageSend{
    0%{
        transform: translateX(0);
        opacity:1;
    }
    20%{
        transform: translateX(2px);
    }
    40%{
        transform: translateX(8px);
        opacity:0.5;
    }
    50%{
        transform: translateX(0);
        opacity:1;
    }
    100%{
        transform: translateX(0);
        opacity:1;
    }
}
.select2-container--default .select2-results > .select2-results__options {
    max-height: 250px;
    overflow-y: auto;
}

.select2-container .select2-selection--single {
    height: 52px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.select2-dropdown {
    border-radius: 10px;
    overflow: hidden;
}

.select2-search__field {
    padding: 8px !important;
}
.product-image-zoom-container {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: zoom-in;
    background: #fff;
}

.product-image-zoom-container img {
    width: 100%;
    display: block;
    transition: transform 0.15s ease;
    transform-origin: center center;
}

.product-image-zoom-container:hover img {
    transform: scale(2.2);
}

.zoom-lens {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(3px);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image-zoom-container:hover .zoom-lens {
    opacity: 1;
}
.countries-section{
padding: 50px 0px;
    background-color: #20387c2b;
}
/* Wrapper configuration to house custom navigation buttons outside the slider */
.prem-flag-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 50px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Base Swiper Container */
.prem-flag-swiper {
  padding: 20px 5px 50px 5px !important; /* Bottom padding leaves room for beautiful pagination */
}

/* Premium Card Design */
.prem-flag-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgb(187 187 187);
  border-radius: 16px;
  padding: 24px 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Premium Hover Effect */
.prem-flag-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
    border-color: rgb(183 183 183);
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.08);
}

/* Flag Image Box */
.prem-flag-img-box {
  width: 80px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
  background: #fafafa;
}

.prem-flag-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prem-flag-card:hover .prem-flag-img-box img {
  transform: scale(1.05);
}

/* Typography */
.prem-flag-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  transition: color 0.3s ease;
}

.prem-flag-card:hover .prem-flag-name {
  color: #000000;
}

/* Beautiful Custom Navigation Arrows */
.prem-flag-nav-btn {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: #1a1a1a !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.prem-flag-nav-btn:after {
  font-size: 16px !important;
  font-weight: bold;
}

.prem-flag-nav-btn:hover {
  background: #0066cc;
  color: #ffffff !important;
  border-color: #0066cc;
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.25);
}

.prem-flag-prev { left: 0px; }
.prem-flag-next { right: 0px; }

/* Elegant Bullet Pagination */
.prem-flag-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cccccc;
  opacity: 0.6;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.prem-flag-pagination .swiper-pagination-bullet-active {
  background: #20387c;
  width: 24px; /* Expands dynamically to indicate active item */
  border-radius: 4px;
  opacity: 1;
}
.section-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.section-btn a{
    display: flex;
    align-items: center;
background-color: #20387c;
    color: white;
    border: 1px solid black;
    padding: 7px 38px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
}
.section-btn a i{
    font-size: 24px;
    margin-right: 6px;
}
.video-wrapper{
    aspect-ratio:9/16;
    background:#000;
}

.video-card{
    cursor:pointer;
    transition:transform .3s ease, box-shadow .3s ease;
}

.video-card:hover{
    transform:translateY(-6px);
}

.play-btn{
    width:72px;
    height:72px;
    font-size:24px;
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.video-frame{
    width:100%;
    height:100%;
    border:0;
}
.pp-whatsapp-btn{
font-size: 14px !important;
}
