/********** Template CSS **********/
/* =========================================
   NATHU DOODH WALA THEME
========================================= */

:root {
    --primary: #FFD21A;
    --secondary: #F7F3FA;
    --light: #FFFFFF;
    --dark: #21002F;

    --purple: #3B0757;
    --purple-dark: #21002F;
    --gold: #FFD21A;
}

/* .font-secondary {
    font-family: 'Pacifico', cursive;
} */

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    color: #FFFFFF;
}

.border-inner {
    position: relative;
}

.border-inner * {
    position: relative;
    z-index: 1;
}

.border-inner::before {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: none;
    border: 1px solid var(--light);
    z-index: 0;
}

.btn-square {
    width: 40px;
    height: 40px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 0;
    z-index: 99;
    background: #168a5b;
}

.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.service::after,
.contact::after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 45px);
    top: 135px;
    left: 0;
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/service.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
}

.contact::after {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.bg-offer {
    background: linear-gradient(rgba(43, 40, 37, .9), rgba(43, 40, 37, .9)), url(../img/offer.jpg) center center no-repeat;
    background-size: cover;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
    filter: blur(5px)
}

.team-item .team-overlay {
    transition: .5s;
    opacity: 0;
}

.team-item:hover .team-overlay {
    opacity: 1;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 2px;
    width: 10px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-item {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    opacity: 1;
}

.bg-img {
    background: linear-gradient(rgba(43, 40, 37, .5), rgba(43, 40, 37, .5)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

/* =========================================================
   PREMIUM SINGLE HEADER
========================================================= */

.premium-single-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 9999;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.045);
}


/* =========================================================
   MAIN NAVBAR
========================================================= */

.premium-single-navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}


/* =========================================================
   LOGO
========================================================= */

.premium-brand {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    flex-shrink: 0;
}

.premium-site-logo {
    width: auto;
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.premium-logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--purple-dark, #5b287a);
}


/* Hide mobile social icons on Desktop */
.mobile-social-icons {
    display: none;
}


/* =========================================================
   MENU
========================================================= */

.premium-menu {
    display: flex !important;
    align-items: center;
}

.premium-menu-inner {
    display: flex;
    align-items: center;
    gap: 4px;
}


/* =========================================================
   MENU LINKS
========================================================= */

.premium-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 82px;
    padding: 0 18px;

    color: #303030 !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .25px;
    text-transform: uppercase;

    text-decoration: none !important;
    white-space: nowrap;

    transition: color .25s ease, background .25s ease;
}


/* Underline */

.premium-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 17px;
    width: 0;
    height: 2px;
    background: var(--purple-dark, #5b287a);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width .25s ease;
}


/* Hover & Active */

.premium-nav-link:hover,
.premium-nav-link.active {
    color: var(--purple-dark, #5b287a) !important;
}

.premium-nav-link:hover::after,
.premium-nav-link.active::after {
    width: 24px;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.premium-menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    transition: all .25s ease;
}

.premium-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #333333;
    border-radius: 10px;
    transition: all .25s ease;
}

.premium-menu-toggle:hover {
    border-color: var(--purple-dark, #5b287a);
}

.premium-menu-toggle:hover span {
    background: var(--purple-dark, #5b287a);
}


/* =========================================================
   TABLET & MOBILE RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .premium-single-navbar {
        min-height: 75px;
        display: flex;
        align-items: center;
        justify-content: space-between; /* Left: Toggle, Center: Logo, Right: Social */
    }

    /* Logo - Center Aligned & Larger Size */
    .premium-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .premium-site-logo {
        max-width: 170px; /* Bada logo size */
        height: 65px;     /* Badi height */
    }

    .premium-logo-text {
        font-size: 19px;
    }

    /* Toggle Button - Left Side */
    .premium-menu-toggle {
        display: flex;
        z-index: 2;
    }

    /* Mobile Social Icons - Right Side */
    .mobile-social-icons {
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 2;
    }

    .mobile-social-icons .social-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 15px;
        color: #ffffff;
        transition: transform 0.2s ease;
    }

    .mobile-social-icons .social-icon:active {
        transform: scale(0.9);
    }

    .social-icon.call-icon {
        background-color: #5b287a; /* Theme Purple */
    }

    .social-icon.whatsapp-icon {
        background-color: #25d366; /* WhatsApp Green */
    }

    .social-icon.instagram-icon {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Instagram Gradient */
    }

    /* Menu Overlay */
    .premium-menu {
        display: none !important;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px;
        background: #ffffff;
        border: 1px solid #eeeeee;
        border-top: 0;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
        z-index: 1000;
    }

    .premium-menu.show {
        display: block !important;
    }

    .premium-menu-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .premium-nav-link {
        height: auto;
        min-height: 46px;
        padding: 12px 15px;
        border-radius: 7px;
        font-size: 13px;
    }

    .premium-nav-link::after {
        display: none;
    }

    .premium-nav-link:hover,
    .premium-nav-link.active {
        background: #faf6fc;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE (360px & BELOW)
========================================================= */

@media (max-width: 575.98px) {
    .premium-site-logo {
        max-width: 160px;
        height: 90px;
    }

    .mobile-social-icons .social-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .mobile-social-icons {
        gap: 5px;
    }
}
/* =====================================================
   PREMIUM SWEET SHOP SLIDER - INCREASED HEIGHT (NO SPACE & NO CROP)
===================================================== */

#header-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

#header-carousel .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Fast animation speed (0.3 seconds) */
#header-carousel .carousel-item {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out !important;
}

