/* ============================================================
   SS Advertising - Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary-blue: #1059B6;
    --accent-blue: #2196F3;
    --light-blue: #E3F2FD;
    --dark-text: #1A1A2E;
    --gray-text: #555;
    --light-gray: #F5F7FA;
    --white: #ffffff;
    --border-color: #E0E0E0;
    --shadow: 0 4px 24px rgba(21, 101, 192, 0.10);
    --shadow-hover: 0 8px 32px rgba(21, 101, 192, 0.18);
    --transition: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
    --container-max: 1440px;
    --white-old: #FAFAFA;
    --gray: #333333;
    --gray-one: #606060;
    --service-border: #8383834D;
    --indi-card-border: #E9E9E9;
    --proven-bg: #FAFAFA;
    --font-heading: 'DM Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background: var(--white);
    overflow-x: hidden;
    font-size: 12px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

/* ---------- Container ---------- */
.container,
.container-fluid {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: var(--container-max);
}

/* ---------- Section Spacing ---------- */
.section-pad {
    padding: 80px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

/* ---------- Section Title ---------- */
.section-title {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--gray);
}

.section-title span {
    color: var(--primary-blue);
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.25);
}

.btn-primary-custom:hover {
    background: #0D47A1;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
}

.btn-primary-custom i {
    font-size: 16px;
}

a.btn-primary-custom.read {
    font-size: 16px;
    font-weight: 700;
    padding: 9px 22px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    width: 100%;
    padding: 40px 0 0px;
    position: relative;

    background: linear-gradient(to bottom, #eaf3ff 0%, #ffffff 100%);
    background-image: url('../images/bg.png');
    background-repeat: no-repeat;
    background-position: center 120px;
    /* background-size: 850px; */
    background-size: 100%;
}


/* Center content width control */
.hero-inner {
    /* max-width: 850px; */
    max-width: 100%;
    margin: auto;
    padding: 0 20px;
}

.hero-image-wrap {
    position: relative;
    margin-top: 70px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    transform: translateY(120px);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 2%;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -20px;
}

/* Heading */
.hero-section h1 {
    font-size: 50px;
    font-weight: 900;
    color: #000;
    line-height: 1.3;
}

.hero-section h1 span {
    color: var(--primary-blue);
}

/* Paragraph */
.hero-section p {
    font-size: 20px;
    color: #666;
    margin: 20px 0 30px;
    line-height: 1.6;
    width: 48%;
    margin: 0 auto;
    padding: 20px 0 30px 0;
}

/* Button */
.hero-btn {
    display: inline-block;
    background: #0b5ed7;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

.hero-btn:hover {
    background: #084298;
    color: #fff;
}

/* Stats Bar */
.stats-bar {
    background: var(--white-old);
    padding: 10px 0;
    position: relative;
}

.stats-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(to right,
            #ffffff 0%,
            #d4d4d4 50%,
            #ffffff 100%);
}

.stats-bar .stat-item {
    display: flex;
    align-items: center;
    /* gap: 14px; */
    gap: 30px;
}

.stat-icon {
    /* width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0; */
    /* width: 50px; */
    /* height: 50px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--light-blue); */
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 30px;
    flex-shrink: 0;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray);
    line-height: 1.1;
}

.stat-label {
    font-size: 18px;
    color: var(--gray-one);
    font-weight: 400;
}

.stat-tag {
    font-size: 34px;
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1.4;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border: 0.5px solid var(--service-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;

    /* ADD THIS */
    display: flex;
    flex-direction: column;
}

.main-service {
    padding: 0 8px;
}

.service-images img {
    padding: 0 18px;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--accent-blue);
}

.service-card-icon {
    padding: 18px 18px 0;
    color: var(--accent-blue);
    font-size: 22px;
}

.service-card-icon img {
    width: 40px;
    background: #1059B61A;
    padding: 5px;
    border-radius: 5px;
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    padding: 10px 18px 0;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin: 12px 0 0;
}

.service-card-body {
    padding: 14px 18px 20px;
}

.service-card-body ul li {
    font-size: 16px;
    color: var(--gray-one);
    padding: 0px 0;
    padding-left: 14px;
    position: relative;
    font-weight: 400;
}

.service-card-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gray-one);
    font-size: 16px;
    line-height: 1.4;
}

.service-card-footer {
    padding: 0 18px 18px;
    margin-top: auto;
}

/* ============================================================
   WHY BRANDS SECTION
   ============================================================ */
.why-brands-section {
    background: var(--white-old);
    padding: 60px 0;
}

/* Left side: heading + paragraph */
.why-brands-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--gray);
    text-align: left;
    line-height: 1.3;
}

.why-brands-content p {
    font-size: 20px;
    color: var(--gray-one);
    line-height: regular;
    max-width: 80%;
}

/* -------------------------------------------------------
   RIGHT SIDE: 2-column static logo grid (exact Image match)
   ------------------------------------------------------- */
.brand-logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
    /* Collapse borders so cells share 1px borders between them */
    /* border-top: 1px solid #E8E8E8; */
    /* border-left: 1px solid #E8E8E8; */
}

