:root  {
    --brand-red: #B02A27;
    --brand-yellow: #FFD254;
}

.navbar { background: #fff; padding: 10px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.navbar{
    position: relative;
    transition: all .4s ease;
}

.navbar.sticky-active{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

@keyframes slideDown{
    from{
        transform: translateY(-100%);
        opacity:0;
    }
    to{
        transform: translateY(0);
        opacity:1;
    }
}

/* --- DESKTOP VIEW (992px+) --- */
@media (min-width: 992px) {
    .nav-link { padding: 25px 20px !important; color: #333 !important; font-weight: 600; }
    .nav-submenu-toggle { display: none; }

    /* No arrow on desktop */
    .dropdown-toggle::after { display: none !important; }

    /* Hover logic */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
    }
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: none;
        border-top: 3px solid var(--brand-yellow);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

/* --- MOBILE/TABLET VIEW (<991px) --- */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: left; /* Menu items left side par */
        padding: 15px 0;
    }

    .nav-link {
        display: flex;
        justify-content: space-between; /* Text left, Arrow right */
        align-items: center;
        padding: 12px 20px !important;
        border-bottom: 1px solid #f8f9fa;
        font-weight: 600;
    }

    .nav-dropdown-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        border-bottom: 1px solid #f8f9fa;
    }

    .nav-dropdown-wrapper > .nav-link {
        flex: 1 1 auto;
        border-bottom: 0;
    }

    .nav-submenu-toggle {
        width: 50px;
        padding: 12px 20px;
        border: 0;
        border-bottom: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile par arrow dikhana aur right side float karna */
    .dropdown-toggle::after { 
        display: inline-block !important; 
        margin-left: 0;
    }

    .dropdown-menu {
        width: 100%;
        border: none;
        background-color: #fcfcfc;
        margin: 0;
        padding-left: 20px;
        border-left: 3px solid var(--brand-yellow);
    }

    .nav-item.active .nav-link {
        background-color: var(--brand-yellow);
        border-radius: 0 5px 5px 0;
        padding-right: 30px !important;
    }
}

/* Contact & Icons */
.phone-icon { background: var(--brand-yellow); width: 35px; height: 35px; border-radius: 50%; display: grid; place-items: center; margin-right: 10px; }
.grid-btn { background: #F2A20C; color: white; border-radius: 5px; padding: 8px 12px; border: none; margin-left: 15px; }

/* Header Tool free */
.toll-box{
    display:flex;
    align-items:center;
    background:linear-gradient(180deg,#ffd766,#ffb300);
    padding:8px 15px;
    border-radius:50px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    width: 100%;
}

.toll-icon{
    background:#fff3cd;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:10px;
    font-size:18px;
}

.toll-text{
    line-height:1.2;
}

.toll-text small{
    display:block;
    font-size:12px;
    font-weight:500;
}

.toll-text a{
    font-size:15px;
    font-weight:700;
    color: #000;
    text-decoration: none;
}

/* Home Slider */
.hero-slider-section { position: relative; overflow: hidden; }

.hero-slider-section .owl-nav {
    margin-top : 0px;
}

.main-slider,
.main-slider .owl-stage-outer,
.main-slider .owl-item,
.main-slider .item {
    overflow: hidden;
}

.slider-img {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: brightness(0.7); /* Text readability ke liye image dark rakhi hai */
}

.slider-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.slider-content h1 { color: #fff; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
.hero-subtitle {
    color: #fff;
    display: inline-block;
    max-width: 620px;
    margin-top: 18px;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.35);
}
.slider-content p { color: #f8f9fa; max-width: 600px; }

.btn-slider {
    background-color: var(--brand-red);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--brand-red);
}
.btn-slider:hover { background: transparent; color: #fff; }

/* Owl Navigation Arrows Styling */
.main-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 30px !important;
    transition: 0.3s;
}
.main-slider .owl-nav button:hover { background: var(--brand-yellow) !important; color: #000 !important; }
.main-slider .owl-prev { left: 30px; }
.main-slider .owl-next { right: 30px; }

/* Dot styling */
.owl-dots { position: absolute; bottom: 30px; width: 100%; text-align: center; }
.owl-dot span { background: rgba(255,255,255,0.5) !important; }
.owl-dot.active span { background: var(--brand-yellow) !important; width: 30px !important; }

@media (max-width: 1199px) {
    .slider-img {
        height: 500px;
    }
}

@media (max-width: 991px) {
    .slider-img {
        height: 430px;
        background-size: 100% 100%;
        background-position: center;
        background-color: #fffaf0;
    }
    .slider-content h1 { font-size: 2rem; }
    .hero-subtitle {
        max-width: 480px;
        margin-top: 12px;
        font-size: 1.15rem;
        padding-left: 12px;
        border-left-width: 3px;
    }
    .main-slider .owl-nav { display: none; } /* Mobile par arrows hide karein */
}

@media (max-width: 767px) {
    .slider-img {
        height: 340px;
        background-size: 100% 100%;
    }
}

@media (max-width: 575px) {
    .slider-img {
        height: 270px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

.bg-color {
    background: #fffaf0;
}
/* Home Page About us */
.about-section { padding:60px 0; }

/* Overall Section & Background */
.about-section {
    background-color: #fffaf5;
    background-image: radial-gradient(#dec6a1 0.5px, transparent 0.5px);
    background-size: 20px 20px; /* Dot pattern effect */
    position: relative;
}

.custom-about-container{
    position: relative;
    background-image: url("../images/sunflower-oil-table.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    overflow: hidden;
}

/* Optional overlay for better text visibility */
.custom-about-container::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0.56) 64%, rgba(255,255,255,0.12) 100%);
    z-index:0;
}

.custom-about-container > *{
    position: relative;
    z-index: 1;
}

/* 2. Label & Typography */
.about-label {
    color: #B02A27;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-label .dot {
    height: 10px;
    width: 10px;
    background-color: #B02A27;
    border-radius: 50%;
}

.section-title {
    font-size: 2.8rem;
    color: #ffffff;
    line-height: 1.2;
}

.custom-about-container .about-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #000000;
}

.btn-read-more {
    background-color: #B02A27;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-read-more:hover {
    background-color: #8a211f;
    color: white;
    transform: scale(1.05);
}

/*Feature Cards */
.features-stack {
    max-width: 320px;
    margin: 0 auto;
}

.feature-card {
    background: #fff9e6;
    border-radius: 15px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    text-align: left;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateX(10px);
}

.feature-text {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

/* 5. Image Animation */
.oil-main-img {
    max-width: 350px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
    animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .oil-main-img { max-width: 250px; }
}

.btn-read { background: var(--brand-red); color: #fff; border-radius: 50px; padding: 10px 30px; font-weight: 600; }
.feature-icon { color: var(--brand-yellow); font-size: 1.2rem; margin-right: 15px; }
.feature-icon-box {
    width: 50px;
    height: 50px;
    background-color: #FFF9E7; 
    color: #F2A20C; 
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem; /* V5 icons ke liye standard size */
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.feature-item:hover .feature-icon-box {
    background-color: #F2A20C;
    color: #fff;
    transform: scale(1.1);
}

.ms-3 { margin-left: 1rem !important; }

/* Homepage Product Slider */
.product-slider-section {
    background:
        radial-gradient(circle at top left, rgba(255, 213, 128, 0.18), transparent 24%),
        linear-gradient(180deg, #fffbf7 0%, #fff3ea 100%);
}

#productSlider .owl-stage {
    display: flex;
}

#productSlider .owl-item {
    display: flex;
    height: auto;
}

#productSlider .owl-nav,
#productSlider .owl-dots {
    display: none !important;
}

#productSlider .item {
    width: 100%;
    height: 100%;
    padding: 4px;
}

.custom-product-card {
    height: 100%;
    min-height: 100%;
    border-radius: 24px !important;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 247, 239, 0.96) 100%);
    box-shadow: 0 18px 45px rgba(101, 57, 18, 0.12) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.custom-product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #f3b33d, #cf6b08);
    z-index: 2;
}

.custom-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(101, 57, 18, 0.18) !important;
}