/* Desktop / Laptop (Pehle 500px tha, ab 600px kar diya hai) */
#header-carousel .premium-slider-image {
    width: 100% !important;
    height: 600px !important; 
    object-fit: fill !important; /* Image compress hoke poori fit rahegi */
    object-position: center;
    display: block;
}

/* Tablet Devices (Pehle 350px tha, ab 420px kar diya hai) */
@media (max-width: 991px) {
    #header-carousel .premium-slider-image {
        height: 420px !important;
    }
}

/* Mobile Devices (Pehle 250px tha, ab 320px kar diya hai) */
@media (max-width: 576px) {
    #header-carousel .premium-slider-image {
        height: 320px !important;
    }
}
/* =========================================================
   PREMIUM ABOUT SECTION
========================================================= */


.about-page-header {
    background: #f6faf8;
    padding: 40px 15px;
    border-bottom: 1px solid #eee;
}

.about-header-content {
    max-width: 680px;
    margin: auto;
}

.about-header-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #16823b;
    font-family: 'Pacifico', cursive;
    font-size: 30px;
}
.about-header-content p {
    max-width: 580px;
    margin: 0 auto 22px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
}

.about-breadcrumb a {
    color: #16823b;
    text-decoration: none;
}

.about-breadcrumb span {
    color: #888;
}

.about-breadcrumb i {
    color: #bbb;
    font-size: 11px;
}


/* MOBILE */

@media (max-width: 575px) {

    .about-page-header {
        padding: 48px 15px;
    }

    .about-header-label {
        font-size: 16px;
    }
    .about-header-content p {
        font-size: 13px;
        line-height: 1.7;
    }

}


.premium-about-section {
    padding: 70px 0;
    background: #ffffff;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.premium-section-title {
    max-width: 650px;
    margin: 0 auto 45px;
}

.premium-section-title span {
    display: block;

    margin-bottom: 8px;

    color: #168a5b;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-section-title h2 {
    margin: 0;

    color: #222222;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.25;
}

.title-line {
    width: 45px;
    height: 3px;

    margin: 16px auto 0;

    background: var(--purple-dark, #5b287a);

    border-radius: 10px;
}


/* =========================================================
   ABOUT ROW
========================================================= */

.premium-about-row {
    row-gap: 30px;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.premium-about-image {
    width: 100%;

    max-width: 500px;

    height: 360px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 12px;

    background: #f5f5f5;
}

.premium-about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.premium-about-content {
    max-width: 650px;

    padding-left: 25px;
}

.premium-about-content h3 {
    margin-bottom: 16px;

    color: #222222;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.3;
}

.premium-about-content > p {
    margin-bottom: 28px;

    color: #666666;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.premium-about-features {
    row-gap: 20px;
}

.premium-feature {
    height: 100%;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 18px;

    background: #fafafa;

    border: 1px solid #eeeeee;
    border-radius: 10px;

    transition: all .25s ease;
}

.premium-feature:hover {
    transform: translateY(-3px);

    border-color: rgba(91, 40, 122, .18);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.premium-feature-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #168a5b;

    border-radius: 8px;

    font-size: 18px;
}

.premium-feature h4 {
    margin: 2px 0 6px;

    color: #222222;

    font-size: 16px;
    font-weight: 700;

    text-transform: uppercase;
}

.premium-feature p {
    margin: 0;

    color: #777777;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .premium-about-section {
        padding: 60px 0;
    }

    .premium-about-image {
        height: 330px;
    }

    .premium-about-content {
        padding-left: 15px;
    }

    .premium-section-title h2 {
        font-size: 32px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .premium-about-section {
        padding: 55px 0;
    }

    .premium-section-title {
        margin-bottom: 35px;
    }

    .premium-section-title h2 {
        font-size: 30px;
    }

    .premium-about-image {
        height: 300px;
    }

    .premium-about-content {
        padding-left: 10px;
    }

    .premium-about-content h3 {
        font-size: 23px;
    }

    .premium-about-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .premium-about-section {
        padding: 45px 0;
    }

    .premium-section-title {
        margin-bottom: 28px;
    }

    .premium-section-title span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .premium-section-title h2 {
        font-size: 26px;
    }

    .premium-about-image {
        height: 230px;
        max-width: 100%;

        border-radius: 10px;
    }

    .premium-about-content {
        max-width: 100%;
        padding-left: 0;
    }

    .premium-about-content h3 {
        margin-bottom: 12px;
        font-size: 21px;
    }

    .premium-about-content > p {
        margin-bottom: 22px;
        font-size: 14px;
    }

    .premium-feature {
        padding: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .premium-about-section {
        padding: 38px 0;
    }

    .premium-section-title h2 {
        font-size: 23px;
    }

    .premium-about-image {
        height: 200px;
    }

    .premium-feature {
        gap: 11px;
        padding: 13px;
    }

    .premium-feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;

        font-size: 16px;
    }

    .premium-feature h4 {
        font-size: 14px;
    }

    .premium-feature p {
        font-size: 12px;
    }

}
/* =====================================================
   PREMIUM MENU SECTION
===================================================== */

.premium-menu-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.premium-menu-heading {
    max-width: 720px;
    margin: 0 auto 20px;
    text-align: center;
}

.premium-menu-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    color: #16823b;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-menu-heading h2 {
    margin: 0;
    color: #222;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(34px, 4vw, 30px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.premium-menu-heading p {
    max-width: 600px;
    margin: 18px auto 0;
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   DECORATIVE LINE
===================================================== */

.premium-menu-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px auto 0;
}

.premium-menu-line span {
    width: 55px;
    height: 1px;
    background: #16823b;
}

.premium-menu-line i {
    color: var(--primary, #c59d5f);
    font-size: 18px;
}

/* =====================================================
   FORCE HORIZONTAL SWIPE FIX
===================================================== */

/* Outer Wrapper Block */
.category-slider-wrapper,
.category-slider {
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
}

/* UL Container Fix */
ul.category-slider-list#cakeTabs {
    display: flex !important;
    flex-wrap: nowrap !important; /* Force Single Line */
    overflow-x: auto !important; /* Force Horizontal Scroll */
    overflow-y: hidden !important;
    white-space: nowrap !important;
    width: 100% !important;
    gap: 8px !important;
    padding: 10px 5px !important;
    margin: 0 !important;
    list-style: none !important;
    
    /* Smooth Touch Scroll */
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important; /* Firefox */
}

/* Hide Scrollbar Chrome/Safari */
ul.category-slider-list#cakeTabs::-webkit-scrollbar {
    display: none !important;
}

