:root {
    --primary-blue: #274C8E;
    --primary-blue-dark: #1d3a6e;
    --primary-green: #A7CF3A;
    --dark-text: #1E293B;
    --para: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --radius: 14px;
    --shadow-sm: 0 4px 18px rgba(39, 76, 142, 0.07);
    --shadow-md: 0 10px 35px rgba(39, 76, 142, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--para);
    background: var(--bg-light);
    font-weight: 500;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.fw-head {
    color: var(--dark-text);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 16px;
    font-weight: 400;
}

a {
    text-decoration: none;
}

.btn {
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: .35s ease;
}

.btn-primary-brand {
    background: var(--primary-blue);
    color: #fff;
    border: 2px solid var(--primary-blue);
}

.btn-primary-brand:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: #fff;
    transform: translateY(-3px);
}

.btn-green-brand {
    background: var(--primary-green);
    color: var(--dark-text);
    border: 2px solid var(--primary-green);
}

.btn-green-brand:hover {
    background: #94ba29;
    border-color: #94ba29;
    transform: translateY(-3px);
}

.btn-outline-brand {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-brand:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.section-pad {
    padding: 60px 10px;
}

@media(max-width:768px) {
    .section-pad {
        padding: 30px 10px;
    }
}

.eyebrow {
    display: inline-block;
    color: var(--primary-blue);
    background: rgba(39, 76, 142, .08);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
}



.text-center .section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary-blue);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a {
    color: #fff;
    opacity: .92;
}

.top-bar a:hover {
    opacity: 1;
    color: var(--primary-green);
}

.top-bar .social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    margin-left: 6px;
    font-size: 13px;
    transition: .3s;
}

.top-bar .social-icons a:hover {
    background: var(--primary-green);
    color: var(--dark-text);
}

/* ===== HEADER ===== */
header.main-header {
    background: #fff;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: .3s;
}

.navbar-brand img {
    height: 48px;
}

.navbar-brand .brand-sub {
    font-size: 11px;
    color: var(--para);
    font-weight: 500;
    display: block;
    letter-spacing: .5px;
}

.navbar-brand .brand-main {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.navbar-brand .brand-main span {
    color: var(--primary-green);
}

.main-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    font-size: 15.5px;
    margin: 0 4px;
    padding: 7px !important;
    position: relative;
    transition: .3s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary-blue) !important;
}

.main-nav .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 10px;
    margin-top: 10px !important;
}

.main-nav .dropdown-item {
    border-radius: 8px;
    padding: 9px 16px;
    font-weight: 500;
    font-size: 14.5px;
    color: var(--dark-text);
}

.main-nav .dropdown-item:hover {
    background: rgba(39, 76, 142, .07);
    color: var(--primary-blue);
}

.header-cta {
    white-space: nowrap;
}

/* ===== HERO ===== */
.hero-slide {
    height: 530px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 41, 59, .78) 0%, rgba(39, 76, 142, .55) 60%, rgba(39, 76, 142, .25) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    padding:40px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content {
    max-width: 620px;
    color: #fff;
}

.hero-content .eyebrow-tags span {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
    margin: 0 8px 8px 0;
    border: 1px solid rgba(255, 255, 255, .25);
}

.hero-content h1 {
    color: #fff;
    font-size: 45px;
    text-align: center;
    margin: 18px 0 16px;
}
.hero-content .slide-title {
    color: #fff;
    font-size: 45px;
    text-align: center;
    margin: 18px 0 16px;
}
.hero-content p.lead-text {
    color: #e7ecf5;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 28px;
}

.hero-content h2.slide-title {
    color: #fff;
    font-size: 45px;
    margin-bottom: 18px;
}
.hero-content .hero-btn{
    
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width:991px) {
    .hero-slide {
        height: 550px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

@media(max-width:576px) {
    .hero-slide {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content h2.slide-title {
        font-size: 24px;
    }
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, .15);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 18px;
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: .6;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-green);
    opacity: 1;
}


/* ===== ABOUT ===== */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -28px;
    right: -20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 22px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-badge h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 0;
}

.about-badge span {
    font-size: 13px;
    font-weight: 500;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 15.5px;
}

.feature-list li i {
    width: 30px;
    height: 30px;
    background: rgba(167, 207, 58, .18);
    color: #6f941f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 13px;
    flex-shrink: 0;
}

/* ===== COUNTER ===== */
.counter-section {
    background: linear-gradient(rgba(30, 41, 59, .86), rgba(39, 76, 142, .86)), url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
}

.counter-box h2 {
    color: #fff;
    font-size: 46px;
    margin-bottom: 4px;
}

.counter-box p {
    color: #dbe3f2;
    font-weight: 600;
    margin-bottom: 0;
}

.counter-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.counter-box:last-child {
    border-right: none;
}

@media(max-width:768px) {
    .counter-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
}

/* ===== PRODUCT RANGE CIRCULAR ===== */
.range-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    height: 100%;
    border: 1px solid #eef1f6;
}

.range-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.range-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), #3a63b0);
    color: #fff;
    font-size: 34px;
    box-shadow: 0 8px 22px rgba(39, 76, 142, .25);
    transition: .35s;
}

.range-card:hover .range-circle {
    background: linear-gradient(135deg, var(--primary-green), #8fb52e);
}

.range-card h3 {
    font-size: 17px;
    margin-bottom: 0;
}

/* ===== PRODUCT SLIDERS ===== */
.range-block {
    margin-bottom: 55px;
}

.range-block-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.range-block-head h3 {
    font-size: 23px;
    margin-bottom: 0;
    position: relative;
    padding-left: 18px;
}



.range-block-head a {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14.5px;
}

.range-block-head a:hover {
    color: var(--primary-green);
}

.product-slide-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    transition: .35s;
}

.product-slide-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-slide-card img {
    width: 100%;
;
    object-fit: cover;
    display: block;
}