/* Each logo cell */
.brand-logo-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* border-right: 1px solid #E8E8E8; */
    /* border-bottom: 1px solid #E8E8E8; */
    background: var(--white-old);
    transition: background 0.25s ease, box-shadow 0.25s ease;
    /* min-height: 115px; */
    position: relative;
}

.brand-logo-cell:hover {
    background: #F7FAFF;
    z-index: 1;
    /* box-shadow: 0 2px 16px rgba(21, 101, 192, 0.08); */
}

/* Logo images */
.brand-logo-cell img {
    /* max-height: 54px; */
    /* max-width: 155px; */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.brand-logo-cell:hover img {
    transform: scale(1.06);
}

/* Empty last cell — subtle gray background */
.brand-logo-cell--empty {
    background: #fafafa;
    cursor: default;
}

.brand-logo-cell--empty:hover {
    background: #fafafa;
    box-shadow: none;
}

/* -------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------- */
@media (max-width: 991px) {
    .why-brands-content p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .why-brands-content p {
        max-width: 100%;
    }
    h2.presence-heading {
        font-size: 24px !important;
    }
h1 {
    font-size: 30px !important;
}
.hero-section {
    padding: 30px 0 30px 0 !important;
}
    .brand-logo-grid {
        margin-top: 36px;
        grid-template-columns: 1fr 1fr;
    }

    .brand-logo-cell {
        padding: 20px 18px;
        min-height: 85px;
    }

    .brand-logo-cell img {
        max-height: fit-content !important;
        max-width: 110px !important;
    }
}

/* Logo Scroll Container - Desktop (vertical) */
.logo-scroll-wrapper {
    display: flex;
    gap: 20px;
    height: 340px;
    overflow: hidden;
    justify-content: center;
}

.logo-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 160px;
}

.logo-col-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.logo-col:nth-child(1) .logo-col-inner {
    animation-name: scrollDown;
}

.logo-col:nth-child(2) .logo-col-inner {
    animation-name: scrollUp;
}

.logo-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex-shrink: 0;
}

.logo-item img {
    max-height: 44px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-section {
    background: var(--white);
}

section.industries-section.section-pad .container {
    padding-left: 0;
    padding-right: 0;
}

.industry-card {
    border: 1px solid var(--indi-card-border);
    border-radius: 5px;
    padding: 24px 22px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    height: 100%;
}

.industry-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.industry-icon {
    font-size: 2rem;
    color: #C9A84C;
    margin-bottom: 12px;
}

.industry-icon img {
    margin: 0 auto;
}

.industry-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.4;
}

/* Activities Gallery */
.activity-gallery {
    display: grid;
    /* 12 columns grid system for high precision */
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 140px;
    gap: 15px;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Image 2 mujab na specific spans */

/* Screen Photo - Top Left (Large) */
.screen-event {
    grid-column: span 7;
    grid-row: span 3;
}

/* Gift Photo - Top Middle */
.gift-event {
    grid-column: span 3;
    grid-row: span 2;
}

/* Tractor Photo - Top Right */
.tractor-event {
    grid-column: span 2;
    grid-row: span 1;
}

/* Garland Photo - Bottom Left */
.garland-event {
    grid-column: span 3;
    grid-row: span 3;
}

/* Gate Photo - Bottom Middle */
.gate-event {
    grid-column: span 4;
    grid-row: span 3;
}

/* Ribbon Cutting - Bottom Right (Moto Photo) */
.ribbon-event {
    grid-column: span 5;
    grid-row: 3 / 6;
    /* Aa grid niche sudhi khechashe */
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .activity-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

.custom-activity-container {
    max-width: 1400px;
    margin: auto;
    padding: 60px 20px;
}

.custom-activity-gray {
    background: #f9fafb;
}

/* Layout */
.custom-activity-row {
    display: flex;
    gap: 10px;
}

.custom-activity-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Image */
.custom-activity-img-box {
    width: 100%;
    height: 100%;
}

.custom-activity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 767px) {
    .custom-activity-row {
        flex-direction: column;
    }

    .custom-activity-hide-mobile {
        display: flex !important;
        flex-direction: row;
        gap: 10px;
    }

    .custom-activity-img-box {
        height: 200px;
    }

    .custom-activity-img-box img {
        object-fit: cover;
        border-radius: 8px;
    }
}

/* ============================================================
   PRESENCE SECTION
   ============================================================ */
.presence-section {
    background: var(--white);
}

.presence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* max-width: 900px; */
    margin: 0 auto;
}

.presence-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--indi-card-border);
    border-radius: 14px;
    padding: 24px;
    transition: var(--transition);
}

.presence-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-blue);
}

.presence-pin {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--accent-blue);
}

.presence-info {
    width: 65%;
}

.presence-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.presence-info p {
    font-size: 16px;
    color: var(--gray-one);
    line-height: 1.6;
}

.presence-vertical {
    flex-direction: row;
    /* 🔥 icon upar, text niche */
    align-items: end;
    /* 🔥 icon ne right side align kare */
}

.presence-vertical img {
    margin-bottom: 12px;
    /* icon ane text vachche gap */
}