.product-img-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 26px 24px 12px;
    background:
        radial-gradient(circle at top, rgba(255, 219, 160, 0.55), rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, #fff8f1 0%, #fff1e3 100%);
}

.product-img-holder img {
    max-width: 100%;
    max-height: 220px;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(123, 68, 19, 0.18));
    transition: transform 0.3s ease;
}

.custom-product-card:hover .product-img-holder img {
    transform: scale(1.03);
}

.custom-product-card .card-body {
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 247, 239, 0.98) 100%);
}

.custom-product-card .card-body h4 {
    color: #4f2812;
    line-height: 1.35;
    min-height: 3.2rem;
    margin-bottom: 0.55rem !important;
}

.custom-product-card .card-body p {
    color: #775a42 !important;
    line-height: 1.7;
    min-height: 5.4rem;
}

.buy-btn {
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #efaa2e 0%, #ca6807 100%) !important;
    box-shadow: 0 12px 24px rgba(190, 102, 11, 0.22);
}

.buy-btn:hover {
    background: linear-gradient(135deg, #e39a1c 0%, #b85805 100%) !important;
}

@media (max-width: 991px) {
    .product-img-holder {
        min-height: 230px;
    }

    .custom-product-card .card-body h4,
    .custom-product-card .card-body p {
        min-height: 0;
    }
}

/* Product Showcase */
.product-showcase-section {
    background: linear-gradient(180deg, #fffaf7 0%, #fff4ef 100%);
}

.product-showcase-card {
    --product-card-surface: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 241, 231, 0.94) 48%, rgba(240, 216, 196, 0.88) 100%);
    min-height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0 18px 18px;
    border: 1px solid rgba(174, 112, 65, 0.12);
    border-radius: 16px;
    overflow: hidden;
    background:
        var(--product-card-surface),
        url('../images/products/products-background.jpg') center/cover no-repeat;
    box-shadow: 0 12px 30px rgba(103, 54, 25, 0.10);
}

.product-showcase-copy {
    flex: 0 0 56%;
    max-width: 56%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px 0;
}

.product-showcase-copy h2 {
    margin-bottom: 14px;
    color: #4d2715;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 500;
}

.product-showcase-copy h2 span {
    font-weight: 800;
}

.product-showcase-copy h3 {
    margin-bottom: 12px;
    color: #6b2f10;
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 700;
}

.product-showcase-copy p {
    margin-bottom: 24px;
    color: #5e4637;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 420px;
}

.product-showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    min-height: 40px;
    background: linear-gradient(180deg, #db8b30 0%, #c76817 100%);
    border: 1px solid #b95b12;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(168, 82, 12, 0.20);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.product-showcase-btn:hover {
    color: #fff;
}

.product-showcase-media {
    flex: 0 0 44%;
    max-width: 44%;
    min-height: 250px;
    position: relative;
    background: var(--product-card-surface);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.product-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.96;
}