.prod-swiper {
    padding-bottom: 6px;
}

.prod-swiper .swiper-button-next,
.prod-swiper .swiper-button-prev {
    width: 38px;
    height: 38px;
    background: #6f941f;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    color: #fff;
}

.prod-swiper .swiper-button-next:after,
.prod-swiper .swiper-button-prev:after {
    font-size: 14px;
}

/* ===== WHY CHOOSE ===== */
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    height: 100%;
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(39, 76, 142, .08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex-shrink: 0;
}

.why-card h4 {
    font-size: 16.5px;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/* ===== FRANCHISE CTA SPECIAL ===== */
.franchise-special {
    background: linear-gradient(rgba(30, 41, 59, .88), rgba(39, 76, 142, .85)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
    border-radius: var(--radius);
}

.franchise-special h2 {
    color: #fff;
}

.franchise-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    font-weight: 600;
    color: #fff;
}

.franchise-benefits li i {
    color: var(--primary-green);
    margin-right: 12px;
    font-size: 18px;
}

/* ===== PROCESS ===== */
.process-step {
    text-align: center;
    position: relative;
}

.process-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-sm);
}

.process-step h4 {
    font-size: 17px;
}

.process-arrow {
    color: var(--primary-green);
    font-size: 24px;
}

@media(max-width:768px) {
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    .product-slide-card img {
    width: 100%;
  
    object-fit: cover;
    display: block;
}
}

/* ===== CERTIFICATES ===== */
.cert-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    transition: .3s;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.cert-card i {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    margin: 8px;
}

.testi-card img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-stars {
    color: #f5a623;
    font-size: 14px;
}

.testi-card p {
    font-size: 15px;
}

/* ===== FAQ ===== */
.accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 16px;
    padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
    background: rgba(39, 76, 142, .07);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 15px;
    padding: 18px 22px;
}



/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--primary-blue);
    color: #fff;
    border-radius: var(--radius);
}

.final-cta h2 {
    color: #fff;
}

/* ===== CONTACT ===== */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
    border: 1px solid #eef1f6;
}

.contact-info-card i {
    width: 46px;
    height: 46px;
    background: rgba(39, 76, 142, .08);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
}

.contact-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef1f6;
}

.form-control {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(39, 76, 142, .12);
}

.map-wrap iframe {
    border-radius: var(--radius);
    width: 100%;
    height: 320px;
    border: 0;
    box-shadow: var(--shadow-sm);
}


/* ===================================================
======================================================
======================================================
                AboutUs page start 
=======================================================
=======================================================
======================================================= */
/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 50px 10px;
    background: linear-gradient(rgba(30, 41, 59, .82), rgba(39, 76, 142, .78)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.page-hero .breadcrumb-nav {
    color: #dbe3f2;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 18px;
}

.page-hero .breadcrumb-nav a {
    color: #dbe3f2;
}

.page-hero .breadcrumb-nav a:hover {
    color: var(--primary-green);
}

.page-hero h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero p {
    color: #e7ecf5;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
}

@media(max-width:768px) {
    .page-hero {
        padding: 30px 10px;
    }

    .page-hero h1 {
        font-size: 30px;
    }
}

/* ===== ABOUT COMPANY ===== */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -28px;
    right: -20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 22px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-badge h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 0;
}

.about-badge span {
    font-size: 13px;
    font-weight: 500;
}

.value-grid .value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.value-grid .value-item i {
    width: 34px;
    height: 34px;
    background: rgba(167, 207, 58, .18);
    color: #6f941f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-grid .value-item strong {
    color: var(--dark-text);
    display: block;
    font-size: 15.5px;
}

/* ===== WHY CHOOSE / STRENGTHS CARDS ===== */
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 24px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    transition: .35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(39, 76, 142, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    color: var(--primary-blue);
    transition: .35s;
}

.feature-card:hover .feature-icon {
    background: var(--primary-blue);
    color: #fff;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/* ===== MISSION VISION ===== */
.mv-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 42px 34px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-green);
}