/* ============================================================
   IN-STORE BRANDING
   ============================================================ */
.instore-section {
    background: linear-gradient(135deg, #F0F7FF 0%, var(--white) 100%);
}

.instore-title {
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-text);
}

.instore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instore-item {
    text-align: center;
}

.instore-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
    margin-bottom: 14px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.instore-item:hover img {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.instore-item span {
    font-size: 22px;
    font-weight: 600;
    color: #1E1A1F;
    display: flex;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--white);
    padding: 60px 0;
}

.cta-box {
    /* background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 100%); */
    /* background: linear-gradient(135deg, #FAFAFA 50%, #FAFAFA 100%); */
    background: linear-gradient(155deg, #102a8321 1%, #ffffff 55%, rgb(214 33 33 / 27%) 200%) !important;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    /* border: 1px solid #BBDEFB; */
}

/* 
.cta-box h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.cta-box h2 span {
    color: var(--accent-blue);
} */

.cta-box p {
    font-size: 22px;
    color: var(--gray-one);
    max-width: 75%;
    margin: 0 auto 30px;
    line-height: normal;
    font-weight: 400;
}

a.btn-primary-custom.contact {
    font-size: 22px;
}

a.btn-primary-custom.contact img {
    width: 35px;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* .site-footer {
    background: #0D1B2A;
    color: #ccc;
}

.footer-top {
    background: #111D2E;
    padding: 18px 0;
    text-align: center;
    font-size: 14px;
    color: #aaa;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-top strong {
    color: var(--white);
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    margin-bottom: 12px;
}

.footer-logo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 12.5px;
    color: #888;
    line-height: 1.6;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '›';
    color: var(--accent-blue);
    font-size: 16px;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #aaa;
}

.footer-contact-item i {
    color: var(--accent-blue);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: #666;
}

.footer-bottom a {
    color: var(--accent-blue);
} */

/* ============================================================
   MOBILE LOGO SCROLL (Horizontal)
   ============================================================ */
.logo-scroll-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.logo-row-mobile {
    display: flex;
    gap: 16px;
    width: max-content;
}

.logo-row-mobile .logo-item {
    width: 130px;
    flex-shrink: 0;
}

.logo-row-mobile.row-ltr {
    animation: scrollLTR 12s linear infinite;
}

.logo-row-mobile.row-rtl {
    animation: scrollRTL 12s linear infinite;
}

@keyframes scrollLTR {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRTL {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, #EBF5FF, #F5F7FA);
    padding: 70px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 14px;
}

.page-hero p {
    font-size: 12px;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark-text);
}

.about-content p {
    color: var(--gray-text);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-feature {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--light-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature-text h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature-text p {
    font-size: 13px;
    margin: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-detail-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-detail-body {
    padding: 30px;
}

.service-detail-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-detail-body p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 14px;
}

.service-feature-list li {
    font-size: 13.5px;
    color: var(--dark-text);
    padding: 5px 0 5px 20px;
    position: relative;
}

.service-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-wrap {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-text);
}

.form-control-custom {
    width: 100%;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--dark-text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    margin-bottom: 16px;
}

.form-control-custom:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-info-card {
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 20px;
    opacity: 0.9;
    margin-top: 2px;
}

.contact-info-item div h5 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item div p {
    font-size: 14px;
    margin: 0;
    opacity: 1;
}

/* ============================================================
   RESPONSIVE - LARGE DESKTOP (max 1200px)
   ============================================================ */
@media (max-width: 1200px) {

    /* .hero-section h1,
    .oga-hero-text h1 {
        font-size: 38px !important;
    } */
.glass-wrapper {
    bottom: 10% !important;
}
    .contact-benefits ul li {
        font-size: 16px;
    }

    .contact-benefits h2 {
        font-size: 20px !important;
    }
.bd-section h2 {
    font-size: 20px !important;
}
    .contact-main-row {
        gap: 0 !important;
    }

    .contact-form-card label {
        font-size: 18px !important;
    }
.timeline__event {
    width: 80vw !important;
}
.timeline__event__content {
    width: 100% !important;
}
.timeline__event__icon {
    width: 60px;
    height: 50px;
}
    .contact-form-card {
        width: 95% !important;
        padding: 20px !important;
    }

    .hero-section p,
    .oga-hero-text p {
        width: 60%;
        font-size: 16px;
    }

    a.btn-primary-custom.contact {
        font-size: 18px;
    }

    .mvc-display-text p {
        font-size: 16px !important;
    }

    .mvc-display-text1 h3 {
        font-size: 20px !important;
    }

    .mvc-display-image {
        flex: 1;
    }

    .mvc-display {
        gap: 30px !important;
    }

    .mvc-card p {
        font-size: 12px !important;
    }

    .mvc-card strong {
        font-size: 16px !important;
    }

    .stat-number {
        font-size: 30px;
    }

    .section-title,
    h2 {
        font-size: 36px !important;
    }

    p,
    .instore-item span {
        font-size: 16px !important;
    }

    .stat-tag {
        font-size: 28px;
    }

    .industry-name {
        font-size: 14px;
    }

    .footer-banner h2 {
        font-size: 18px !important;
    }
    .footer-col ul {
        font-size: 14px !important;
    }
}

/* ============================================================
   RESPONSIVE - TABLET (max 991px)
   ============================================================ */
@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 36px;
    }

    /* Hero */
    .hero-section {
        padding: 40px 0 0;
        background-size: 120%;
        background-position: center 100px;
    }

    .hero-section h1,
    .oga-hero-text h1 {
        font-size: 36px;
    }

    .hero-section p,
    .oga-hero-text p {
        width: 75%;
        font-size: 17px;
    }

    .hero-badge {
        font-size: 14px;
    }

    /* Stats */
    .stat-number {
        font-size: 24px;
    }

    .stat-tag {
        font-size: 20px;
    }

    .stat-label {
        font-size: 9px;
    }

    .stats-bar .stat-item {
        gap: 10px;
    }

    /* Services */
    .service-card-title {
        font-size: 19px;
    }

    /* Why brands */
    .why-brands-content p {
        max-width: 100%;
        font-size: 17px;
    }

    .why-brands-content h2 {
        font-size: 30px;
    }

    /* Instore */
    .instore-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instore-item span {
        font-size: 18px;
    }

    /* Presence */
    .presence-grid {
        grid-template-columns: 1fr;
    }

    .brand-logo-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    /* CTA */
    .cta-box p {
        font-size: 18px;
        max-width: 90%;
    }

    /* Navbar dropdown */
    .dropdown-menu {
        min-width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }

    .navbar-custom .dropdown:hover .dropdown-menu {
        transform: none !important;
    }

    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer */
    .footer-banner h2 {
        font-size: 24px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE (max 767px)
   ============================================================ */
@media (max-width: 767px) {
    .section-pad {
        padding: 48px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 28px;
    }
.legacy-section p {
    max-width: 100% !important;
}
    /* Hero */
    .hero-section {
        padding: 70px 0 0;
        text-align: center;
        background-size: cover;
        background-position: center top;
    }

    .hero-inner {
        padding: 0 16px;
    }

    .hero-section h1,
    .oga-hero-text h1 {
        font-size: 26px;
        line-height: 1.35;
    }

    .hero-section p,
    .oga-hero-text p {
        width: 100%;
        font-size: 12px;
        padding: 14px 0 22px 0;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    a.btn-primary-custom.contact {
        font-size: 16px;
    }

    a.btn-primary-custom.contact img {
        width: 24px;
    }

    /* Hero image */
    .hero-image-wrap {
        transform: translateY(40px);
        margin-top: 30px;
    }

    /* Stats bar */
    .stats-bar .stat-item {
        /* justify-content: center; */
        justify-content: flex-start;
        gap: 16px;
        margin-bottom: 8px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-tag {
        font-size: 20px;
        padding-top: 10px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    /* Logo scroll */
    .logo-scroll-wrapper {
        display: none;
    }

    .logo-scroll-mobile {
        display: flex;
    }

    /* Services */
    .service-card {
        margin-bottom: 0;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-body ul li {
        font-size: 14px;
    }

    a.btn-primary-custom.read {
        font-size: 14px;
        padding: 8px 18px;
    }

    /* Why brands */
    .why-brands-content h2 {
        font-size: 24px;
    }

    .why-brands-content p {
        font-size: 12px;
    }

    .brand-logo-grid {
        margin-top: 0px;
        grid-template-columns: 1fr 1fr;
        gap: 0px 0;
    }

    .brand-logo-cell {
        padding: 16px 14px;
        min-height: 75px;
    }

    /* Industries */
    .industry-name {
        font-size: 12px;
    }

    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .custom-activity-container {
        padding: 40px 16px;
    }

    /* Presence */
    .presence-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .presence-card {
        padding: 18px;
    }

    .presence-info h4 {
        font-size: 16px;
    }

    .presence-info p {
        font-size: 14px;
    }

    .presence-pin {
        width: 55px;
        height: 55px;
    }

    /* Instore */
    .instore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .instore-item span {
        font-size: 16px;
    }

    /* CTA */
    .cta-box {
        padding: 36px 18px;
    }

    .cta-box p {
        font-size: 12px;
        max-width: 100%;
        margin-bottom: 22px;
    }

    /* Footer */
    .footer-banner h2 {
        font-size: 18px;
        line-height: 1.5;
    }

    .footer-info {
        flex-direction: column;
    }

    .footer-col h3 {
        font-size: 17px;
    }

    .copyright {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .copyright p {
        font-size: 14px;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrap {
        padding: 24px;
        margin-bottom: 24px;
    }

    /* Navbar dropdown */
    .dropdown-grid {
        grid-template-columns: 1fr;
    }

    .navbar-custom .dropdown-menu {
        min-width: auto;
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background: var(--light-gray);
        border-radius: 8px;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
    .section-title {
        font-size: 26px !important;
    }

    .hero-section h1,
    .oga-hero-text h1 {
        font-size: 28px;
    }

    .hero-section p,
    .oga-hero-text p {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 11px;
    }

    /* Stats - stack vertically */
    .stats-bar .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-tag {
        font-size: 18px;
        text-align: center;
    }

    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr;
    }

    /* Instore */
    .instore-grid {
        grid-template-columns: 1fr;
    }

    /* Presence */
    .presence-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .presence-info {
        width: 100%;
    }

    .presence-vertical {
        flex-direction: column;
        align-items: center;
    }

    /* Why brands logos */
    .brand-logo-cell {
        padding: 12px 10px;
        min-height: 65px;
    }

    .brand-logo-cell img {
        max-height: 35px;
        max-width: 90px;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0;
    }

    .cta-box {
        padding: 28px 14px;
    }

    /* Footer banner */
    .footer-banner h2 {
        font-size: 16px;
    }

    .footer-banner {
        padding: 16px;
    }

    .social-box {
        margin-top: 16px;
        gap: 16px;
    }

    .social-box img {
        width: 22px;
    }

    .contact-item {
        font-size: 14px;
    }
}

@media screen and (width: 1440px) {
    .brand-logo-grid {
        gap: 20px 0;
    }


    .why-brands-content h2 {
        text-align: left !important;
    }
}

.stat-tag br {
    display: block;
}

@media (max-width: 576px) {
    .stat-tag br {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 30px 0;
    }

    .container {
        width: 100% !important;
    }

    .faq-question h3 {
        font-size: 22px;
    }

    .bg-blur-element-left {
        width: 200px !important;
        height: 200px !important;
    }

    .bg-blur-element {
        display: block !important;
        width: 300px !important;
        height: 100% !important;
        top: -85px !important;
        /* filter: blur(60px); */
        opacity: 1;
    }
}

@media (max-width: 767px) {

    .cta-box .section-title br,
    .instore-section .section-title br , .faq-heading .section-title br ,.hero-inner h1 br , .legacy-section .section-title br , .innovation-left .section-title br , .marketing-section .container .heading br , .activities-hero-content h2 br{
        display: none;
    }

    .faq-question h3 {
        font-size: 20px !important;
    }
}

.hero-section {
    position: relative;
    overflow: visible !important;
    z-index: 10;
}

/* Background Blue Blur Styling */
.bg-blur-element {
    position: absolute;
    top: -120px;
    /* right: -150px; */
    right: 0;
    width: 900px;
    height: 900px;
    background-image: url('../images/bg-blue.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.9;
    pointer-events: none;
}


.instore-section {
    position: relative;
    overflow: visible;
    z-index: 10;
}

.oga-hero {
    position: relative;
    overflow: visible;
    z-index: 10;
}

/* Background Blue Blur Styling */
.bg-blur-element-left {
    position: absolute;
    /* top: -120px;  */
    margin-top: -8%;
    /* right: -150px; */
    left: 0;
    width: 800px;
    height: 800px;
    background-image: url('../images/blue-bg-left.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.7;
    pointer-events: none;
}

section.cta-section.on-ground .cta-box p {
    max-width: 80%;
    padding-bottom: 2%;
}

.faq-section {
    padding: 10px 20px 60px 20px;
    display: flex;
    justify-content: center;
}

.faq-container {
    max-width: 900px;
    width: 100%;
}

.faq-heading {
    text-align: center;
    padding-top: 20px;
}

.faq-badge {
    display: inline-block;
    margin-top: 40px;
    background: var(--block-bg);
    color: var(--client-text);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.faq-heading h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--heading-main);
}

.faq-heading h1 span {
    color: var(--heading-red);
}

.faq-heading p {
    font-size: 20px;
    color: var(--para);
    max-width: 872px;
    margin: 20px auto 40px;
}

.faq-top-divider {
    border-top: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.faq-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* FAQ Item */
.faq-item .faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--faq-heading);
}

.faq-question i {
    font-size: 16px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(135deg);
}

.faq-answer {
    margin-top: 10px;
    margin-left: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.faq-answer li {
    margin-bottom: 6px;
    list-style: disc;
    color: #606060;
}

.faq-divider {
    border-bottom: 1px solid #e5e5e5;
    margin-top: 20px;
}

/* Button */
.faq-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.faq-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

.faq-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #fff;
    stroke-width: 1;
}

.faq-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding: 10px 24px;
}

.faq-btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.faq-btn-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.features-section {
    background: var(--proven-bg);
    padding: 70px 20px;
    position: relative;
    z-index: 99;
}

.features-container {
    /* max-width: 1100px; */
    margin: auto;
}

.features-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 50px;
    line-height: 1.35;
}

.features-heading span {
    color: #1e5bb8;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    /* fixed left width like design */
    gap: 60px;
    align-items: flex-start;
}

/* LEFT LIST */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    background: linear-gradient(to right, rgba(244, 244, 244, 0.90) 0%, rgba(244, 244, 244, 0.70) 50%, rgba(244, 244, 244, 0.10) 100%) !important;
    /* inactive grey */
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b;
    /* dark text */
    line-height: 1.5;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    border-right: none;
}

.feature-item:hover {
    background: #ededed;
}

/* ACTIVE */
.feature-item.active {
    background: #F4F4F4;
    border: 1px solid #1059B64D;
}

/* RIGHT CONTENT */
.features-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 14px;
}

.features-content img {
    width: 100%;
    max-width: 430px;
    border-radius: 6px;
    margin-bottom: 14px;
    display: block;
}

.features-content p {
    font-size: 20px;
    color: #6f6f6f;
    line-height: 1.6;
    max-width: fit-content;
}

/* ===============================
   MOBILE RESPONSIVE
================================*/
@media (max-width: 991px) {

    .features-section {
        padding: 50px 16px;
    }

    .features-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    /* GRID STACK */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* RIGHT CONTENT FIRST ON MOBILE */
    .features-content {
        /* order: -1; */
        text-align: center;
    }

    .features-content h3 {
        font-size: 22px;
    }

    .features-content img {
        max-width: 100%;
        margin: 0 auto 12px;
    }

    .features-content p {
        font-size: 16px;
        max-width: 100%;
    }

    /* FEATURE LIST MOBILE STYLE */
    .feature-item {
        font-size: 12px;
        padding: 14px 16px;
        border-radius: 6px;
    }

    .features-list {
        gap: 10px;
    }
}

.oga-hero {
    width: 100%;
    /* min-height: 420px; */
    min-height: 50vh;
    /* background: linear-gradient(to bottom, #eaf3ff 0%, #ffffff 100%); */
    /* background-image: url('../images/services/bg-main.png'); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 140px 0 60px;
    /* 80px → 140px કર્યું */
    position: relative;
    /* overflow: hidden; */
}

.oga-hero .container {
    position: relative;
    z-index: 2;
}

.oga-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.oga-hero-text {
    flex: 1;
    /* max-width: 45%; */
}

.oga-hero-text h1 {
    font-size: 50px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 18px;
    line-height: 1.2;
}

.oga-hero-text p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 85%;
}

.oga-hero-image {
    flex: 1;
    max-width: 35%;
}

.oga-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    max-height: 320px;
}

@media (max-width: 768px) {
    /* .oga-hero-inner {
        flex-direction: row;
    } */

    .oga-hero-text h1 {
        font-size: 1.8rem;
    }

    .oga-hero-image {
        max-width: 100%;
    }

    .oga-hero {
        padding: 50px 0 60px;
    }

    .oga-hero-text p {
        margin-bottom: 0px;
        padding: 0 0 22px 0 !important;
    }

}

.mvc-features-wrap {
    margin-top: 40px;
}

.mvc-display {
    display: flex;
    /* gap: 40px; */
    gap: 0;
    align-items: center;
    margin-bottom: 24px;
    /* background: #fff; */
    border-radius: 12px;
    /* padding: 30px 35px; */
    padding: 30px 0px;
    /* border: 1px solid #e9e9e9; */
}

.mvc-display-image {
    /* flex: 0 0 320px; */
    flex: 0.7;
}

.mvc-display-image img {
    /* width: 100%; */
    width: auto;
    border-radius: 10px;
    object-fit: cover;
    height: 260px;
}

.mvc-display-text {
    flex: 1;
}

.mvc-display-text1 h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.mvc-display-text p {
    font-size: 20px;
    color: var(--gray-one);
    line-height: 1.5;
    max-width: 100%;
    font-weight: 400;
}

.mvc-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mvc-cards.gris-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mvc-card {
    background: linear-gradient(to right, rgba(244, 244, 244, 0.90) 0%, rgba(244, 244, 244, 0.70) 50%, rgba(244, 244, 244, 0.10) 100%) !important;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 20px 23px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mvc-card:hover {
    border-color: #1059B64D;
    background: #eef4ff;
}

.mvc-card.active {
    border-color: #1059B64D;
    background: #fff;
}

.mvc-card strong {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    display: block;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mvc-card p {
    font-size: 18px;
    color: var(--gray-one);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 991px) {
    .mvc-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvc-cards.gris-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvc-display {
        flex-direction: row;
        gap: 20px;
    }

    .mvc-display-image {
        /* flex: unset; */
        /* width: 100%; */
        flex: 1;
    }

    .mvc-display-text {
        flex: 1;
        text-align: justify;
    }

    .mvc-display-image img {
        height: 200px;
    }

    .mvc-display-text1 h3 {
        font-size: 20px;
    }

    .mvc-display-text p {
        font-size: 16px !important;
    }

    .mvc-card p {
        font-size: 16px !important;
    }

    .mvc-card strong {
        font-size: 18px !important;
    }

    .mvc-features-wrap {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .mvc-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .mvc-cards.gris-main {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .mvc-display {
        padding: 16px;
    }

    .mvc-card {
        padding: 14px 12px;
    }

    .mvc-card p {
        font-size: 12px !important;
    }

    .mvc-display-text1 h3 {
        font-size: 20px;
    }

    .mvc-display-text p {
        font-size: 16px !important;
    }

    .mvc-card strong {
        font-size: 13px;
    }

    .features-section {
        padding: 50px 16px 0px 16px;
    }

    .mvc-features-wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .mvc-display {
        flex-direction: column-reverse;
    }

    .mvc-display-text {
        order: -1;
    }

    .faq-section {
        padding: 0 20px;
    }
}

p.text-center.main-contact {
    padding: 0 0 30px 0;
}

.map-section {
    padding: 40px 0;
}

.map-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
}

.map-address {
    margin-top: 14px;
    font-size: 16px;
    color: var(--gray-one);
    max-width: 600px;
}

/* Mobile */
@media (max-width: 767px) {
    .map-container {
        height: 260px;
    }
    section.industries-section.section-pad {
        overflow: hidden !important;
    }
.oga-hero-text h1 {
    font-size: 28px !important;
}
    .map-title {
        font-size: 18px;
    }
.index-main {
    top: -20px !important;
}
    .map-address {
        font-size: 14px;
    }
    .oga-hero-inner {
        flex-direction: column;
    }
}

.contact-hero-section {
    background: linear-gradient(135deg, #eaf3ff 0%, #ffffff 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero-section .bg-blur-element {
    top: -120px;
    right: 0;
}

.contact-hero-section h1 {
    font-size: 50px;
    font-weight: 900;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-hero-section h1 span {
    color: var(--primary-blue);
}

.contact-hero-section p.main-contact {
    font-size: 20px;
    color: #666;
    max-width: 580px;
    margin: 0 auto 30px;
    line-height: 1.6;
    padding: 0 0 10px 0;
}

/* ============================================================
   CONTACT MAIN SECTION (2-column layout)
   ============================================================ */
.contact-main-section {
    background: #fff;
    padding: 70px 0;
}

.contact-main-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    justify-items: flex-end;
}

/* LEFT SIDE — Benefits List */
.contact-benefits h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.3;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.contact-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 18px;
    color: var(--gray-one);
    line-height: 1.5;
    font-weight: 400;
}

.contact-benefits ul li .check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-benefits ul li .check-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* RIGHT SIDE — Contact Form Card */
.contact-form-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    padding: 40px 36px;
    box-shadow: 0 4px 30px rgba(21, 101, 192, 0.08);
    width: 90%;
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

.contact-form-card label {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 8px;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card textarea , select.brandingTypeApi {
    width: 100%;
    border: 1px solid #E7E7E7;
    border-radius: 8px;
    padding: 13px 16px;
    /* font-family: var(--font-main); */
    font-size: 15px;
    color: #767676;
    background: #f9f9f9;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form-card input[type="text"]:focus,
.contact-form-card input[type="email"]:focus,
.contact-form-card textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16, 89, 182, 0.10);
}

.contact-form-card textarea {
    resize: none;
    min-height: 110px;
}

/* Phone field with flag */
/* .phone-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.phone-input-wrap:focus-within {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16, 89, 182, 0.10);
} */

/* .phone-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 14px;
    border-right: 1.5px solid #e0e0e0;
    font-size: 14px;
    color: var(--gray);
    white-space: nowrap;
    background: #f3f3f3;
    flex-shrink: 0;
}

.phone-flag img {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
}

.phone-input-wrap input[type="tel"] {
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 13px 16px;
    /* font-family: var(--font-main); *
    font-size: 15px;
    color: var(--gray);
    outline: none;
    width: 100%;
    box-shadow: none !important;
} */

/* Terms checkbox */
.terms-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.terms-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
    flex-shrink: 0;
}

.terms-row label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    cursor: pointer;
}

.terms-row label a {
    color: var(--gray);
    font-weight: 400;
    text-decoration: underline;
}

/* Submit Button */
.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 32px;
    /* font-family: var(--font-main); */
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(21, 101, 192, 0.25);
}

.btn-contact-submit:hover {
    background: #0D47A1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
}

.btn-contact-submit svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   PRESENCE SECTION
   ============================================================ */
.presence-section {
    background: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .contact-main-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero-section h1 {
        font-size: 36px;
    }

    .contact-hero-section p.main-contact {
        font-size: 16px;
    }

    .contact-benefits h2 {
        font-size: 22px;
    }

    .contact-benefits ul li {
        font-size: 16px;
    }
}
@media  (min-width: 768px) and (max-width: 992px) {
  .timeline__event {
    flex-direction: row-reverse !important;
    width: 90%;
  }

  .timeline__event:nth-child(odd) {
    flex-direction: row !important;
  }
  .timeline__event__icon {
    margin: 10px !important;
  }
  .timeline__event__icon{
    width: 60px;
    display: none;
    height: 50px;
  }
  .oga-hero-inner {
        flex-direction: row;
    }
}
@media screen and (width: 768px) {
    .contact-main-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-benefits h2 {
        font-size: 18px !important;
    }

    .contact-benefits ul li {
        font-size: 14px;
    }
  /* .timeline__event {
    flex-direction: column;
    width: 90%;
  }

  .timeline__event:nth-child(odd) {
    flex-direction: column;
  } */
    .contact-form-card label {
        font-size: 14px !important;
    }

    .contact-form-card input[type="text"],
    .contact-form-card input[type="email"],
    .contact-form-card textarea {
        font-size: 13px;
        padding: 10px;
    }

    .btn-contact-submit {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding: 90px 0 40px;
    }

    .contact-main-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        width: 100% !important;
        margin-top: 20px;
    }

    .btn-contact-submit {
        font-size: 13px;
    }

    .contact-benefits ul li {
        font-size: 14px;
    }

    .contact-form-card label {
        font-size: 14px !important;
    }

    .contact-form-card input[type="text"],
    .contact-form-card input[type="email"],
    .contact-form-card textarea {
        font-size: 13px;
        padding: 10px;
    }

    .contact-hero-section h1 {
        font-size: 28px;
    }

    .contact-hero-section p.main-contact {
        font-size: 14px;
    }

    .contact-main-section {
        padding: 40px 0;
    }

    .contact-form-card {
        padding: 26px 18px;
    }

    .contact-benefits h2 {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .contact-benefits ul li {
        font-size: 14px;
    }
}

section.hero-section.contact-us-page {
    background-image: none;
}

.iti {
    width: 100%;
}

.iti__flag-container {
    padding: 0 8px;
}

.iti input {
    width: 100%;
    height: 48px;
    /* border-radius: 10px;
  border: 1px solid #e7e7e7;
  background: #f9f9f9;
  font-size: 15px; */
    border: 1px solid #E7E7E7;
    border-radius: 10px;
    background: #f9f9f9;
    transition: all 0.25s ease;
    outline: none;
    font-size: 15px;
}

.iti input:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(16, 89, 182, 0.15) !important;
    background: #ffffff !important;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 20px auto;
}

/* EVENT */
.timeline__event {
  display: flex;
  align-self: center;
  position: relative;
  width: 60vw;
  margin: 20px 0;
  border-radius: 6px;
}

/* ALTERNATE LEFT RIGHT */
.timeline__event:nth-child(odd) {
  flex-direction: row-reverse;
}

/* CONTENT BOX */
.timeline__event__content {
  background: #fff;
  padding: 20px;
  width: calc(40vw - 84px);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 30px 60px -12px rgba(50,50,93,0.25),
              0 18px 36px -18px rgba(0,0,0,0.3),
              0 -12px 36px -8px rgba(0,0,0,0.025);
}

/* DATE BOX */
.timeline__event__date {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 1.2rem;
  font-weight: 600;
  white-space: nowrap;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 6px 0 0 6px;
}

/* ICON DOT */
.timeline__event__icon {
  width: 40px;
  height: 40px;
  background: #e7eef7;
  border-radius: 50%;
  margin: 0 20px;
  position: relative;
}

/* CENTER LINE */
.timeline__event__icon::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #e7eef7;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* TITLE */
.timeline__event__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
}