@media (max-width: 1399px) {
    .product-showcase-copy h2 {
        font-size: 1.75rem;
    }

    .product-showcase-copy h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 991px) {
    .product-showcase-card {
        padding: 18px;
    }

    .product-showcase-copy,
    .product-showcase-media {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .product-showcase-copy h2 {
        font-size: 1.5rem;
    }

    .product-showcase-copy h3 {
        font-size: 1.15rem;
    }

    .product-showcase-copy p {
        font-size: 0.96rem;
        margin-bottom: 18px;
    }

    .product-showcase-media {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .product-showcase-card {
        flex-direction: column;
        padding: 18px 18px 0;
        gap: 16px;
    }

    .product-showcase-copy,
    .product-showcase-media {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-showcase-copy {
        padding: 0;
    }

    .product-showcase-copy h2 {
        font-size: 1.45rem;
    }

    .product-showcase-copy h3 {
        font-size: 1.08rem;
    }

    .product-showcase-copy p {
        max-width: none;
    }

    .product-showcase-media {
        min-height: 240px;
    }
}

/* Our Achievements */
.achievements-section {
    background:  
                url('../images/our-achievements-bg.jpg'); /* Background Image from image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* 2. Section Title Styling */
.achievements-title {
    letter-spacing: 3px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.title-line {
    width: 270px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F2A20C, transparent);
    margin: 10px auto;
}

/* 3. Glassmorphism Card Design */
.achievement-card {
    /* background: rgba(255, 255, 255, 0.05); */
    /* backdrop-filter: blur(5px); */
    border: 1px solid rgba(242, 162, 12, 0.3); /* Golden border glow */
    border-radius: 15px;
    padding: 30px 10px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: #F2A20C;
    box-shadow: 0 15px 40px rgba(242, 162, 12, 0.3); /* Glowing effect on hover */
}

/* 4. Counter Text Styling */
.counter-value {
    color: #F2A20C; /* Golden Yellow Color */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(242, 162, 12, 0.6);
}

.counter-label {
    color: #ffffff;
    text-transform: capitalize;
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .counter-value { font-size: 1.8rem; }
    .counter-label { font-size: 0.9rem; }
}

/* Home Blog Slider */
/* Card & Image Styles (No Changes) */
.blog-card {
    border-radius: 20px !important;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important; 
    transition: all 0.4s ease;
}
.blog-img-holder { height: 250px; overflow: hidden; }
.blog-img-holder img { 
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: 0.6s;
}
.blog-card:hover .blog-img-holder img { transform: scale(1.1); }

/* --- Name Clickable Styling --- */
.blog-title-hover {
    transition: color 0.3s ease;
}

/* Hover karne par title ka color change hoga (Brand Red) */
.blog-title-hover:hover {
    color: #B02A27 !important; 
    cursor: pointer;
}

.read-more-btn {
    background-color: #B02A27 !important;
    border: none !important;
    font-weight: 600;
    border-radius: 8px;
}

/* Our Partenrs */
.partners-section {
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,248,225,1) 100%);
    position: relative;
}

/* Title Divider */
.title-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, #F2A20C, transparent);
    margin: 15px auto;
}

/* Carousel Wrapper Fix (Important for dots spacing) */
.partners-slider {
    padding-bottom: 80px; /* Space for dots */
}

/* Partner Card */
.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Image Styling */
.partner-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Owl Dots Styling */
.partners-section .owl-theme .owl-dots {
    margin-top: 60px !important;
    display: flex;
    justify-content: center;
}

.partners-section .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #e0e0e0 !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.partners-section .owl-theme .owl-dots .owl-dot.active span,
.partners-section .owl-theme .owl-dots .owl-dot:hover span {
    background: #F2A20C !important;
    width: 30px;
}

.partners-section {
    background-image: url('../images/partners-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
}

/* Tablets & Small Laptops (768px to 1024px) */
@media (max-width: 1024px) {
    .partners-section {
        background-image: url('../images/partners-bg-mobile.jpg');        
        background-size: 100% 100%; 
        background-position: center;
        min-height: 400px;
    }
    .partner-card {
        height: 110px;
    }
}

/* Mobile Devices (Below 768px) */
@media (max-width: 767px) {
    .partners-section {
        background-image: url('../images/partners-bg-mobile.jpg');
        background-size: 100% 100%; 
        background-position: center;
        min-height: 500px;
        padding: 60px 0;
    }

    .partner-card {
        height: 100px;
        margin: 5px;
    }

    /* Section Header adjustments for mobile */
    .partners-section h2 {
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile (Below 480px) */
@media (max-width: 480px) {
    .partners-section {
        min-height: 200px;
    }
}

/* Scroll-top */
.scroll-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:45px;
    height:45px;
    background:#f7941d;
    color:#fff;
    text-align:center;
    line-height:45px;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    display:none;
    z-index:999;
}

.scroll-top:hover{
    background:#333;
}

/* Footer Section */
.footer-section {
    /* background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), 
                url('../images/footer-bg.jpg'); */
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.footer-logo { max-width: 80px; }

.footer-heading {
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #ffc107; /* Golden line */
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    /* transition: 0.3s; */
}

.footer-links a:hover {
    color: #ffc107;
    padding-left: 5px;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: #ffc107 !important;
}

/* Newsletter Box */
.newsletter-form input {
    border-radius: 30px 0 0 30px;
    padding: 12px 25px;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    background: linear-gradient(to right, #ffc107, #ff9800);
    border: none;
}

@media (max-width: 768px) {
    .newsletter-form { flex-direction: column; gap: 10px; }
    .newsletter-form input, .newsletter-form button { border-radius: 30px; }
}

/* About Us Page */
/* ================= BREADCRUMB ================= */
.breadcrumb-section {
    background: linear-gradient(90deg, #b30000, #ffcc00);
    padding: 12px 0;
    color: #fff;
}

.breadcrumb-text {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-text a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-text .divider {
    margin: 0 8px;
}

.breadcrumb-text .active {
    color: #ffd700;
    font-weight: 600;
}

/* ================= BANNER ================= */
.about-banner {
    position: relative;
    padding: 90px 0;
    color: #fff;
}

.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.about-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-banner h1 {
    font-size: 70px;
    margin-bottom: 10px;
}

/* divider */
.divider-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.divider-line::before,
.divider-line::after {
    content: "";
    width: 120px;
    height: 2px;
    background: gold;
}

.drop {
    width: 12px;
    height: 12px;
    background: gold;
    border-radius: 50%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .about-banner {
        background-size: 100% 100% !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }

    .about-banner h1 {
        font-size: 40px;
    }

    .divider-line::before,
    .divider-line::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-text {
        font-size: 14px;
    }

    .about-banner {
        padding: 80px 0;
    }

    .about-banner h1 {
        font-size: 32px;
    }
}
/* About Description */
.about-section {
    background: #f8f5ef;
}

/* TAG */
.about-tag {
    color: #c40000;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

/* TITLE */
.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #3b2b1d;
    margin: 15px 0;
}

/* TEXT */
.about-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* CARD */
/* CARD BASE */
.vm-card {
    background: linear-gradient(135deg, #8b0000, #c40000);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: 0.4s;
}

/* GOLD BORDER EFFECT */
.vm-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, gold, transparent, gold);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* INNER */
.vm-inner {
    position: relative;
    z-index: 2;
    gap: 20px;
}

/* ICON */
.vm-icon {
    min-width: 80px;
    height: 80px;
    background: radial-gradient(circle, gold, #ffcc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon img {
    width: 40px;
}

/* CONTENT */
.vm-content h4 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.vm-content p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* HOVER EFFECT */
.vm-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }

    .vm-inner {
        flex-direction: column;
        text-align: center;
    }

    .icon-box {
        margin-bottom: 10px;
    }
}

/* gallery section */
.gallery-section {
    position: relative;
    background:
        linear-gradient(rgba(255, 248, 240, 0.92), rgba(255, 255, 255, 0.96)),
}

.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(177, 32, 37, 0.08), rgba(255, 193, 7, 0.06));
    pointer-events: none;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

.gallery-section-title h2 {
    color: #1f1f1f;
}

.gallery-masonry-wrapper {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(177, 32, 37, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
}
.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item-masonry {
    /* Prevent images from breaking across columns */
    display: inline-block;
    width: 100%;
    margin-bottom: 20px; /* Space below each item */
    overflow: hidden;
    border-radius: 12px; /* Pinterest-style rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.gallery-item-masonry a {
    display: block;
    width: 100%;
    cursor: zoom-in;
}

.gallery-item-masonry img {
    width: 100%;
    height: auto; /* Allow image to keep its natural height */
    object-fit: contain; /* Don't cover/crop - this is key for masonry */
    display: block;
    transition: 0.3s ease;
}

/* Hover Effect - Zoom & Deeper Shadow */
.gallery-item-masonry:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item-masonry:hover img {
    transform: scale(1.02);
}

/* --- Responsive Adjustments --- */

/* For smaller tablets and large phones */
@media (max-width: 991px) {
    .gallery-masonry-wrapper {
        padding: 20px;
    }
    .gallery-masonry {
        column-count: 2;
    }
}

/* For mobile devices */
@media (max-width: 575px) {
    .gallery-masonry-wrapper {
        padding: 16px;
        border-radius: 18px;
    }
    .gallery-masonry {
        column-count: 1;
        column-gap: 0;
    }
    .gallery-item-masonry {
        margin-bottom: 15px;
    }
}

/* Testimonials */
.testimonial-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 193, 7, 0.18), transparent 32%),
        linear-gradient(180deg, #fffdf8 0%, #fff4eb 100%);
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(177, 32, 37, 0.04), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.testimonial-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .item {
    padding: 48px 12px 24px;
}

.testimonial-card {
    position: relative;
    min-height: 320px;
    padding: 78px 28px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(177, 32, 37, 0.1);
    box-shadow: 0 18px 40px rgba(35, 22, 12, 0.08);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(6px);
}

.testimonial-avatar-wrap {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b12025, #f3b441);
    box-shadow: 0 12px 24px rgba(177, 32, 37, 0.22);
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #fff;
}

.testimonial-content h4 {
    margin-bottom: 6px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f1f1f;
}

.testimonial-role {
    display: inline-block;
    margin-bottom: 18px;
    color: #b12025;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonial-content p {
    position: relative;
    margin: 0;
    padding: 0 18px;
    color: #5a514b;
    line-height: 1.8;
    font-size: 0.98rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    position: absolute;
    color: rgba(177, 32, 37, 0.45);
    font-family: Georgia, serif;
    font-size: 1.9rem;
    line-height: 1;
}

.testimonial-content p::before {
    content: "\201C";
    left: 0;
    top: -6px;
}

.testimonial-content p::after {
    content: "\201D";
    right: 0;
    bottom: -10px;
}

.testimonial-carousel .owl-stage-outer {
    padding: 10px 0 20px;
}

.testimonial-carousel .owl-item {
    opacity: 0.55;
    transition: opacity 0.35s ease;
}

.testimonial-carousel .owl-item .testimonial-card {
    transform: scale(0.9);
}

.testimonial-carousel .owl-item.center {
    opacity: 1;
}

.testimonial-carousel .owl-item.center .testimonial-card {
    transform: scale(1.06);
    box-shadow: 0 28px 55px rgba(177, 32, 37, 0.18);
    background: #ffffff;
}

.testimonial-carousel .owl-dots {
    margin-top: 18px;
}

.testimonial-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 6px;
    background: rgba(177, 32, 37, 0.25) !important;
}

.testimonial-carousel .owl-dot.active span {
    background: #b12025 !important;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    position: absolute;
    inset: 50% -22px auto;
    transform: translateY(-50%);
}

.testimonial-carousel .owl-nav.disabled {
    display: flex !important;
}

.testimonial-carousel .owl-nav button {
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    border: 0 !important;
    background: linear-gradient(135deg, #b12025, #db8e2d) !important;
    color: #fff !important;
    font-size: 1.25rem !important;
    box-shadow: 0 14px 24px rgba(177, 32, 37, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-carousel .owl-nav button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 28px rgba(177, 32, 37, 0.24);
}

.testimonial-carousel .owl-nav button span {
    display: block;
    line-height: 1;
}

@media (max-width: 991px) {
    .testimonial-card {
        min-height: 300px;
        padding: 74px 24px 26px;
    }
}

@media (max-width: 575px) {
    .testimonial-carousel .item {
        padding: 42px 8px 18px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 70px 20px 24px;
        border-radius: 22px;
    }

    .testimonial-content p {
        padding: 0 14px;
    }

    .testimonial-avatar-wrap {
        width: 86px;
        height: 86px;
        top: -38px;
    }

    .testimonial-carousel .owl-nav {
        inset: auto 0 -4px;
        transform: none;
        position: relative;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
    }

    .testimonial-carousel .owl-item .testimonial-card,
    .testimonial-carousel .owl-item.center .testimonial-card {
        transform: scale(1);
    }
}

/*Team Members*/
.team-carousel-section {
    overflow: hidden;
    background: linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}

.team-grid {
    justify-content: center;
}

.team-card-flip {
    height: 100%;
}

.team-card-flip-inner {
    width: 100%;
    height: 100%;
}

.team-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #111;
    border-radius: 24px;
    padding: 14px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 140, 0, 0.16);
}

.team-card-front {
    background: linear-gradient(180deg, #181818 0%, #050505 100%);
}

.team-card-front::after {
    content: "";
    display: none;
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.94) 100%);
    pointer-events: none;
}

.team-card-back {
    display: none;
    background: linear-gradient(145deg, #8a1418 0%, #2d0f0f 100%);
    color: #fff;
}

.team-card .img-box {
    position: relative;
    z-index: 1;
    flex: 1;
}

.team-card .img-box img {
    border-radius: 18px;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-description-box {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 320px;
    padding: 26px 24px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(176, 42, 39, 0.96), rgba(45, 15, 15, 0.96));
}

.team-description-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    line-height: 1.7;
    text-align: left;
}

.team-info {
    position: relative;
    z-index: 2;
    padding: 22px 14px 12px;
    color: #fff;
}

.team-info h4 {
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.team-info p {
    color: #ffb347;
    font-size: 0.95rem;
    margin: 0;
}

.team-label {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.14);
    color: #ffd27f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-back-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 26px 22px;
}

.team-back-content h4 {
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.team-back-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.team-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-highlights li {
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff5de;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .team-card .img-box img {
        height: 280px;
    }

    .team-description-box {
        min-height: 280px;
    }
}

@media (max-width: 575px) {
    .team-card {
        padding: 12px;
    }

    .team-card .img-box img {
        height: 250px;
    }

    .team-description-box {
        min-height: 250px;
        padding: 22px 18px;
    }
}

/* Process Page */
.process-page-section {
    position: relative;
    overflow: hidden;
}

.process-section-light {
    background:
        radial-gradient(circle at top left, rgba(243, 180, 65, 0.16), transparent 28%),
        linear-gradient(180deg, #fff9f2 0%, #ffffff 100%);
}

.process-section-dark {
    /* background:
        radial-gradient(circle at top right, rgba(243, 180, 65, 0.14), transparent 24%),
        linear-gradient(180deg, #2f1d12 0%, #180f09 100%); */
    background: linear-gradient(90deg, #bb51516b, #fdcb0285)
}

.process-section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(177, 32, 37, 0.16), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.process-page-section .container {
    position: relative;
    z-index: 1;
}

.process-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.process-section-heading h2 {
    color: #3b2b1d;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-section-heading p {
    color: #6b625b;
    margin: 0;
    font-size: 1rem;
}

.process-section-dark .process-section-heading h2,
.process-section-dark .process-info-block h3 {
    color: #fff8f0;
}

.process-section-dark .process-section-heading p,
.process-section-dark .process-info-block p {
    color: rgba(255, 243, 232, 0.82);
}

.process-steps-row {
    margin-bottom: 0;
}

.process-step-card {
    position: relative;
    height: 100%;
    padding: 42px 24px 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 30px rgba(61, 39, 22, 0.08);
    border: 1px solid rgba(222, 170, 102, 0.18);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(61, 39, 22, 0.12);
}

.process-step-number {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59f17, #ffcb69);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(245, 159, 23, 0.28);
}

.process-step-card h3 {
    color: #47362a;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.process-step-card p {
    color: #6c635d;
    margin: 0;
    line-height: 1.75;
    font-size: 0.96rem;
}

.process-detail-row {
    margin-bottom: 0;
}

.process-info-block {
    height: 100%;
    padding: 14px 8px 14px 4px;
}

.process-info-block h3,
.process-highlight-card h3 {
    color: #3b2b1d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.process-info-block p {
    color: #5f5751;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.process-highlight-card {
    height: 100%;
    border-radius: 24px;
    padding: 34px 32px;
    background:
        linear-gradient(135deg, rgba(174, 25, 19, 0.92), rgba(243, 135, 29, 0.92)),
        url('../images/gallerybg.png') center/cover no-repeat;
    color: #fff;
    box-shadow: 0 18px 42px rgba(177, 32, 37, 0.2);
}

.process-highlight-card h3 {
    color: #fff;
}

.process-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-highlight-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.7;
}

.process-highlight-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ffd36c;
}

.process-quality-card {
    padding: 24px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 211, 108, 0.16);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.process-quality-top {
    margin-bottom: 12px;
}

.process-quality-image {
    min-height: 240px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.process-quality-image img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
}

.process-quality-intro p,
.process-quality-point p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.process-quality-bottom {
    padding-top: 8px;
}

.process-quality-point {
    margin-bottom: 18px;
}

.process-quality-point:last-child {
    margin-bottom: 0;
}

.process-quality-point h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-capacity-heading,
.process-gallery-heading {
    margin-bottom: 26px;
}

.process-capacity-card {
    padding: 0;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(245, 184, 66, 0.18), transparent 30%),
        linear-gradient(180deg, #fffaf4 0%, #fff7ef 100%);
    border: 1px solid rgba(235, 199, 146, 0.55);
    box-shadow: 0 18px 40px rgba(106, 74, 42, 0.12);
    overflow: hidden;
}

.process-capacity-hero {
    position: relative;
    min-height: 270px;
    padding: 34px 40px;
}

.process-capacity-copy {
    position: relative;
    z-index: 2;
    width: min(58%, 560px);
}

.process-capacity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-capacity-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    color: #44362b;
    line-height: 1.45;
    font-size: 1.05rem;
    font-weight: 500;
}

.process-capacity-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: #f59f17;
    font-size: 1.15rem;
}

.process-capacity-hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(48%, 480px);
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.process-capacity-hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fff8f1 6%, rgba(255, 248, 241, 0.96) 18%, rgba(255, 248, 241, 0.15) 48%, rgba(255, 248, 241, 0) 100%);
    z-index: 2;
}