/* Items Fix */
ul.category-slider-list#cakeTabs .nav-item {
    flex: 0 0 auto !important; /* Prevent shrinking/wrapping */
    display: inline-block !important;
    float: none !important;
}

/* Gallery Filter Button Matching Style */
ul.category-slider-list#cakeTabs .nav-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 8px 18px !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    border: 1px solid #e5e0da !important;
    color: #666666 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
}

/* Active / Hover State */
ul.category-slider-list#cakeTabs .nav-link:hover,
ul.category-slider-list#cakeTabs .nav-link.active {
    background: var(--primary, #b8860b) !important;
    border-color: var(--primary, #b8860b) !important;
    color: #ffffff !important;
}

ul.category-slider-list#cakeTabs .nav-link i {
    font-size: 14px !important;
    color: inherit !important;
}

/* =========================================================
   WHO WE WORK WITH
========================================================= */

.who-work-section {
    padding: 40px 0;
    background: #f8f6f2;
    overflow: hidden;
}


/* =========================================================
   SLIDER
========================================================= */

.who-work-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 5px 0 15px;
}

.who-work-track {
    display: flex;
    width: 100%;
    transition: transform .6s ease;
    will-change: transform;
}

.who-work-item {
    flex: 0 0 25%;
    min-width: 25%;
    padding: 0 9px;
    box-sizing: border-box;
}


/* =========================================================
   CARD
========================================================= */

.who-work-item .premium-cake-card {
    height: 100%;
    min-height: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;
    border: 1px solid #e8e5ef;
    border-radius: 14px;

    box-shadow: 0 6px 22px rgba(17, 24, 39, .06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.who-work-item .premium-cake-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, .22);
    box-shadow: 0 14px 32px rgba(17, 24, 39, .11);
}


/* =========================================================
   IMAGE
========================================================= */

.who-work-item .premium-cake-image {
    width: 100%;
    height: 145px;
    overflow: hidden;
    background: #f7f7f7;
}

.who-work-item .premium-cake-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .4s ease;
}

.who-work-item .premium-cake-card:hover .premium-cake-image img {
    transform: scale(1.04);
}


/* =========================================================
   CONTENT
========================================================= */

.who-work-item .premium-cake-content {
    display: block;

    padding: 15px 16px 17px;
    text-align: center;
}

.who-work-item .premium-cake-content .small {
    display: block;

    margin-bottom: 5px;

    color: #7c3aed;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.who-work-item .premium-cake-content h3 {
    margin: 0 0 7px;

    color: #202124;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.who-work-item .premium-cake-content p {
    margin: 0;

    color: #777;
    font-size: 12px;
    line-height: 1.55;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =========================================================
   ARROWS
========================================================= */

.who-work-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e5e5e5;
    border-radius: 50%;

    background: #fff;
    color: #333;

    box-shadow: 0 5px 18px rgba(0,0,0,.10);

    transform: translateY(-50%);
    transition: .25s ease;
}