.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(39, 76, 142, .08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

/* ===== TIMELINE (JOURNEY) ===== */
.journey-timeline {
    position: relative;
    padding-left: 34px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: rgba(39, 76, 142, .15);
    border-radius: 3px;
}

.journey-item {
    position: relative;
    padding-bottom: 42px;
}

.journey-item:last-child {
    padding-bottom: 0;
}

.journey-dot {
    position: absolute;
    left: -34px;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px rgba(39, 76, 142, .18);
}

.journey-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.journey-year {
    display: inline-block;
    color: var(--primary-green-d, #6f941f);
    background: rgba(167, 207, 58, .18);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ===== COUNTER ===== */
.counter-section {
    background: linear-gradient(rgba(30, 41, 59, .86), rgba(39, 76, 142, .86)), url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
}

.counter-box h2 {
    color: #fff;
    font-size: 46px;
    margin-bottom: 4px;
}

.counter-box p {
    color: #dbe3f2;
    font-weight: 600;
    margin-bottom: 0;
}

.counter-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.counter-box:last-child {
    border-right: none;
}

@media(max-width:768px) {
    .counter-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
}


/* ===== QUALITY ASSURANCE ===== */
.quality-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 15.5px;
}

.quality-list li i {
    width: 32px;
    height: 32px;
    background: rgba(39, 76, 142, .08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.quality-list li span {
    font-weight: 400;
    color: var(--para);
    display: block;
    font-size: 14.5px;
    margin-top: 3px;
}

/* ===== PROCESS ===== */
.process-step {
    text-align: center;
    position: relative;
}

.process-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}

.process-step h4 {
    font-size: 15.5px;
}

.process-arrow {
    color: var(--primary-green);
    font-size: 22px;
}

@media(max-width:768px) {
    .process-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
}

/* ===== CERTIFICATES ===== */
.cert-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    transition: .3s;
    height: 100%;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.cert-card i {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.cert-card h3 {
    font-size: 18px;
}

.cert-card p {
    font-size: 14px;
    margin-bottom: 0;
}



/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--primary-blue);
    color: #fff;
    border-radius: var(--radius);
}

.final-cta h2 {
    color: #fff;
}



/* ===================================================
======================================================
======================================================
                AboutUs page end 
=======================================================
=======================================================
======================================================= */



/* ===================================================
======================================================
======================================================
                PCD Pharma Franchise page start 
=======================================================
=======================================================
======================================================= */

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
   padding: 50px 10px;
    background: linear-gradient(rgba(30, 41, 59, .82), rgba(39, 76, 142, .78)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.page-hero .breadcrumb-nav {
    color: #dbe3f2;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 18px;
}

.page-hero .breadcrumb-nav a {
    color: #dbe3f2;
}

.page-hero .breadcrumb-nav a:hover {
    color: var(--primary-green);
}

.page-hero h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 16px;
}

.page-hero p {
    color: #e7ecf5;
    font-size: 16px;
    max-width: 760px;
    margin: 0 auto 30px;
}

@media(max-width:768px) {
    .page-hero {
        padding: 30px 10px;
    }

    .page-hero h1 {
        font-size: 30px;
    }
}

/* ===== INTRO IMAGE ===== */
.intro-img-wrap {
    position: relative;
}

.intro-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.intro-badge {
    position: absolute;
    bottom: -28px;
    right: -20px;
    background: var(--primary-blue);
    color: #fff;
    padding: 22px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.intro-badge h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 0;
}

.intro-badge span {
    font-size: 13px;
    font-weight: 500;
}

/* ===== FEATURE / ICON CARDS ===== */
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px 24px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    transition: .35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(39, 76, 142, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    color: var(--primary-blue);
    transition: .35s;
}

.feature-card:hover .feature-icon {
    background: var(--primary-blue);
    color: #fff;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/* ===== FRANCHISE BENEFIT CARDS ===== */
.benefit-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    transition: .35s;
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(167, 207, 58, .18);
    color: #6f941f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 16px;
    margin-bottom: 0;
}

/* ===== PRODUCT CATEGORIES CIRCULAR ===== */
.range-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    height: 100%;
    border: 1px solid #eef1f6;
    display: block;
}

.range-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.range-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), #3a63b0);
    color: #fff;
    font-size: 34px;
    box-shadow: 0 8px 22px rgba(39, 76, 142, .25);
    transition: .35s;
}

.range-card:hover .range-circle {
    background: linear-gradient(135deg, var(--primary-green), #8fb52e);
}

.range-card h3 {
    font-size: 17px;
    margin-bottom: 0;
}

/* ===== PROCESS ===== */
.process-step {
    text-align: center;
    position: relative;
}

.process-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-sm);
}

.process-step h4 {
    font-size: 15px;
}

.process-arrow {
    color: var(--primary-green);
    font-size: 22px;
}

@media(max-width:768px) {
    .process-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
}

/* ===== WHY START FRANCHISE ===== */
.point-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.point-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(39, 76, 142, .08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.point-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.point-item p {
    font-size: 14.5px;
    margin-bottom: 0;
}

/* ===== WHY PRODUCTS DIFFERENT ===== */
.quality-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 15.5px;
}

.quality-list li i {
    width: 32px;
    height: 32px;
    background: rgba(39, 76, 142, .08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.quality-list li span {
    font-weight: 400;
    color: var(--para);
    display: block;
    font-size: 14.5px;
    margin-top: 3px;
}

/* ===== COUNTER ===== */
.counter-section {
    background: linear-gradient(rgba(30, 41, 59, .86), rgba(39, 76, 142, .86)), url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
}

.counter-box h2 {
    color: #fff;
    font-size: 46px;
    margin-bottom: 4px;
}

.counter-box p {
    color: #dbe3f2;
    font-weight: 600;
    margin-bottom: 0;
}

.counter-box {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.counter-box:last-child {
    border-right: none;
}

@media(max-width:768px) {
    .counter-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
}

/* ===== MARKETING SUPPORT CARDS ===== */
.support-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    transition: .35s;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.support-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(167, 207, 58, .18);
    color: #6f941f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.support-card h3 {
    font-size: 15.5px;
    margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testi-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
    margin: 8px;
}

.testi-card img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-stars {
    color: #f5a623;
    font-size: 14px;
}

.testi-card p {
    font-size: 15px;
}

/* ===== FAQ ===== */
.accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 16px;
    padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
    background: rgba(39, 76, 142, .07);
    color: var(--primary-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 15px;
    padding: 18px 22px;
}

/* ===== CALL TO ACTION ===== */
.franchise-cta {
    background: linear-gradient(rgba(30, 41, 59, .88), rgba(39, 76, 142, .85)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
    border-radius: var(--radius);
}

.franchise-cta h2 {
    color: #fff;
}

.franchise-cta p {
    color: #dbe3f2;
}

/* ===== CONTACT ===== */
.contact-info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
    border: 1px solid #eef1f6;
}

.contact-info-card i {
    width: 46px;
    height: 46px;
    background: rgba(39, 76, 142, .08);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eef1f6;
}

.contact-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef1f6;
}

.form-control {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(39, 76, 142, .12);
}

.map-wrap iframe {
    border-radius: var(--radius);
    width: 100%;
    height: 320px;
    border: 0;
    box-shadow: var(--shadow-sm);
}

@media(max-width:768px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }
}

/* ===================================================
======================================================
======================================================
                PCD Pharma Franchise page end 
=======================================================
=======================================================
======================================================= */


/* ===================================================
======================================================
======================================================
                Contact us  page start
=======================================================
=======================================================
======================================================= */