.process-capacity-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(38%) saturate(78%) brightness(1.02);
    opacity: 0.92;
}

.process-gallery-row {
    margin-top: 4px;
}

.process-gallery-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(61, 39, 22, 0.12);
    height: 100%;
}

.process-gallery-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.process-gallery-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .process-section-heading h2 {
        font-size: 1.95rem;
    }

    .process-info-block h3,
    .process-highlight-card h3 {
        font-size: 1.75rem;
    }

    .process-highlight-card,
    .process-capacity-card {
        padding: 26px 22px;
    }

    .process-capacity-hero {
        min-height: 240px;
        padding: 28px 26px;
    }

    .process-capacity-copy {
        width: 60%;
    }

    .process-capacity-list li {
        font-size: 0.98rem;
    }

    .process-quality-image,
    .process-quality-image img {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .process-page-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .process-step-card {
        padding: 34px 20px 22px;
    }

    .process-step-card h3 {
        font-size: 1.25rem;
    }

    .process-info-block {
        padding: 0;
    }

    .process-info-block h3,
    .process-highlight-card h3 {
        font-size: 1.5rem;
    }

    .process-gallery-card img {
        height: 220px;
    }

    .process-capacity-hero {
        display: flex;
        flex-direction: column;
        gap: 18px;
        min-height: auto;
    }

    .process-capacity-copy,
    .process-capacity-hero-image {
        width: 100%;
        position: relative;
    }

    .process-capacity-hero-image {
        height: 220px;
    }

    .process-capacity-hero-image::before {
        background: linear-gradient(180deg, rgba(255, 248, 241, 0.18), rgba(255, 248, 241, 0));
    }

    .process-quality-top {
        margin-bottom: 8px;
    }
}