.who-work-prev {
    left: 2px;
}

.who-work-next {
    right: 2px;
}

.who-work-arrow:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .who-work-section {
        padding: 60px 0;
    }

    .who-work-item {
        flex: 0 0 50%;
        min-width: 50%;
    }

    .who-work-item .premium-cake-image {
        height: 145px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .who-work-section {
        padding: 50px 0;
    }

    .who-work-item {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 18px;
    }

    .who-work-item .premium-cake-image {
        height: 150px;
    }

    .who-work-item .premium-cake-content {
        padding: 14px 15px 16px;
    }

    .who-work-item .premium-cake-content h3 {
        font-size: 16px;
    }

    .who-work-item .premium-cake-content p {
        font-size: 12px;
    }

    .who-work-arrow {
        width: 34px;
        height: 34px;
    }

    .who-work-prev {
        left: 3px;
    }

    .who-work-next {
        right: 3px;
    }
}

/* =========================================
   GLOBAL REACH / OUR BRANCHES
========================================= */

.our-branches {
    background: #f6faf8;
}

.branch-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;

    color: #168a5b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.branch-title {
    margin: 8px 0 12px;
    color: #18221e;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.our-branches .text-center > p {
    max-width: 650px;
    margin: 0 auto;
    color: #68736e;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   BRANCH CARD
========================================= */

.branch-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 24px;

    background: #fff;
    border: 1px solid #e2eee8;
    border-radius: 16px;

    box-shadow: 0 8px 25px rgba(22, 138, 91, .06);

    transition: .3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 138, 91, .25);
    box-shadow: 0 15px 35px rgba(22, 138, 91, .11);
}


/* =========================================
   ICON
========================================= */

.branch-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f6ef;
    color: #168a5b;

    border-radius: 13px;

    font-size: 20px;
}


/* =========================================
   CONTENT
========================================= */

.branch-card small {
    display: block;
    margin-bottom: 5px;

    color: #168a5b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.branch-card h4 {
    margin: 4px 0 8px;

    color: #18221e;
    font-size: 19px;
    font-weight: 700;
}

.branch-card p {
    margin: 0 0 10px;

    color: #707a75;
    font-size: 13px;
    line-height: 1.7;
}

.branch-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #168a5b;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
    transition: .25s ease;
}

.branch-link i {
    transition: .25s ease;
}

.branch-link:hover {
    color: #0f6d47;
}

.branch-link:hover i {
    transform: translateX(4px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .our-branches {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .branch-title {
        font-size: 28px;
    }

    .our-branches .text-center > p {
        padding: 0 10px;
        font-size: 13px;
    }

    .branch-card {
        padding: 20px;
        gap: 13px;
        border-radius: 14px;
    }

    .branch-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .branch-card h4 {
        font-size: 18px;
    }

    .branch-card p {
        font-size: 12.5px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .branch-title {
        font-size: 24px;
    }

    .branch-subtitle {
        font-size: 10px;
    }

    .branch-card {
        padding: 17px;
    }

    .branch-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .branch-card h4 {
        font-size: 17px;
    }
}
/* =========================================
   OWNERS
========================================= */

.owners-section {
    background: #f8f6f2;
}

.owner-card {
    background: #fff;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    transition: .3s ease;
}

.owner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
}

.owner-image {
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    background: #f5f2ee;
}

.owner-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .3s ease;
}

.owner-card:hover img {
    transform: scale(1.03);
}

.owner-info {
    padding: 12px 8px;
    text-align: center;
}

.owner-info h4 {
    margin: 0;
    color: #241b18;
    font-size: 17px;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 575px) {

    .owner-info {
        padding: 10px 5px;
    }

    .owner-info h4 {
        font-size: 15px;
    }

}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section {
    background: #f8f6f2;
}

.testimonial-card {
    height: 100%;
    padding: 28px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .05);
}


.testimonial-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, .12);
    color: #16823b;
    border-radius: 50%;
    font-size: 21px;
}

.customer-subtitle {
    color: #16823b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.customer-title {
    margin: 10px 0;
    color: #241b18;
    font-size: 30px;
    font-weight: 800;
}