/* ===== HERO ===== */
    .page-hero {
      position: relative;
     padding: 50px 10px;
      background: linear-gradient(rgba(30, 41, 59, .84), rgba(39, 76, 142, .80)),
        url('https://images.unsplash.com/photo-1576602976047-174e57a47881?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
      color: #fff;
      text-align: center;
    }

    .page-hero .breadcrumb-nav {
      color: #dbe3f2;
      font-size: 14.5px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .page-hero .breadcrumb-nav a {
      color: #dbe3f2;
      transition: .25s;
    }

    .page-hero .breadcrumb-nav a:hover {
      color: var(--primary-green);
    }

    .page-hero h1 {
      color: #fff;
      font-size: 42px;
      margin-bottom: 16px;
    }

    .page-hero p {
      color: #e7ecf5;
      font-size: 16px;
      max-width: 680px;
      margin: 0 auto 30px;
    }
   .page-hero .contact-btn{
    border: 2px solid #fff;
    color: #fff;
   }
    .page-hero .contact-btn:hover {
      background: #fff;
      color: var(--primary-blue);

    }
    @media(max-width:768px) {
      .page-hero {
        padding: 30px  10px;
      }

      .page-hero h1 {
        font-size: 30px;
      }

      .page-hero p {
        font-size: 16px;
      }
    }

    /* ===== CONTACT INFO CARDS ===== */
    .info-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 40px 28px;
      text-align: center;
      height: 100%;
      box-shadow: var(--shadow-sm);
      border: 1px solid #eef1f6;
      transition: .35s ease;
    }

    .info-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-green);
    }

    .info-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(39, 76, 142, .08);
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 32px;
      transition: .35s;
    }

    .info-card:hover .info-circle {
      background: var(--primary-blue);
      color: #fff;
    }

    .info-card h3 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--primary-green);
      font-weight: 700;
      margin-bottom: 6px;
    }

    .info-card h4 {
      font-size: 18px;
      color: var(--dark-text);
      margin-bottom: 8px;
    }

    .info-card p {
      font-size: 15px;
      margin-bottom: 0;
    }

    /* ===== CONTACT FORM ===== */
    .form-section-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 42px;
      box-shadow: var(--shadow-sm);
      border: 1px solid #eef1f6;
      height: 100%;
    }

    .form-floating label {
      font-size: 14.5px;
      color: var(--para);
    }

    .form-floating>.form-control {
      border-radius: 10px;
      border: 1.5px solid #e2e8f0;
      padding: 14px 16px;
      font-size: 15px;
      font-family: 'Poppins', sans-serif;
      height: calc(3.4rem + 2px);
    }

    .form-floating>.form-control:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(39, 76, 142, .1);
    }

    .form-floating>.form-select {
      border-radius: 10px;
      border: 1.5px solid #e2e8f0;
      font-size: 15px;
      font-family: 'Poppins', sans-serif;
    }

    .form-floating>.form-select:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(39, 76, 142, .1);
    }

    .form-floating>.form-control:not(:placeholder-shown)~label,
    .form-floating>.form-control:focus~label,
    .form-floating>.form-select:focus~label,
    .form-floating>.form-select~label {
      color: var(--primary-blue);
      font-size: 12.5px;
    }

    .form-floating>textarea.form-control {
      height: 130px !important;
      resize: none;
    }

    .form-check-input:checked {
      background-color: var(--primary-blue);
      border-color: var(--primary-blue);
    }

    .form-check-input:focus {
      box-shadow: 0 0 0 3px rgba(39, 76, 142, .1);
    }

    .contact-illustration {
      position: relative;
    }

    .contact-illustration img {
      border-radius: var(--radius);
      width: 100%;
      box-shadow: var(--shadow-md);
    }

    .contact-highlight {
      position: absolute;
      bottom: -24px;
      left: -20px;
      background: var(--primary-green);
      color: var(--dark-text);
      padding: 18px 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
    }

    .contact-highlight h3 {
      font-size: 26px;
      margin-bottom: 0;
      color: var(--dark-text);
    }

    .contact-highlight span {
      font-size: 13px;
      font-weight: 600;
    }

    .reach-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark-text);
      margin-bottom: 14px;
    }

    .reach-list li i {
      width: 34px;
      height: 34px;
      background: rgba(39, 76, 142, .08);
      color: var(--primary-blue);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13.5px;
      flex-shrink: 0;
    }

    /* ===== MAP ===== */
    .map-section {
      background: #fff;
    }

    .map-wrap iframe {
      border-radius: var(--radius);
      width: 100%;
      height: 420px;
      border: 0;
      box-shadow: var(--shadow-sm);
    }

    .map-strip {
      background: var(--bg-light);
      border-radius: var(--radius);
      border: 1px solid #eef1f6;
      padding: 22px 28px;
      margin-top: 24px;
    }

    .map-strip-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .map-strip-item i {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: rgba(39, 76, 142, .08);
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
    }

    .map-strip-item h4 {
      font-size: 14px;
      margin-bottom: 2px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .map-strip-item p {
      font-size: 13.5px;
      margin-bottom: 0;
    }

    .map-strip-divider {
      width: 1px;
      background: #e2e8f0;
      height: 40px;
    }

    @media(max-width:576px) {
      .map-strip-divider {
        display: none;
      }

      .map-strip {
        text-align: center;
      }

      .map-strip-item {
        justify-content: center;
      }
    }

    /* ===== CTA BAND ===== */
    .cta-band {
      background: var(--primary-blue);
      padding: 70px 0;
    }

    .cta-band h2 {
      color: #fff;
      font-size: 30px;
      margin-bottom: 8px;
    }

    .cta-band p {
      color: #dbe3f2;
      max-width: 580px;
      margin: 0 auto 28px;
    }

    @media(max-width:768px) {
      h1 {
        font-size: 30px;
      }

      h2 {
        font-size: 25px;
      }

      h3 {
        font-size: 20px;
      }
    }
/* ===================================================
======================================================
======================================================
                Contact us  page end 
=======================================================
=======================================================
======================================================= */


/* ===================================================
======================================================
======================================================
                Product Page  page start
=======================================================
=======================================================
======================================================= */
/* ── HERO ── */
    .page-hero {
      position: relative;
      padding: 50px 10px;
      background:
        linear-gradient(rgba(30, 41, 59, .83), rgba(39, 76, 142, .80)),
        url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
      color: #fff;
      text-align: center;
    }

    .page-hero .breadcrumb-nav {
      color: #dbe3f2;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .page-hero .breadcrumb-nav a {
      color: #dbe3f2;
      transition: .25s;
    }

    .page-hero .breadcrumb-nav a:hover {
      color: var(--green);
    }

    .page-hero .breadcrumb-nav i {
      font-size: 10px;
      opacity: .7;
      margin: 0 8px;
    }

    .page-hero h1 {
      color: #fff;
      font-size: 44px;
      margin-bottom: 18px;
    }

    .page-hero p {
      color: #e7ecf5;
     font-size: 16px;
      max-width: 700px;
      margin: 0 auto 32px;
    }

    @media(max-width:768px) {
      .page-hero {
        padding: 30px 10px;
      }

      .page-hero h1 {
        font-size: 30px;
      }

      .page-hero p {
        font-size: 15.5px;
      }
    }

    /* ── GALLERY ── */
    .gallery-sec {
      padding: 80px 0 90px;
    }

    .sec-title {
      margin-bottom: 48px;
    }

    .sec-title h2 {
      position: relative;
      padding-bottom: 16px;
    }

    .sec-title h2::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 4px;
      background: var(--green);
      border-radius: 2px;
    }

    /* Product card */
    .prod-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid #eef1f6;
      transition: .35s ease;
      cursor: pointer;
      display: block;
    }

    .prod-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
    }

    .prod-card .img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1/1;
      background: var(--light);
    }

    .prod-card .img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .45s ease;
      display: block;
    }

    .prod-card:hover .img-wrap img {
      transform: scale(1.09);
    }

    /* zoom overlay on hover */
    .zoom-overlay {
      position: absolute;
      inset: 0;
      background: rgba(39, 76, 142, .52);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: .35s;
    }

    .zoom-overlay i {
      color: #94ba29;
      font-size: 30px;
    }

    .prod-card:hover .zoom-overlay {
      opacity: 1;
    }

    /* product name */
    .prod-name {
      padding: 13px 16px;
      font-weight: 700;
      font-size: 14.5px;
      color: var(--dark);
      text-align: center;
      border-top: 1px solid #f0f4fa;
    }

    /* GLightbox slim overrides */
    .glightbox-clean .gclose,
    .glightbox-clean .gnext,
    .glightbox-clean .gprev {
      height: 40px !important;
      width: 40px !important;
      background: #94ba29 !important;
      border-radius: 50% !important;
    }