@media (max-width: 575px) {
    .process-section-heading {
        margin-bottom: 26px;
    }

    .process-section-heading h2 {
        font-size: 1.65rem;
    }

    .process-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.45rem;
    }

    .process-capacity-card {
        border-radius: 22px;
    }

    .process-capacity-hero {
        padding: 22px 18px;
    }

    .process-quality-card {
        padding: 20px 18px;
    }

    .process-gallery-card img,
    .process-capacity-hero-image {
        height: 200px;
    }

    .process-quality-image,
    .process-quality-image img {
        min-height: 200px;
    }
}

/* Product Detail Page */
.nutfresh-page {
    --nf-bg: #fff9f0;
    --nf-surface: #ffffff;
    --nf-surface-soft: #fff2dd;
    --nf-line: rgba(145, 89, 20, 0.12);
    --nf-title: #5c2f0d;
    --nf-text: #6a4b2f;
    --nf-accent: #d97d0d;
    --nf-accent-dark: #9e4d06;
    --nf-shadow: 0 18px 45px rgba(103, 57, 8, 0.12);
    background:
        radial-gradient(circle at top left, rgba(252, 198, 88, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(210, 117, 10, 0.12), transparent 24%),
        linear-gradient(180deg, #fffdf8 0%, var(--nf-bg) 100%);
    color: var(--nf-text);
}

.nutfresh-page .container {
    position: relative;
    z-index: 1;
}

.nutfresh-section {
    padding: 58px 0;
}

.nutfresh-section-title {
    margin-bottom: 28px;
    text-align: center;
}

.nutfresh-section-title .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--nf-accent-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nutfresh-section-title h2 {
    margin-bottom: 8px;
    color: var(--nf-title);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
}

.nutfresh-section-title p {
    max-width: 640px;
    margin: 0 auto;
    color: #8a6444;
}

.nutfresh-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
    background:
        linear-gradient(90deg, rgba(70, 34, 10, 0.94) 0%, rgba(119, 68, 20, 0.84) 44%, rgba(255, 216, 153, 0.4) 100%),
        url("images/products/product-list.png") center/cover no-repeat;
}

.nutfresh-hero::before,
.nutfresh-packaging::before,
.nutfresh-nutrition::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 227, 174, 0.28) 1.2px, transparent 1.2px);
    background-size: 18px 18px;
    opacity: 0.35;
}

.nutfresh-hero-copy {
    max-width: 560px;
    color: #fff5e5;
}

.nutfresh-hero-copy .hero-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 228, 180, 0.35);
    border-radius: 999px;
    background: rgba(255, 245, 229, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nutfresh-hero-copy h1 {
    margin-bottom: 14px;
    color: #fff6db;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.05;
}

.nutfresh-hero-copy h1 span {
    display: block;
    color: #ffd36d;
}

.nutfresh-hero-copy .hero-subtitle {
    margin-bottom: 12px;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 600;
    line-height: 1.25;
}

.nutfresh-hero-copy .hero-text {
    max-width: 500px;
    margin-bottom: 24px;
    color: rgba(255, 244, 223, 0.88);
    font-size: 16px;
}

.nutfresh-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.nutfresh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 170px;
    padding: 13px 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nutfresh-btn:hover {
    transform: translateY(-2px);
}

.nutfresh-btn-primary {
    background: linear-gradient(135deg, #f3a325 0%, #cf6a08 100%);
    box-shadow: 0 14px 24px rgba(169, 87, 9, 0.28);
    color: #fff;
}

.nutfresh-btn-secondary {
    border-color: rgba(255, 238, 205, 0.35);
    background: rgba(255, 247, 232, 0.09);
    color: #fff7e8;
}

.nutfresh-hero-visual {
    display: flex;
    justify-content: center;
}

.nutfresh-hero-card {
    position: relative;
    width: min(100%, 450px);
    padding: 22px;
    border: 1px solid rgba(255, 234, 196, 0.38);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 252, 245, 0.16), rgba(255, 233, 190, 0.09));
    box-shadow: 0 24px 60px rgba(36, 18, 5, 0.28);
    backdrop-filter: blur(10px);
}

.nutfresh-hero-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 205, 98, 0.85) 0%, rgba(255, 205, 98, 0) 72%);
}

.nutfresh-hero-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(74, 38, 6, 0.32);
}

.nutfresh-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.nutfresh-overview-grid.no-media,
.nutfresh-overview-grid:has(> .nutfresh-media-card.d-none) {
    grid-template-columns: 1fr;
}

.nutfresh-overview-grid.no-media .nutfresh-copy-card,
.nutfresh-overview-grid:has(> .nutfresh-media-card.d-none) .nutfresh-copy-card {
    width: 100%;
}

.nutfresh-overview-grid > .nutfresh-copy-card:only-child,
.nutfresh-overview-grid > .nutfresh-media-card.d-none + .nutfresh-copy-card {
    grid-column: 1 / -1;
}

.nutfresh-media-card,
.nutfresh-copy-card,
.nutfresh-pack-card,
.nutfresh-nutrition-card {
    border: 1px solid var(--nf-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--nf-shadow);
}

.nutfresh-media-card {
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(255, 239, 213, 0.9), rgba(255, 250, 242, 0.96)),
        url("images/sunflower-oil-table.jpg") center/cover no-repeat;
}

.nutfresh-media-card img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 16px 34px rgba(94, 47, 13, 0.18);
}

.nutfresh-copy-card {
    padding: 30px 32px;
}

.nutfresh-copy-card h2 {
    margin-bottom: 10px;
    color: var(--nf-title);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
}

.nutfresh-copy-card .lead {
    margin-bottom: 18px;
    color: var(--nf-accent-dark);
    font-size: 18px;
    font-weight: 600;
}

.nutfresh-feature-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.nutfresh-feature-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #6f553a;
}

.nutfresh-feature-list i {
    margin-top: 4px;
    color: var(--nf-accent);
}

.nutfresh-benefits-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.nutfresh-benefit {
    padding: 26px 18px;
    border: 1px solid rgba(223, 172, 95, 0.18);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 229, 0.96));
    text-align: center;
    box-shadow: 0 12px 28px rgba(109, 61, 10, 0.08);
}

.nutfresh-benefit .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd35e, #e79010);
    color: #fff;
    font-size: 26px;
    box-shadow: 0 12px 24px rgba(219, 129, 14, 0.28);
}

.nutfresh-benefit h3 {
    margin-bottom: 0;
    color: var(--nf-title);
    font-size: 18px;
    font-weight: 600;
}