.customer-title span {
    color: var(--primary, #b8860b);
}

.customer-text {
    max-width: 600px;
    margin: auto;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}


.stars {
    color: var(--primary, #b8860b);
    font-size: 13px;
    letter-spacing: 2px;
}
.testimonial-place {
    color: #999;
    font-size: 12px;
}

.testimonial-place i {
    color: #16823b;
}


/* MOBILE */

@media (max-width: 575px) {

    .testimonial-card {
        padding: 22px;
    }

   .customer-title {
        font-size: 20px;
    }

    .customer-text {
        font-size: 14px;
    }

    .customer-card h4 {
        font-size: 19px;
    }

}
/* =========================================================
   TRUSTED CLIENTS
========================================================= */

.trusted-clients-section {
    padding: 30px 0;
    background: #f6faf8;
    overflow: hidden;
}

.trusted-clients-section .premium-menu-heading {
    margin-bottom: 35px;
}

.trusted-clients-section .premium-menu-subtitle {
    color: #16823b;
}

.trusted-clients-section .premium-menu-heading h2,
.trusted-clients-section .premium-menu-heading h4 {
    color: #202522;
}

.trusted-clients-section .premium-menu-line span {
    background: #16823b;
}

.trusted-clients-section .premium-menu-line i {
    color: #16823b;
}


/* =========================================================
   LOGO SLIDER
========================================================= */

.trusted-logo-wrapper {
    width: 100%;
    overflow: hidden;
}

.trusted-logo-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    transition: transform .6s ease;
}


/* =========================================================
   LOGO ITEM
========================================================= */

.trusted-logo-item {
    flex: 0 0 185px;
    width: 185px;
    box-sizing: border-box;
    padding: 0 10px;
}


/* =========================================================
   LOGO CARD
========================================================= */

.trusted-logo-card {
    width: 100%;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    background: #fff;
    border: 1px solid #e5eee8;
    border-radius: 14px;

    box-shadow: 0 6px 22px rgba(22, 130, 59, .07);

    transition: .3s ease;
}

.trusted-logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 130, 59, .3);
    box-shadow: 0 12px 28px rgba(22, 130, 59, .12);
}


/* =========================================================
   LOGO IMAGE
========================================================= */