/* TYPE 2 COLORS */
.timeline__event--type2 .timeline__event__date {
  background: var(--primary-blue);
  color: #fff;
}

.timeline__event--type2 .timeline__event__icon {
  background: #e7eef7;
}

.timeline__event--type2 .timeline__event__title {
  color: var(--gray);
}
.timeline__event__description p {
    color: var(--gray-one);
    font-size: 14px;
}
/* TYPE 3 COLORS */
.timeline__event--type3 .timeline__event__date {
  background: #24b47e;
  color: #aff1b6;
}

.timeline__event--type3 .timeline__event__icon {
  background: #aff1b6;
}

.timeline__event--type3 .timeline__event__title {
  color: #24b47e;
}

/* RESPONSIVE */
@media (max-width: 786px) {
  .timeline__event {
    flex-direction: column;
    width: 90%;
  }

  .timeline__event:nth-child(odd) {
    flex-direction: column;
  }

  .timeline__event__content {
    width: 100%;
    border-radius: 6px;
  }

  .timeline__event__date {
    border-radius: 0;
    padding: 10px;
  }

  .timeline__event__icon {
    margin: 0 auto 10px;
  }

  .timeline__event__icon::before {
    display: none;
  }
}
        .why-state-section {
            background: #fff;
            padding: 60px 0;
        }

        .why-brands-content h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 18px;
            color: #2c2c2c;
            line-height: 1.3;
        }

        .why-brands-content p {
            font-size: 18px;
            color: #666;
            line-height: 1.7;
            max-width: 90%;
        }

        /* ===============================
           RIGHT SIDE LOGO GRID
           =============================== */
        .state-main {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .state-main .state-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 10px;
            height: 100%;
            border: 1px solid #f0f0f0;
            transition: 0.25s ease;
        }

        .state-main .state-logo:hover {
            background: #fff;
        }

        .state-main .state-logo img {
            /* max-width: 130px; */
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .state-main .state-logo:hover img {
            transform: scale(1.05);
            cursor: pointer;
        }

        /* ===============================
           RESPONSIVE
           =============================== */
        @media (max-width: 991px) {
            .state-main {
                margin-top: 36px;
                grid-template-columns: repeat(3, 1fr);
            }

            .why-brands-content p {
                max-width: 100%;
            }
        }

        @media (max-width: 767px) {
            .state-main {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }

            .state-main .state-logo {
                height: 100%;
            }

            .state-main .state-logo img {
                /* max-width: 100px; */
                max-height: 100%;
            }
        }
        .india-flag {
  width: 45px;
  height: 30px;
  object-fit: cover;
  border-radius: 2px;
}
.presence-heading {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