.nutfresh-packaging {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 246, 229, 0.78), rgba(255, 255, 255, 0.96)),
        url("images/products/product-list-3.png") center/cover no-repeat;
}

.nutfresh-packaging-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.nutfresh-pack-card {
    position: relative;
    padding: 18px 16px 20px;
    text-align: center;
    overflow: hidden;
}

.nutfresh-pack-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #f1b13a, #d46c0c);
}

.nutfresh-pack-card .pack-thumb {
    height: 150px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nutfresh-pack-card .pack-thumb img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 14px 28px rgba(98, 50, 9, 0.14);
}

.nutfresh-pack-card h3 {
    margin-bottom: 6px;
    color: var(--nf-title);
    font-size: 20px;
    font-weight: 700;
}

.nutfresh-pack-card p {
    margin-bottom: 0;
    color: #8a6543;
    font-size: 14px;
}

.nutfresh-nutrition {
    position: relative;
    overflow: hidden;
}

.nutfresh-nutrition-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
}

.nutfresh-nutrition-grid:has(> .nutfresh-nutrition-card.d-none) {
    grid-template-columns: 1fr;
}

.nutfresh-nutrition-grid > .nutfresh-nutrition-card:only-child,
.nutfresh-nutrition-grid > .nutfresh-nutrition-card.d-none + .nutfresh-nutrition-card,
.nutfresh-nutrition-grid > .nutfresh-nutrition-card:has(+ .nutfresh-nutrition-card.d-none) {
    grid-column: 1 / -1;
}

.nutfresh-nutrition-card {
    padding: 26px 28px;
}

.nutfresh-table {
    width: 100%;
    margin-bottom: 0;
}

.nutfresh-table tr + tr td {
    border-top: 1px solid rgba(145, 89, 20, 0.12);
}

.nutfresh-table td {
    padding: 14px 8px;
    color: #68492b;
    font-size: 15px;
}

.nutfresh-table td:last-child {
    color: var(--nf-title);
    font-weight: 600;
    text-align: right;
}

.nutfresh-highlight-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.nutfresh-highlight-head .drop-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd35f, #e88d0b);
    color: #fff;
    font-size: 24px;
}

.nutfresh-highlight-head h3,
.nutfresh-nutrition-card h3 {
    margin-bottom: 0;
    color: var(--nf-title);
    font-size: 28px;
    font-weight: 700;
}

.nutfresh-facts {
    margin: 0;
    padding-left: 18px;
    color: #68492b;
}

.nutfresh-facts li + li {
    margin-top: 10px;
}

.nutfresh-usage {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 213, 121, 0.22), rgba(246, 155, 31, 0.12));
    color: #6a4318;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .nutfresh-packaging-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .nutfresh-hero {
        padding: 56px 0 46px;
    }

    .nutfresh-overview-grid,
    .nutfresh-nutrition-grid {
        grid-template-columns: 1fr;
    }

    .nutfresh-benefits-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .nutfresh-section {
        padding: 46px 0;
    }

    .nutfresh-copy-card,
    .nutfresh-nutrition-card {
        padding: 24px 20px;
    }

    .nutfresh-packaging-grid,
    .nutfresh-benefits-row {
        grid-template-columns: 1fr;
    }

    .nutfresh-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nutfresh-btn {
        width: 100%;
    }
}
.sunfresh-packaging-grid .pack-thumb {
    height: 170px;
}

.sunfresh-packaging-grid .pack-thumb a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.sunfresh-packaging-grid .pack-thumb img {
    transition: transform 0.25s ease;
    transform-origin: center center;
}

.sunfresh-packaging-grid .pack-thumb .pack-image-500ml {
    transform: scale(1.14);
}

.sunfresh-packaging-grid .pack-thumb .pack-image-1ltr {
    transform: scale(1.14);
}

.sunfresh-packaging-grid .pack-thumb .pack-image-5ltr {
    transform: scale(1.1);
}

/* Contact Us Page */
.contact-page {
    --ct-bg: #fff9f1;
    --ct-surface: rgba(255, 252, 246, 0.9);
    --ct-line: rgba(151, 90, 20, 0.14);
    --ct-title: #5e3010;
    --ct-text: #6f5135;
    --ct-muted: #8b6846;
    --ct-accent: #d98612;
    --ct-accent-dark: #aa5607;
    --ct-shadow: 0 18px 42px rgba(99, 54, 8, 0.12);
    background:
        radial-gradient(circle at left top, rgba(255, 199, 96, 0.16), transparent 22%),
        radial-gradient(circle at right top, rgba(224, 145, 33, 0.14), transparent 18%),
        linear-gradient(180deg, #fffdf8 0%, var(--ct-bg) 100%);
    color: var(--ct-text);
}

.contact-page .container {
    position: relative;
    z-index: 1;
}

.contact-section {
    padding: 58px 0;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 44px;
    background:
        linear-gradient(90deg, rgba(83, 40, 11, 0.92) 0%, rgba(124, 68, 21, 0.78) 42%, rgba(255, 222, 167, 0.3) 100%),
        url("images/products/product-list.png") center/cover no-repeat;
}

.contact-hero::before,
.contact-form-wrap::before,
.contact-map-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 230, 185, 0.24) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.35;
}

.contact-hero-copy {
    max-width: 540px;
    color: #fff5e7;
}

.contact-hero-copy .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 235, 207, 0.28);
    border-radius: 999px;
    background: rgba(255, 245, 229, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-hero-copy h1 {
    margin-bottom: 12px;
    color: #fff3dd;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.05;
}

.contact-hero-copy p {
    margin-bottom: 0;
    color: rgba(255, 243, 223, 0.9);
    font-size: 17px;
}

.contact-hero-visual {
    display: flex;
    justify-content: center;
}

.contact-hero-bottle {
    width: min(100%, 360px);
    padding: 18px;
    border: 1px solid rgba(255, 230, 189, 0.34);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 251, 243, 0.16), rgba(255, 230, 188, 0.12));
    box-shadow: 0 24px 58px rgba(40, 19, 5, 0.24);
    backdrop-filter: blur(10px);
}

.contact-hero-bottle img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(69, 34, 7, 0.22);
}

.contact-card,
.contact-form-card,
.contact-map-card {
    border: 1px solid var(--ct-line);
    border-radius: 24px;
    background: var(--ct-surface);
    box-shadow: var(--ct-shadow);
}

.contact-card {
    padding: 24px 20px;
    min-height: 100%;
}

.contact-location-card {
    padding: 28px 24px;
}

.contact-location-card .location-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ct-accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-location-card h3 {
    margin-bottom: 10px;
    color: var(--ct-title);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.contact-location-card .company-link {
    display: inline-block;
    margin-bottom: 14px;
    color: #0a8acb;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.contact-location-card .company-link:hover {
    color: #066ea1;
}

.contact-address {
    margin-bottom: 18px;
    color: var(--ct-text);
    font-size: 18px;
    line-height: 1.8;
}

.contact-detail-list {
    display: grid;
    gap: 10px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 215, 149, 0.14), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(175, 107, 21, 0.1);
}

.contact-detail-item i {
    width: 18px;
    margin-top: 4px;
    color: var(--ct-accent);
    text-align: center;
}

.contact-detail-item strong {
    color: #c52214;
    font-weight: 700;
}

.contact-detail-item a,
.contact-detail-item span {
    color: var(--ct-title);
    text-decoration: none;
    word-break: break-word;
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd35d, #dd830d);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 12px 22px rgba(218, 133, 16, 0.24);
}

.contact-card h3 {
    margin-bottom: 8px;
    color: var(--ct-title);
    font-size: 24px;
    font-weight: 700;
}