.trusted-logo-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .trusted-logo-item {
        flex: 0 0 175px;
        width: 175px;
    }

    .trusted-logo-card {
        height: 95px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .trusted-clients-section {
        padding: 40px 0;
    }

    .trusted-clients-section .premium-menu-heading {
        margin-bottom: 25px;
    }

    .trusted-logo-item {
        flex: 0 0 155px;
        width: 155px;
        padding: 0 7px;
    }

    .trusted-logo-card {
        height: 85px;
        padding: 12px;
        border-radius: 12px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .trusted-clients-section {
        padding: 30px 0;
    }

    .trusted-logo-item {
        flex: 0 0 145px;
        width: 145px;
    }

    .trusted-logo-card {
        height: 78px;
        padding: 10px;
    }
}
    /* =========================================
       CONTACT PAGE
    ========================================= */
    
    .contact-title {
        color: #241b18;
        font-size: 30px;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .contact-title span {
        color: #16823b;
    }
    
    .contact-info a {
        color: #777;
        font-size: 13px;
        text-decoration: none;
    }
    
    .contact-info a:hover {
        color: var(--primary, #b8860b);
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        background: #f8f5ef;
        color: var(--primary, #b8860b);
    
        border-radius: 50%;
    }
    
    .contact-social {
        width: 36px;
        height: 36px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        background: #f8f5ef;
        color: #555;
    
        border-radius: 50%;
        text-decoration: none;
    }
    
    .contact-social:hover {
        background: var(--primary, #b8860b);
        color: #fff;
    }
    
    .contact-form {
        padding: 28px;
        background: #f6faf8;
        border: 1px solid #eee8e0;
        border-radius: 12px;
    }
    
    .contact-form h3 {
        color: #16823b;
        font-size: 23px;
    }
    
    .contact-form .form-control {
        border: 1px solid #e5dfd7;
        padding: 11px 13px;
        font-size: 13px;
        box-shadow: none;
    }
    
    .contact-form .form-control:focus {
        border-color: var(--primary, #b8860b);
        box-shadow: none;
    }
    
    /* MOBILE */
    
    @media (max-width: 767px) {
    
        .contact-title {
            font-size: 26px;
        }
    
        .contact-form {
            padding: 20px 16px;
        }
    }
    
    /* =====================================================
       PREMIUM SERVICES
    ===================================================== */
    
    .premium-services-section {
        padding: 90px 0;
        background: #f8f6f2;
    }
    
    
    /* =====================================================
       HEADING
    ===================================================== */
    
    .premium-services-heading {
        max-width: 720px;
        margin: 0 auto 55px;
    }
    
    .premium-services-subtitle {
        display: inline-block;
        margin-bottom: 10px;
        color: #16823b;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
    
    .premium-services-heading h1 {
        margin-bottom: 15px;
        font-size: 42px;
        font-weight: 700;
        color: #2d2925;
    }
    
    .premium-services-heading p {
        margin: 18px auto 0;
        color: #777;
        line-height: 1.8;
    }
    
    
    /* =====================================================
       HEADING LINE
    ===================================================== */
    
    .premium-services-line {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .premium-services-line span {
        width: 55px;
        height: 1px;
        background: #16823b;
    }
    
    .premium-services-line i {
        color: #b08a57;
        font-size: 18px;
    }
    
    
    /* =====================================================
       SERVICE CARD
    ===================================================== */
    
    .premium-service-card {
        height: 100%;
        overflow: hidden;
        background: #fff;
        border: 1px solid #eee7dc;
        border-radius: 14px;
        transition: .3s ease;
    }
    
    .premium-service-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
    }
    
    
    /* =====================================================
       IMAGE
    ===================================================== */
    
    .premium-service-image {
        height: 230px;
        overflow: hidden;
        background: #f2eee8;
    }
    
    .premium-service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .4s ease;
    }
    
    .premium-service-card:hover .premium-service-image img {
        transform: scale(1.05);
    }
    
    
    /* =====================================================
       ICON
    ===================================================== */
    
    .premium-service-icon {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b08a57;
        font-size: 55px;
    }
    
    
    /* =====================================================
       CONTENT
    ===================================================== */
    
    .premium-service-content {
        padding: 25px;
        text-align: center;
    }
    
    .premium-service-content h3 {
        margin-bottom: 12px;
        color: #2d2925;
        font-size: 21px;
        font-weight: 600;
    }
    
    .premium-service-content p {
        margin: 0;
        color: #777;
        font-size: 14px;
        line-height: 1.7;
    }
    
    
    /* =====================================================
       LINK
    ===================================================== */
    
    .premium-service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
        color: #a77b43;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
    }
    
    .premium-service-link i {
        transition: .3s ease;
    }
    
    .premium-service-link:hover {
        color: #7d592f;
    }
    
    .premium-service-link:hover i {
        transform: translateX(5px);
    }
    

/* =====================================================
   DETAIL SECTION
===================================================== */

.premium-service-details {
    padding: 80px 0;
    background: #fff;
}

.premium-service-detail {
    padding: 55px 0;
    border-bottom: 1px solid #eee;
}

.premium-service-detail:last-child {
    border-bottom: 0;
}

.premium-detail-image {
    height: 350px;
    overflow: hidden;
    border-radius: 14px;
}

.premium-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-detail-label {
    color: #b08a57;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.premium-service-detail h2 {
    margin: 12px 0 18px;
    color: #2d2925;
    font-size: 34px;
}

.premium-service-detail p {
    color: #777;
    line-height: 1.9;
}


/* =====================================================
   EMPTY
===================================================== */

.premium-service-empty {
    padding: 60px 20px;
}

.premium-service-empty i {
    color: #b08a57;
    font-size: 45px;
}

.premium-service-empty h3 {
    margin-top: 15px;
    color: #2d2925;
}

.premium-service-empty p {
    color: #777;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .premium-services-section {
        padding: 60px 0;
    }

    .premium-services-heading {
        margin-bottom: 15px;
    }

    .premium-services-heading h1 {
        font-size: 30px;
    }

    .premium-services-heading p {
        font-size: 14px;
    }

    .premium-service-image {
        height: 200px;
    }

    .premium-service-content {
        padding: 20px;
    }

    .premium-service-detail {
        padding: 40px 0;
    }

    .premium-detail-image {
        height: 260px;
    }

    .premium-service-detail h2 {
        font-size: 27px;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.20);
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 15px;
        font-size: 27px;
    }
}


/* =========================================
   FOUNDER
========================================= */

.founder-section {
    padding: 30px 0;
    background: #f6faf8;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 5px;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 8px;

    color: #168a5b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2,
.final-cta-content h2 {
    margin: 0;

    color: #18221e;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================
   SECTION LINE
========================================= */

.section-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.section-line span {
    width: 45px;
    height: 1px;
    background: #168a5b;
}

.section-line i {
    color: #168a5b;
    font-size: 16px;
}


/* =========================================
   FOUNDER CARD
========================================= */

.founder-card {
    background: #f7fbf9;
    border: 1px solid #e2eee8;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(22, 138, 91, .07);

    transition: .3s ease;
}

.founder-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 138, 91, .25);
    box-shadow: 0 18px 40px rgba(22, 138, 91, .11);
}

.founder-content {
    padding: 40px 45px;
}

.founder-role {
    display: block;
    margin-bottom: 8px;

    color: #168a5b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.founder-content h3 {
    margin: 0 0 15px;

    color: #18221e;
    font-size: 22px;
    font-weight: 700;
}

.founder-content p {
    max-width: 700px;
    margin: 0 auto 25px;

    color: #69746f;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   GREEN BUTTON
========================================= */

.green-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 20px;

    background: #168a5b;
    border: 1px solid #168a5b;
    border-radius: 30px;

    color: #fff !important;
    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 7px 18px rgba(22, 138, 91, .18);

    transition: .3s ease;
}

.green-btn i {
    transition: .3s ease;
}

.green-btn:hover {
    background: #0f6d47;
    border-color: #0f6d47;
    color: #fff !important;
    transform: translateY(-2px);
}

.green-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta-section {
    padding: 30px 0;
    background: #f8f6f2;
    border-top: 1px solid #e7f0eb;
}

.final-cta-content {
    max-width: 750px;
    margin: auto;
}

.final-cta-content h2 {
    margin-top: 5px;
}

.final-cta-content p {
    max-width: 650px;
    margin: 18px auto 25px;

    color: #69746f;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .founder-section,
    .final-cta-section {
        padding: 25px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2,
    .final-cta-content h2 {
        font-size: 27px;
    }

    .section-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .founder-content {
        padding: 28px 20px;
    }

    .founder-content h3 {
        font-size: 19px;
    }

    .founder-content p,
    .final-cta-content p {
        font-size: 13px;
    }

    .final-cta-content {
        padding: 0 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .section-heading h2,
    .final-cta-content h2 {
        font-size: 24px;
    }

    .founder-content {
        padding: 25px 17px;
    }

    .founder-content h3 {
        font-size: 18px;
    }

    .green-btn {
        padding: 10px 17px;
        font-size: 11px;
    }

}

/* =========================================
   WHY GROWONE MEDIA
========================================= */

.why-growone-section {
    padding: 75px 0;
    background: #f6faf8;
}


/* =========================================
   HEADING
========================================= */

.why-growone-heading {
    max-width: 750px;
    margin: 0 auto 42px;
}

.why-growone-subtitle {
    display: inline-block;
    margin-bottom: 8px;

    color: #168a5b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-growone-heading h2 {
    margin: 0;

    color: #18221e;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================
   HEADING LINE
========================================= */

.why-growone-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 17px;
}

.why-growone-line span {
    width: 45px;
    height: 1px;
    background: #168a5b;
}

.why-growone-line i {
    color: #168a5b;
    font-size: 16px;
}


/* =========================================
   CARD
========================================= */

.why-growone-card {
    height: 100%;
    padding: 28px 24px;

    background: #fff;
    border: 1px solid #e1eee8;
    border-radius: 17px;

    box-shadow: 0 8px 25px rgba(22, 138, 91, .06);

    transition: .3s ease;
}

.why-growone-card:hover {
    transform: translateY(-7px);

    border-color: rgba(22, 138, 91, .25);

    box-shadow:
        0 18px 40px rgba(22, 138, 91, .12);
}


/* =========================================
   ICON
========================================= */

.why-growone-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background: #e8f6ef;
    color: #168a5b;

    border-radius: 14px;

    font-size: 21px;

    transition: .3s ease;
}

.why-growone-card:hover .why-growone-icon {
    background: #168a5b;
    color: #fff;
}


/* =========================================
   CONTENT
========================================= */

.why-growone-content > span {
    color: #168a5b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.why-growone-content h3 {
    margin: 7px 0 10px;

    color: #18221e;
    font-size: 19px;
    font-weight: 700;
}

.why-growone-content p {
    margin: 0;

    color: #6d7772;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-growone-section {
        padding: 65px 0;
    }

    .why-growone-heading {
        margin-bottom: 35px;
    }

    .why-growone-heading h2 {
        font-size: 32px;
    }

    .why-growone-card {
        padding: 24px 21px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-growone-section {
        padding: 50px 0;
    }

    .why-growone-heading {
        margin-bottom: 28px;
    }

    .why-growone-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .why-growone-heading h2 {
        font-size: 27px;
    }

    .why-growone-line {
        margin-top: 14px;
    }

    .why-growone-line span {
        width: 38px;
    }

    .why-growone-card {
        padding: 22px 20px;
        border-radius: 15px;
    }

    .why-growone-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        font-size: 19px;
    }

    .why-growone-content h3 {
        font-size: 18px;
    }

    .why-growone-content p {
        font-size: 12.5px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .why-growone-section {
        padding: 45px 0;
    }

    .why-growone-heading h2 {
        font-size: 24px;
    }

    .why-growone-card {
        padding: 20px 17px;
    }

}
/* =========================================
   HOW WE WORK / PROCESS
========================================= */

.process-section {
    padding: 30px 0;
    background: #f6faf8;
}


/* =========================================
   HEADING
========================================= */

.process-heading {
    max-width: 700px;
    margin: 0 auto 42px;
}

.process-subtitle {
    display: inline-block;
    margin-bottom: 8px;

    color: #168a5b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-heading h2 {
    margin: 0;

    color: #18221e;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================
   HEADING LINE
========================================= */

.process-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 17px;
}

.process-line span {
    width: 45px;
    height: 1px;
    background: #168a5b;
}

.process-line i {
    color: #168a5b;
    font-size: 16px;
}


/* =========================================
   PROCESS CARD
========================================= */

.process-card {
    position: relative;

    height: 100%;
    min-height: 215px;

    padding: 25px 18px;

    background: #f7fbf9;
    border: 1px solid #e1eee8;
    border-radius: 16px;

    text-align: center;

    transition: .3s ease;
}

.process-card:hover {
    transform: translateY(-6px);

    background: #fff;
    border-color: rgba(22, 138, 91, .25);

    box-shadow:
        0 15px 35px rgba(22, 138, 91, .10);
}


/* =========================================
   NUMBER
========================================= */

.process-number {
    color: #168a5b;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;

    margin-bottom: 13px;
}


/* =========================================
   ICON
========================================= */

.process-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 17px;

    background: #e8f6ef;
    color: #168a5b;

    border-radius: 15px;

    font-size: 21px;

    transition: .3s ease;
}

.process-card:hover .process-icon {
    background: #168a5b;
    color: #fff;

    transform: scale(1.05);
}


/* =========================================
   CONTENT
========================================= */

.process-card h3 {
    margin: 0 0 9px;

    color: #18221e;
    font-size: 18px;
    font-weight: 700;
}

.process-card p {
    margin: 0;

    color: #6d7772;
    font-size: 12.5px;
    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .process-section {
        padding: 65px 0;
    }

    .process-heading {
        margin-bottom: 35px;
    }

    .process-heading h2 {
        font-size: 32px;
    }

    .process-card {
        min-height: 220px;
        padding: 23px 18px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .process-section {
        padding: 50px 0;
    }

    .process-heading {
        margin-bottom: 28px;
    }

    .process-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .process-heading h2 {
        font-size: 27px;
    }

    .process-line {
        margin-top: 14px;
    }

    .process-line span {
        width: 38px;
    }

    .process-card {
        min-height: 205px;
        padding: 20px 12px;
        border-radius: 14px;
    }

    .process-number {
        margin-bottom: 10px;
    }

    .process-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 13px;

        border-radius: 13px;
        font-size: 18px;
    }

    .process-card h3 {
        font-size: 16px;
    }

    .process-card p {
        font-size: 11.5px;
        line-height: 1.6;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .process-heading h2 {
        font-size: 24px;
    }

    .process-card {
        min-height: 160px;
        padding: 18px 9px;
    }

    .process-icon {
        width: 43px;
        height: 43px;
    }

    .process-card h3 {
        font-size: 15px;
    }

    .process-card p {
        font-size: 11px;
    }
}
/* =========================================
   PREMIUM FOOTER
========================================= */

.premium-footer {
    background: #fff;
    border-top: 1px solid #eee;
    color: #666;
}

/* BRAND & BADA LOGO */

.footer-brand {
    padding-right: 30px;
}

.footer-brand a {
    text-decoration: none;
}

/* Logo Bada Kar Diya Hai */
.footer-logo {
    max-width: 260px; /* Pehle 190px tha, ab 260px bada size kar diya hai */
    max-height: 140px; /* Pehle 120px tha */
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-brand-name {
    margin: 0;
    color: #241b18;
    font-size: 28px;
    font-weight: 700;
}

.footer-tagline {
    max-width: 320px;
    margin: 12px 0 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}


/* FOOTER HEADINGS */

.footer-column h5 {
    margin-bottom: 20px;
    color: #16823b;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* CONTACT */

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact i {
    flex-shrink: 0;
    color: #16823b;
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    transition: .2s ease;
}

.footer-contact a:hover {
    color: var(--primary, #b8860b);
}


/* QUICK LINKS */

.footer-column > a {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: .2s ease;
}

.footer-column > a:hover {
    color: var(--primary, #b8860b);
    transform: translateX(3px);
}


/* SOCIAL (LOGO KE NICHE FIT KARNE KE LIYE) */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 0px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6e1dc;
    border-radius: 50%;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: .25s ease;
}

.footer-social a:hover {
    color: #fff;
    background: var(--primary, #b8860b);
    border-color: var(--primary, #b8860b);
}

    .social-icon.call-icon {
        background-color: #5b287a; /* Theme Purple */
        color: #fff;
    }

    .social-icon.whatsapp-icon {
        background-color: #25d366; /* WhatsApp Green */
         color: #fff;
    }

    .social-icon.instagram-icon {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Instagram Gradient */
         color: #fff;
    }
.social-icon.youtube-icon {
    background-color: #FF0000;
    color: #ffffff;
}
.social-icon.facebook-icon {
    background-color: #1877F2;
    color: #ffffff;
}

/* Twitter (X) Brand Color */
.social-icon.twitter-icon {
    background-color: #1DA1F2; /* Classic Twitter Blue */
    color: #ffffff;
}

/* COPYRIGHT */

.footer-bottom {
    border-top: 1px solid #eee;
}

.footer-bottom-inner {
    padding: 17px 0;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 12px;
    line-height: 1.6;
}

.footer-bottom strong {
    color: #555;
}

.footer-divider {
    margin: 0 7px;
    color: #ccc;
}


/* RESPONSIVE MOBILE & TABLET */

@media (max-width: 767px) {

    .premium-footer .container {
        padding-top: 45px !important;
        padding-bottom: 35px !important;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    /*.footer-brand a {*/
    /*    display: inline-block;*/
    /*}*/

    .footer-logo {
        max-width: 200px; /* Mobile par sensible bada size */
        max-height: 110px;
        margin: 0 auto;
    }

    .footer-tagline {
        margin: 10px auto 0;
        font-size: 13px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }

    .footer-column > a {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center; /* Mobile par centered */
    }

    .footer-bottom p {
        padding: 0 12px;
    }

}

@media (max-width: 575px) {

    .footer-logo {
        max-width: 200px;
        max-height: 150px;
    }

    .footer-column h5 {
        margin-bottom: 15px;
    }

}