/* ===================================================
======================================================
======================================================
                Product Page  page end 
=======================================================
=======================================================
======================================================= */


/* ===================================================
======================================================
======================================================
                Privacy Policy  page start
=======================================================
=======================================================
======================================================= */

    /* ===== HERO ===== */
    .pp-hero {
      position: relative;
      min-height: 380px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(120deg, rgba(19, 34, 68, 0.92) 15%, rgba(39, 76, 142, 0.82) 60%, rgba(19, 34, 68, 0.90) 100%),
        url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
      overflow: hidden;
    }

    .pp-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 85% 20%, rgba(167, 207, 58, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(167, 207, 58, 0.10) 0%, transparent 40%);
      pointer-events: none;
    }

    .pp-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.25);
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      backdrop-filter: blur(6px);
      margin-bottom: 22px;
    }

    .pp-breadcrumb a {
      color: #E2E8F0;
      text-decoration: none;
      transition: color .25s ease;
    }

    .pp-breadcrumb a:hover {
      color: var(--primary-green);
    }

    .pp-breadcrumb i {
      font-size: 11px;
      color: var(--primary-green);
    }

    .pp-breadcrumb .current {
      color: var(--primary-green);
      font-weight: 600;
    }

    .pp-hero h1 {
      color: var(--white);
      font-size: 35px;
      font-weight: 700;
      margin-bottom: 16px;
      position: relative;
    }

    .pp-hero h1::after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      border-radius: 4px;
      background: var(--primary-green);
      margin-top: 14px;
    }

    .pp-hero p {
      color: #CBD5E1;
      max-width: 720px;
      font-size: 16.5px;
      margin-bottom: 0;
    }

    /* ===== CONTENT CARD ===== */
    .pp-content-wrap {
      margin-top: -60px;
      position: relative;
      z-index: 3;
    }

    .pp-card {
      background: var(--white);
      border-radius: 20px;
      box-shadow: 0 20px 55px rgba(30, 41, 59, 0.08);
      padding: 52px;
      border: 1px solid #EEF2F7;
    }

    .pp-updated {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(167, 207, 58, 0.12);
      color: #5C7A1E;
      font-weight: 600;
      font-size: 13.5px;
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 30px;
    }

    .pp-updated i {
      color: var(--primary-green);
    }

    .pp-section {
      margin-bottom: 38px;
    }

    .pp-section:last-child {
      margin-bottom: 0;
    }

    .pp-section h2 {
      font-size: 24px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 2px solid #F1F5F9;
    }

    .pp-section h2 .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--primary-blue), #3562b3);
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .pp-section h3 {
      font-size: 19px;
      font-weight: 600;
      color: var(--heading);
      margin: 18px 0 10px;
    }

    .pp-section ul {
      padding-left: 0;
      list-style: none;
      margin-bottom: 0;
    }

    .pp-section ul li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 10px;
      color: var(--paragraph);
      line-height: 1.75;
    }

    .pp-section ul li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--primary-green);
      font-size: 13px;
    }

    .pp-toc {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 16px;
      padding: 26px 28px;
      position: sticky;
      top: 24px;
    }

    .pp-toc h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pp-toc h4 i {
      color: var(--primary-green);
    }

    .pp-toc a {
      display: block;
      color: var(--paragraph);
      text-decoration: none;
      font-size: 14px;
      padding: 8px 0;
      border-bottom: 1px dashed #E2E8F0;
      transition: all .25s ease;
    }

    .pp-toc a:last-child {
      border-bottom: none;
    }

    .pp-toc a:hover {
      color: var(--primary-blue);
      padding-left: 6px;
    }

    /* ===== INFO COLLECT ICON CARDS ===== */
    .pp-icon-card {
      background: var(--white);
      border-radius: 18px;
      padding: 34px 26px;
      text-align: center;
      height: 100%;
      border: 1px solid #EEF2F7;
      box-shadow: 0 10px 30px rgba(30, 41, 59, 0.05);
      transition: all .35s ease;
    }

    .pp-icon-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(39, 76, 142, 0.14);
      border-color: transparent;
    }

    .pp-icon-card .icon-circle {
      width: 74px;
      height: 74px;
      margin: 0 auto 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(39, 76, 142, 0.10), rgba(167, 207, 58, 0.14));
      transition: all .35s ease;
    }

    .pp-icon-card:hover .icon-circle {
      background: linear-gradient(135deg, var(--primary-blue), #3562b3);
    }

    .pp-icon-card .icon-circle i {
      font-size: 28px;
      color: var(--primary-blue);
      transition: all .35s ease;
    }

    .pp-icon-card:hover .icon-circle i {
      color: var(--white);
    }

    .pp-icon-card h3 {
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .pp-icon-card p {
      font-size: 14.5px;
      margin-bottom: 0;
    }

    /* ===== SECTION BG (Info We Collect / Data Protection) ===== */
    .pp-section-bg {
      background: var(--white);
      padding: 80px 0;
    }

    .pp-section-bg.alt {
      background: var(--light-bg);
    }

    .pp-eyebrow {
      display: inline-block;
      color: var(--primary-blue);
      background: rgba(39, 76, 142, 0.08);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .pp-section-title h2 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .pp-section-title p {
      max-width: 620px;
      margin: 0 auto;
    }

    /* ===== DATA PROTECTION FEATURE CARDS ===== */
    .pp-feature-card {
      background: var(--white);
      border-radius: 18px;
      padding: 32px 26px;
      height: 100%;
      position: relative;
      overflow: hidden;
      border: 1px solid #EEF2F7;
      transition: all .35s ease;
    }

    .pp-feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }

    .pp-feature-card:hover::before {
      transform: scaleX(1);
    }

    .pp-feature-card:hover {
      box-shadow: 0 20px 45px rgba(30, 41, 59, 0.10);
      transform: translateY(-6px);
    }

    .pp-feature-card .f-icon {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .pp-feature-card .f-icon i {
      font-size: 24px;
      color: var(--white);
    }

    .pp-feature-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .pp-feature-card p {
      font-size: 14.5px;
      margin-bottom: 0;
    }

    /* ===== CTA ===== */
    .pp-cta {
      background: linear-gradient(120deg, var(--primary-blue-dark), var(--primary-blue));
      border-radius: 24px;
      padding: 60px 40px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .pp-cta::before {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      background: rgba(167, 207, 58, 0.14);
      border-radius: 50%;
      top: -140px;
      right: -100px;
    }

    .pp-cta::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      bottom: -100px;
      left: -60px;
    }

    .pp-cta h2 {
      color: var(--white);
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 14px;
      position: relative;
    }

    .pp-cta p {
      color: #D7E1F5;
      max-width: 560px;
      margin: 0 auto 30px;
      position: relative;
    }

    .pp-cta .btn {
      padding: 13px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      position: relative;
      transition: all .3s ease;
    }

    .btn-cta-primary {
      background: var(--primary-green);
      border: 2px solid var(--primary-green);
      color: #1E293B;
    }

    .btn-cta-primary:hover {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }

    .btn-cta-outline {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.5);
      color: var(--white);
    }

    .btn-cta-outline:hover {
      background: var(--white);
      color: var(--primary-blue);
      border-color: var(--white);
    }

    @media(max-width:991px) {
      .pp-toc {
        position: static;
        margin-bottom: 32px;
      }
    }

    @media(max-width:767px) {
      .pp-hero {
        min-height: 320px;
        padding: 40px 0;
      }

      .pp-hero h1 {
        font-size: 30px;
      }

      .pp-card {
        padding: 30px 22px;
      }

      .pp-section h2 {
        font-size: 22px;
      }

      .pp-section-title h2 {
        font-size: 25px;
      }

      .pp-cta h2 {
        font-size: 25px;
      }

      .pp-cta {
        padding: 44px 22px;
      }

      .pp-content-wrap {
        margin-top: -40px;
      }
    }

/* ===================================================
======================================================
======================================================
                Privacy Policy  page end 
=======================================================
=======================================================
======================================================= */

/* ===================================================
======================================================
======================================================
                Terms and Conditions  page start
=======================================================
=======================================================
======================================================= */
  /* ===== HERO ===== */
    .tc-hero {
      position: relative;
      min-height: 400px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(120deg, rgba(19, 34, 68, 0.92) 15%, rgba(39, 76, 142, 0.82) 60%, rgba(19, 34, 68, 0.90) 100%),
        url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
      overflow: hidden;
    }

    .tc-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 85% 20%, rgba(167, 207, 58, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(167, 207, 58, 0.10) 0%, transparent 40%);
      pointer-events: none;
    }

    .tc-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.25);
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      backdrop-filter: blur(6px);
      margin-bottom: 22px;
    }

    .tc-breadcrumb a {
      color: #E2E8F0;
      text-decoration: none;
      transition: color .25s ease;
    }

    .tc-breadcrumb a:hover {
      color: var(--primary-green);
    }

    .tc-breadcrumb i {
      font-size: 11px;
      color: var(--primary-green);
    }

    .tc-breadcrumb .current {
      color: var(--primary-green);
      font-weight: 600;
    }

    .tc-hero h1 {
      color: var(--white);
      font-size: 35px;
      font-weight: 700;
      margin-bottom: 16px;
      position: relative;
    }

    .tc-hero h1::after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      border-radius: 4px;
      background: var(--primary-green);
      margin-top: 14px;
    }

    .tc-hero p {
      color: #CBD5E1;
      max-width: 720px;
      font-size: 16.5px;
      margin-bottom: 28px;
    }

    .tc-hero .btn {
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14.5px;
      transition: all .3s ease;
    }

    .btn-hero-primary {
      background: var(--primary-green);
      border: 2px solid var(--primary-green);
      color: #1E293B;
    }

    .btn-hero-primary:hover {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }

    .btn-hero-outline {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.5);
      color: var(--white);
    }

    .btn-hero-outline:hover {
      background: var(--white);
      color: var(--primary-blue);
      border-color: var(--white);
    }

    /* ===== CONTENT CARD ===== */
    .tc-content-wrap {
      margin-top: -60px;
      position: relative;
      z-index: 3;
    }

    .tc-card {
      background: var(--white);
      border-radius: 20px;
      box-shadow: 0 20px 55px rgba(30, 41, 59, 0.08);
      padding: 52px;
      border: 1px solid #EEF2F7;
    }

    .tc-updated {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(167, 207, 58, 0.12);
      color: #5C7A1E;
      font-weight: 600;
      font-size: 13.5px;
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 30px;
    }

    .tc-updated i {
      color: var(--primary-green);
    }

    .tc-section {
      margin-bottom: 38px;
    }

    .tc-section:last-child {
      margin-bottom: 0;
    }

    .tc-section h2 {
      font-size: 24px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 2px solid #F1F5F9;
    }

    .tc-section h2 .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--primary-blue), #3562b3);
      color: var(--white);
      font-size: 15px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .tc-section h3 {
      font-size: 19px;
      font-weight: 600;
      color: var(--heading);
      margin: 18px 0 10px;
    }

    .tc-section ul {
      padding-left: 0;
      list-style: none;
      margin-bottom: 0;
    }

    .tc-section ul li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 10px;
      color: var(--paragraph);
      line-height: 1.75;
    }

    .tc-section ul li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--primary-green);
      font-size: 13px;
    }

    .tc-toc {
      background: #fff;
      border: 1px solid #E2E8F0;
      border-radius: 16px;
      padding: 26px 28px;
      position: sticky;
      top: 24px;
    }

    .tc-toc h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tc-toc h4 i {
      color: var(--primary-green);
    }

    .tc-toc a {
      display: block;
      color: var(--paragraph);
      text-decoration: none;
      font-size: 14px;
      padding: 8px 0;
      border-bottom: 1px dashed #E2E8F0;
      transition: all .25s ease;
    }

    .tc-toc a:last-child {
      border-bottom: none;
    }

    .tc-toc a:hover {
      color: var(--primary-blue);
      padding-left: 6px;
    }

    /* ===== DISCLAIMER HIGHLIGHT BOX ===== */
    .tc-disclaimer-box {
      background: linear-gradient(135deg, rgba(39, 76, 142, 0.04), rgba(167, 207, 58, 0.06));
      border: 1px solid rgba(39, 76, 142, 0.14);
      border-left: 5px solid var(--primary-blue);
      border-radius: 16px;
      padding: 32px 34px;
      position: relative;
    }

    .tc-disclaimer-box .d-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .tc-disclaimer-box .d-icon i {
      color: var(--white);
      font-size: 22px;
    }

    .tc-disclaimer-box ul li::before {
      content: "\f071";
      color: var(--primary-blue);
    }

    /* ===== ICON CARDS (User Responsibilities) ===== */
    .tc-icon-card {
      background: var(--white);
      border-radius: 18px;
      padding: 34px 26px;
      text-align: center;
      height: 100%;
      border: 1px solid #EEF2F7;
      box-shadow: 0 10px 30px rgba(30, 41, 59, 0.05);
      transition: all .35s ease;
    }

    .tc-icon-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 45px rgba(39, 76, 142, 0.14);
      border-color: transparent;
    }

    .tc-icon-card .icon-circle {
      width: 74px;
      height: 74px;
      margin: 0 auto 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(39, 76, 142, 0.10), rgba(167, 207, 58, 0.14));
      transition: all .35s ease;
    }

    .tc-icon-card:hover .icon-circle {
      background: linear-gradient(135deg, var(--primary-blue), #3562b3);
    }

    .tc-icon-card .icon-circle i {
      font-size: 28px;
      color: var(--primary-blue);
      transition: all .35s ease;
    }

    .tc-icon-card:hover .icon-circle i {
      color: var(--white);
    }

    .tc-icon-card h3 {
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .tc-icon-card p {
      font-size: 14.5px;
      margin-bottom: 0;
    }

    /* ===== SECTION BG ===== */
    .tc-section-bg {
      background: var(--white);
      padding: 80px 0;
    }

    .tc-section-bg.alt {
      background: var(--light-bg);
    }

    .tc-eyebrow {
      display: inline-block;
      color: var(--primary-blue);
      background: rgba(39, 76, 142, 0.08);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .tc-section-title h2 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .tc-section-title p {
      max-width: 620px;
      margin: 0 auto;
    }

    /* ===== WHY READ FEATURE CARDS ===== */
    .tc-feature-card {
      background: var(--white);
      border-radius: 18px;
      padding: 32px 26px;
      height: 100%;
      position: relative;
      overflow: hidden;
      border: 1px solid #EEF2F7;
      transition: all .35s ease;
    }

    .tc-feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }

    .tc-feature-card:hover::before {
      transform: scaleX(1);
    }

    .tc-feature-card:hover {
      box-shadow: 0 20px 45px rgba(30, 41, 59, 0.10);
      transform: translateY(-6px);
    }

    .tc-feature-card .f-icon {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .tc-feature-card .f-icon i {
      font-size: 24px;
      color: var(--white);
    }

    .tc-feature-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .tc-feature-card p {
      font-size: 14.5px;
      margin-bottom: 0;
    }

    /* ===== CTA ===== */
    .tc-cta {
      background: linear-gradient(120deg, var(--primary-blue-dark), var(--primary-blue));
      border-radius: 24px;
      padding: 60px 40px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .tc-cta::before {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      background: rgba(167, 207, 58, 0.14);
      border-radius: 50%;
      top: -140px;
      right: -100px;
    }

    .tc-cta::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      bottom: -100px;
      left: -60px;
    }

    .tc-cta h2 {
      color: var(--white);
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 14px;
      position: relative;
    }

    .tc-cta p {
      color: #D7E1F5;
      max-width: 560px;
      margin: 0 auto 30px;
      position: relative;
    }

    .tc-cta .btn {
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14.5px;
      position: relative;
      transition: all .3s ease;
    }

    .btn-cta-primary {
      background: var(--primary-green);
      border: 2px solid var(--primary-green);
      color: #1E293B;
    }

    .btn-cta-primary:hover {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }

    .btn-cta-outline {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.5);
      color: var(--white);
    }

    .btn-cta-outline:hover {
      background: var(--white);
      color: var(--primary-blue);
      border-color: var(--white);
    }

    .btn-cta-ghost {
      background: rgba(255, 255, 255, 0.08);
      border: 2px solid rgba(255, 255, 255, 0.25);
      color: var(--white);
    }

    .btn-cta-ghost:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.5);
    }

    @media(max-width:991px) {
      .tc-toc {
        position: static;
        margin-bottom: 32px;
      }
    }

    @media(max-width:767px) {
      .tc-hero {
        min-height: 340px;
        padding: 40px 0;
      }

      .tc-hero h1 {
        font-size: 30px;
      }

      .tc-hero .btn {
        margin-bottom: 10px;
      }

      .tc-card {
        padding: 30px 22px;
      }

      .tc-section h2 {
        font-size: 22px;
      }

      .tc-section-title h2 {
        font-size: 25px;
      }

      .tc-cta h2 {
        font-size: 25px;
      }

      .tc-cta {
        padding: 44px 22px;
      }

      .tc-content-wrap {
        margin-top: -40px;
      }

      .tc-disclaimer-box {
        padding: 26px 22px;
      }
    }