.contact-card .primary {
    display: block;
    margin-bottom: 8px;
    color: var(--ct-title);
    font-weight: 600;
    text-decoration: none;
}

.contact-card p {
    margin-bottom: 0;
    color: var(--ct-muted);
    line-height: 1.7;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 10px;
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4b53e, #d66b08);
    color: #fff;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.contact-socials a:hover {
    transform: translateY(-2px);
}

.contact-form-wrap {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 247, 233, 0.88), rgba(255, 255, 255, 0.96)),
        url("images/sunflower-oil-table.jpg") center/cover no-repeat;
}

.contact-form-card {
    padding: 34px;
}

.contact-section-heading {
    margin-bottom: 26px;
    text-align: center;
}

.contact-section-heading h2 {
    margin-bottom: 8px;
    color: var(--ct-title);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
}

.contact-section-heading p {
    margin-bottom: 0;
    color: var(--ct-muted);
}

.contact-form-layout {
    max-width: 860px;
    margin: 0 auto;
}

.contact-form-fields .form-control {
    min-height: 54px;
    border: 1px solid rgba(152, 95, 26, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ct-title);
    box-shadow: none;
}

.contact-form-fields .form-control:focus {
    border-color: rgba(212, 116, 13, 0.42);
    box-shadow: 0 0 0 0.2rem rgba(217, 134, 18, 0.12);
}

.contact-form-fields textarea.form-control {
    min-height: 170px;
    resize: vertical;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 24px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #f3a62e 0%, #cb6707 100%);
    box-shadow: 0 14px 26px rgba(178, 96, 11, 0.24);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.contact-map-section {
    position: relative;
    overflow: hidden;
}

.contact-map-card {
    overflow: hidden;
    height: 100%;
}

.contact-map-copy {
    padding: 28px 30px 14px;
}

.contact-map-copy h2 {
    margin-bottom: 8px;
    color: var(--ct-title);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
}

.contact-map-copy p {
    margin-bottom: 0;
    color: var(--ct-muted);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.contact-branches-section {
    position: relative;
}

.contact-branches-heading {
    max-width: 760px;
    margin: 0 auto 28px;
}

.contact-branches-list {
    border: 1px solid var(--ct-line);
    border-radius: 28px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: var(--ct-shadow);
    overflow: hidden;
}

.branch-item {
    display: flex;
    gap: 18px;
    width: 100%;
    padding: 24px 26px;
    border: 0;
    background: transparent;
    text-align: left;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.branch-item + .branch-item {
    border-top: 1px solid rgba(151, 90, 20, 0.16);
}

.branch-item.active {
    background: linear-gradient(135deg, rgba(255, 215, 149, 0.22), rgba(255, 246, 229, 0.95));
}

.branch-item:hover {
    background: rgba(255, 247, 233, 0.9);
}

.branch-item:focus-visible {
    outline: 2px solid rgba(212, 116, 13, 0.45);
    outline-offset: -2px;
}

.branch-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffa329 0%, #ef6c00 100%);
    box-shadow: 0 14px 24px rgba(239, 108, 0, 0.24);
    color: #fff;
    font-size: 23px;
}

.branch-copy {
    display: block;
}

.branch-kicker {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--ct-accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.branch-copy h3 {
    margin-bottom: 8px;
    color: #101010;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.branch-copy p {
    margin-bottom: 0;
    color: #5f5f5f;
    font-size: 17px;
    line-height: 1.8;
}

.contact-branches-visual,
.contact-branches-visual .tab-content,
.contact-branches-visual .tab-pane.active,
.branches-visual-card {
    height: 100%;
}

.branches-visual-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 30px 26px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 208, 138, 0.25), transparent 20%),
        linear-gradient(180deg, #fff4e0 0%, #ffe1b8 100%);
    border: 1px solid rgba(212, 116, 13, 0.18);
    box-shadow: var(--ct-shadow);
}

.branch-map-link {
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.branch-map-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(99, 54, 8, 0.18);
    color: inherit;
}

.branches-visual-card::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 171, 64, 0.16);
}

.branches-visual-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ct-accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.branches-visual-card h3 {
    margin-bottom: 20px;
    color: var(--ct-title);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.branches-visual-address {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    color: var(--ct-title);
    font-size: 17px;
    line-height: 1.8;
}

.branches-visual-grid {
    position: relative;
    flex: 1 1 auto;
    min-height: 220px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 166, 46, 0.14), rgba(255, 255, 255, 0.55)),
        linear-gradient(135deg, rgba(255, 193, 117, 0.3), rgba(255, 239, 214, 0.9));
}

.branches-visual-grid::before {
    content: "";
    position: absolute;
    inset: 22px;
    z-index: 0;
    border-radius: 26% 40% 30% 42%;
    background: linear-gradient(180deg, #ff9720 0%, #f47a0b 100%);
    clip-path: polygon(36% 2%, 60% 9%, 72% 20%, 85% 22%, 93% 35%, 84% 47%, 88% 61%, 77% 76%, 62% 82%, 57% 96%, 44% 90%, 32% 93%, 25% 80%, 12% 68%, 10% 49%, 4% 36%, 15% 24%, 24% 10%);
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.branches-visual-grid iframe {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    min-height: 220px;
    border: 0;
    background: #fff;
}

.branches-visual-point {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ct-title);
    font-size: 14px;
    font-weight: 700;
}

.branches-visual-point.is-active strong {
    color: #2b1807;
}

.point-mumbai {
    left: 18%;
    top: 54%;
}

.point-adoni {
    left: 42%;
    top: 66%;
}

.pin-dot {
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #f47a0b;
    box-shadow: 0 0 0 4px rgba(244, 122, 11, 0.18);
}

.branches-visual-footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.branches-visual-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ct-title);
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .branch-item {
        padding: 22px;
    }

    .branch-copy h3 {
        font-size: 20px;
    }

    .branch-copy p,
    .branches-visual-address {
        font-size: 16px;
        line-height: 1.7;
    }

    .branches-visual-card h3 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .contact-branches-heading {
        margin-bottom: 22px;
    }

    .contact-branches-list {
        border-radius: 24px;
    }

    .branch-item {
        align-items: flex-start;
        min-height: 100%;
        padding: 20px 22px;
    }

    .branch-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 20px;
    }

    .branch-kicker {
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .branch-copy h3 {
        font-size: 19px;
    }

    .contact-branches-visual {
        margin-top: 6px;
    }

    .branches-visual-card {
        padding: 26px 22px;
        border-radius: 24px;
    }

    .branches-visual-grid {
        min-height: 210px;
    }

    .branches-visual-grid::before {
        inset: 18px;
    }

    .point-mumbai {
        left: 16%;
        top: 53%;
    }

    .point-adoni {
        left: 40%;
        top: 65%;
    }

    .branches-visual-footer {
        gap: 10px;
    }

    .contact-hero {
        padding: 56px 0 42px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 46px 0;
    }

    .contact-form-card {
        padding: 24px 20px;
    }

    .contact-map-copy {
        padding: 24px 20px 12px;
    }

    .contact-map-frame iframe {
        height: 320px;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-branches-heading {
        margin-bottom: 18px;
        text-align: center;
    }

    .contact-branches-list {
        border-radius: 20px;
    }

    .branch-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
    }

    .branch-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 18px;
    }

    .branch-copy h3 {
        margin-bottom: 6px;
        font-size: 18px;
    }

    .branch-copy p {
        font-size: 16px;
        line-height: 1.65;
    }

    .contact-branches-visual {
        margin-top: 0;
    }

    .branches-visual-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .branches-visual-card h3 {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .branches-visual-address {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.65;
    }

    .branches-visual-grid {
        min-height: 200px;
        border-radius: 18px;
    }

    .branches-visual-grid::before {
        inset: 16px;
    }

    .branches-visual-point {
        gap: 6px;
        font-size: 12px;
    }

    .point-mumbai {
        left: 14%;
        top: 54%;
    }

    .point-adoni {
        left: 37%;
        top: 67%;
    }

    .branches-visual-footer {
        margin-top: 16px;
    }

    .branches-visual-footer span {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .contact-branches-list {
        border-radius: 18px;
    }

    .branch-item {
        padding: 18px 16px;
        gap: 12px;
    }

    .branch-kicker {
        font-size: 10px;
    }

    .branch-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 17px;
    }

    .branch-copy h3 {
        font-size: 16px;
    }

    .branch-copy p {
        font-size: 15px;
    }

    .branches-visual-card {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .branches-visual-label {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .branches-visual-card h3 {
        font-size: 20px;
    }

    .branches-visual-address {
        font-size: 14px;
    }

    .branches-visual-grid {
        min-height: 180px;
    }

    .branches-visual-grid::before {
        inset: 14px;
    }

    .pin-dot {
        width: 12px;
        height: 12px;
    }

    .point-mumbai {
        left: 12%;
        top: 55%;
    }

    .point-adoni {
        left: 35%;
        top: 68%;
    }
}

/* About page sections */
.about-section,
.gallery-section {
    background: #ffffff;
    position: relative;
}

.about-section::before,
.gallery-section::before {
    content: none;
}

.about-section.bg-color,
.gallery-section.bg-color {
    background:
        linear-gradient(rgba(255, 248, 240, 0.92), rgba(255, 255, 255, 0.96));
}

.about-section.bg-color::before,
.gallery-section.bg-color::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(177, 32, 37, 0.08), rgba(255, 193, 7, 0.06));
    pointer-events: none;
}