/* ===================================================
======================================================
======================================================
                Terms and Conditions  page end 
=======================================================
=======================================================
======================================================= */
/* ===== FOOTER ===== */
footer {
    background: #101a2e;
    color: #aab4c8;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 22px;
}

footer ul a {
    color: #9aa6bd;
    transition: .5s all ease-in-out;
}

footer ul a :hover {
    color: var(--primary-green);
    padding-left: 4px;
}

footer .footer-logo img {
    border-radius: 10px;
}

footer .footer-logo span {
    color: var(--primary-green);
}

footer p {
    font-size: 14.5px;
    color: #9aa6bd;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 11px;
}

footer ul li a {
    color: #9aa6bd;
    font-size: 14.5px;
    transition: .3s;
}

footer ul li a:hover {
    color: var(--primary-green);
    padding-left: 4px;
}

footer .social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 8px;
    transition: .3s;
}

footer .social-icons a:hover {
    background: var(--primary-green);
    color: #101a2e;
}

.footer-bottom {
    background: #0b1322;
    padding: 18px 0;
    font-size: 13.5px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bottom a {
    color: #9aa6bd;
}

.footer-bottom a:hover {
    color: var(--primary-green);
}

/* ===== FLOATING BUTTONS ===== */
.float-btn {
    position: fixed;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 23px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
    z-index: 999;
    transition: .3s;
}

.float-whatsapp {
    bottom: 90px;
    right: 24px;
    background: #25D366;
}

.float-call {
    bottom: 24px;
    right: 24px;
    background: var(--primary-blue);
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, .15);
}

.mobile-fixed-buttons a {
    flex: 1;
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    transition: .3s;
}

.mobile-fixed-buttons a i {
    font-size: 16px;
}

.call-btn {
    background: #274C8E;
}

.whatsapp-btn {
    background: #25D366;
}

.enquiry-btn {
    background: #A7CF3A;
    color: #1E293B !important;
}

.call-btn:hover {
    background: #1d396a;
}

.whatsapp-btn:hover {
    background: #1ebe5b;
}

.enquiry-btn:hover {
    background: #8fb82d;
}

@media(min-width:992px) {
    .mobile-fixed-buttons {
        display: none;
    }

    .float-btn {
        display: none;
    }
}

/* Bottom space for mobile */
@media(max-width:991px) {
    body {
        padding-bottom: 70px;
    }

    .float-btn {
        display: none;
    }
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark-text);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-blue);
    color: #fff;
}

@media(max-width:768px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }
    .scroll-top {

    bottom: 70px;
    }
}
/* ===== FULL WIDTH MAP (Landing Page) ===== */
.map-full-wrap {
    width: 100%;
    line-height: 0;
}

.map-full-wrap iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-full-wrap iframe {
        height: 320px;
    }
}

/* ===== ENQUIRY POPUP MODAL ===== */
.enquiry-modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    padding: 8px;
}

.enquiry-modal-content .modal-header {
    align-items: flex-start;
    padding: 20px 20px 0;
}

.enquiry-modal-content .modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue, #1e293b);
}

.enquiry-modal-content .modal-body {
    padding: 20px 24px 28px;
}

.enquiry-modal-content .btn-close {
    margin-top: 6px;
}