.about-intro-section .container,
.about-mission-section .container,
.about-history-section .container,
.about-awards-section .container,
.about-companies-section .container,
.gallery-section .container {
    position: relative;
    z-index: 1;
}

.about-intro-section {
    padding-bottom: 42px !important;
}

.about-mission-section,
.about-history-section,
.about-awards-section,
.about-companies-section {
    padding-top: 42px !important;
}

.about-mission-panel {
    background: #ffffff;
    border: 1px solid rgba(176, 42, 39, 0.12);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(59, 43, 29, 0.08);
    padding: 38px;
}

.about-intro-image {
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(59, 43, 29, 0.14);
    max-width: 520px;
    margin-left: auto;
    overflow: hidden;
    position: relative;
}

.about-intro-image img {
    display: block;
    height: auto;
    width: 100%;
}

.history-panel,
.awards-panel,
.companies-panel {
    max-width: 1000px;
    margin: 0 auto;
}

.history-panel p,
.awards-panel p,
.companies-panel > p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.history-panel p:last-child,
.awards-panel p:last-child {
    margin-bottom: 0;
}

/* Our Way Section - Our History Page Start */
.history-timeline-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
    position: relative;
}

.history-timeline-section .container {
    position: relative;
    z-index: 1;
}

.history-timeline-grid {
    align-items: stretch;
}

.timeline-card {
    --timeline-color: #14a9e7;
    --timeline-shadow: rgba(20, 169, 231, 0.22);
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 18px 42px rgba(59, 43, 29, 0.08);
    display: flex;
    flex-direction: column;
    min-height: 330px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    box-shadow: 0 22px 52px var(--timeline-shadow);
    transform: translateY(-5px);
}

/* .timeline-card::after {
    border-left: 18px solid rgba(0, 0, 0, 0.28);
    border-top: 24px solid transparent;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    top: 70px;
    width: 0;
    z-index: 1;
} */

.timeline-date {
    align-items: center;
    background: var(--timeline-color);
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 50%, calc(100% - 34px) 100%, 0 100%);
    color: #ffffff;
    display: flex;
    font-size: 18px;
    font-weight: 300;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 14px 0 0;
    min-height: 72px;
    padding: 0 40px 0 20px;
    position: relative;
    white-space: nowrap;
    z-index: 2;
}

.timeline-date strong {
    font-weight: 700;
}

.timeline-content {
    padding: 52px 24px 28px;
}

.timeline-content h3 {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
}

/* .timeline-content p {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
} */

.timeline-yellow {
    --timeline-color: #fee809;
    --timeline-shadow: rgba(254, 232, 9, 0.25);
}
.timeline-red {
    --timeline-color: #dd242c;
    --timeline-shadow: rgba(221, 36, 44, 0.25);
}
/* Our Way Section - Our History Page End */

.award-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.award-item {
    align-items: flex-start;
    background: #fffaf5;
    border: 1px solid rgba(176, 42, 39, 0.1);
    border-radius: 8px;
    display: flex;
    gap: 14px;
    padding: 18px 20px;
}

.award-item i {
    color: #b02a27;
    flex: 0 0 auto;
    font-size: 22px;
    margin-top: 4px;
}

.companies-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
}

.company-item {
    align-items: flex-start;
    background: #fffaf5;
    border: 1px solid rgba(176, 42, 39, 0.1);
    border-radius: 8px;
    display: flex;
    gap: 14px;
    padding: 20px;
    position: relative;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.company-item i {
    color: #b02a27;
    flex: 0 0 auto;
    font-size: 22px;
    margin-top: 3px;
}

.company-item h3 {
    color: #3b2b1d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px;
}

.company-item p {
    color: #66584c;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.company-item:hover {
    animation: companyShadowBlink 0.9s ease-in-out 1;
    border-color: rgba(176, 42, 39, 0.28);
    box-shadow: 0 14px 30px rgba(176, 42, 39, 0.16);
    transform: translateY(-3px);
}

@keyframes companyShadowBlink {
    0%, 100% {
        box-shadow: 0 8px 18px rgba(176, 42, 39, 0.08);
    }

    50% {
        box-shadow: 0 18px 38px rgba(176, 42, 39, 0.28);
    }
}

.mission-section-title {
    margin: 0 auto 28px;
    max-width: 760px;
}

.mission-section-title .about-title {
    margin-bottom: 12px;
}

.mission-section-title p:last-child {
    color: #66584c;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.mission-copy {
    background: #fffaf5;
    border-radius: 8px;
    padding: 26px 28px;
}

.mission-copy p,
.mission-growth {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.mission-copy p {
    margin-bottom: 16px;
}

.mission-copy p:last-child,
.mission-growth {
    margin-bottom: 0;
}

.mission-values-title {
    color: #3b2b1d;
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 14px;
    text-align: center;
}

.mission-values {
    border-top: 1px solid #eee2d4;
    border-bottom: 1px solid #eee2d4;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
    margin: 24px 0;
    padding: 20px 0;
}

.value-item {
    align-items: center;
    background: #fff8f0;
    border-radius: 8px;
    color: #3b2b1d;
    display: flex;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    min-height: 58px;
    padding: 14px 16px;
}

.value-item i {
    color: #b02a27;
    flex: 0 0 auto;
    font-size: 17px;
}

@media (max-width: 991px) {
    .about-mission-panel {
        padding: 26px;
    }

    .about-intro-image {
        margin: 0 auto;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .timeline-card {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .about-mission-panel {
        padding: 22px 18px;
    }

    .mission-copy {
        padding: 22px 18px;
    }

    .mission-section-title {
        margin-bottom: 22px;
    }

    .timeline-date {
        font-size: 17px;
        min-height: 66px;
    }

    .timeline-content {
        padding: 36px 22px 24px;
    }

    .timeline-card {
        min-height: auto;
    }
}