/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #E53935;
    --color-secondary: #F6D37A;
    --color-accent: #1E7F43;
    --color-dark: #222222;
    --color-white: #ffffff;
    --color-black: #000000;
}
html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;

}














/* ===== HEADER ===== */
.main-header{
    background:#fff;
    border-bottom:3px solid #e53935;
    position:sticky;
    top:0;
    z-index:9999;
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 20px;
    position:relative;
}

.logo img{
    height: 70px;
    margin-left: 15px;
}

#menuToggle{
    display:none;
    font-size:28px;
    background:none;
    border:none;
    color:#e53935;
    cursor:pointer;
}

#navLinks{
    display:flex;
    gap:25px;
    list-style:none;
}

#navLinks li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

/* MOBILE */
@media(max-width:1023px){

    #menuToggle{
        display:block;
        font-size:28px;
        background:none;
        border:none;
        color:#e53935;
        cursor:pointer;
        z-index:10001;
    }

    .cta-button{
        display:none !important;
    }

    #navLinks{
        display:none;
        flex-direction:column;
        position:fixed;
        top:80px;
        left:0;
        width:100%;
        background:#ffffff;
        padding:25px 20px;
        box-shadow:0 15px 30px rgba(0,0,0,0.15);
        z-index:10000;
        animation: slideDown 0.3s ease forwards;
    }

    #navLinks.show{
        display:flex;
    }

    #navLinks li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    #navLinks li:last-child{
        border-bottom:none;
    }

    #navLinks li a{
        display:block;
        padding:14px 5px;
        font-size:16px;
        font-weight:500;
        color:#222;
    }

}

/* Smooth Animation */
@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}















.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--color-primary), #F87171);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}













/* HERO SLIDER MAIN */




.hero-slider {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FIXED BLUR BACKGROUND */
.hero-slider::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url("assets/banner1.jpg") center center no-repeat;
    background-size: cover;   /* full cover */
    
    filter: blur(5px);
    transform: scale(1.08);   /* blur edge fix */
    z-index: -2;
}

/* DARK OVERLAY (optional but premium look) */
.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

/* ACTIVE SLIDE */
.slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* CONTENT */
.slide-content {
    max-width: 50%;
    color: #fff;
}

.slide-content h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.slide-content span {
    color: #ffcc00;
}

.slide-content p {
    margin: 20px 0;
    font-size: 1.1rem;
}

/* IMAGE */
.slide-img img {
    width: 500px;
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
    border-radius: 10px;
}

/* IMAGE FLOAT EFFECT */
@keyframes float {
    0% { transform: translateY(0px);}
    50% { transform: translateY(-10px);}
    100% { transform: translateY(0px);}
}

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    background: #e53935;   /* red color */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

/* Hover Effect */
.btn-hero:hover {
    background: #c62828;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.4);
}

/* Click Effect */
.btn-hero:active {
    transform: scale(0.96);
}


/* =========================
   TABLET (1024px ↓)
========================= */
@media (max-width: 1024px) {

    .slide {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 30px;
        padding: 40px 5%;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 2.3rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-img img {
        width: 420px;
    }
}

/* =========================
   MOBILE (768px ↓)
========================= */
@media (max-width: 768px) {

    .slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* IMAGE UPAR */
    .slide-img {
        order: -1;
        margin-bottom: 20px;
    }

    .slide-img img {
        width: 260px;
        max-width: 90%;
    }

    .slide-content {
        text-align: center;
    }
}


/* =========================
   SMALL MOBILE (480px ↓)
========================= */
@media (max-width: 480px) {

    .slide-content h1 {
        font-size: 1.4rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }

    .slide-img img {
        width: 220px;
    }
}

/* ===== HERO SECTION ===== */

/* .hero-section {
  padding: 5rem 0;
  position: relative;
  background-color: #FEF3C7; 

  background-image:
    linear-gradient(
      to bottom right,
      rgba(254, 243, 199, 0.85),
      rgba(254, 215, 170, 0.8),
      rgba(255, 255, 255, 0.9)
    ),
    url("assets/background.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */

/* 

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
    color: var(--color-primary);
}

.hero-text p {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 2rem;
    line-height: 1.625;
} */

/* .hero-image {
    flex: 1;
    width: 100%;
} */

/* .hero-image img {
    max-width: 28rem;
    margin: 0 auto;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
} */

/* ===== HERO IMAGE ROTATION ===== */
/* .hero-image img {
    max-width: 100%;
    animation: slowRotate 35s linear infinite;
    transform-origin: center center;
} */

/* KEYFRAMES */
/* @keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
} */






/* ===== CONTAINER ===== */
/* .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
} */

/* ===== ABOUT SECTION ===== */
/* .about-section {
    padding: 100px 0;
 background: linear-gradient(135deg, #fff8f0, #f1b88d);
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
} */

/* .about-header span {
    color: #d62828;
}

.about-header p {
    color: #666;
    margin-top: 10px;
    font-size: clamp(14px, 2vw, 18px);
} */

/* ===== CONTENT FLEX ===== */
/* .about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 500px;
} */

/* .about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
    font-size: clamp(14px, 1.5vw, 16px);
} */

/* .about-image {
    flex: 1 1 400px;
    text-align: center;
      perspective: 1000px;
} */

/* .about-image img {
    width: 100%;
    max-width: 500px;
    /* border-radius: 15px; */
    /* transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: revealImage 1.5s ease forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.95); */
} */
/* Smooth Reveal on Load */
/* @keyframes revealImage {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
} */

/* 3D Hover Effect */
/* .about-image img:hover {
    transform: rotateY(8deg) rotateX(4deg) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.2),
        0 0 25px rgba(214, 40, 40, 0.3);
} */

/* ===== STATS ===== */
/* .about-stats {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.about-stats div {
    flex: 1 1 180px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.about-stats h4 {
    color: #d62828;
    margin-bottom: 6px;
    font-size: 16px;
}

/* ===== VISION & MISSION ===== */
/* .vision-mission {
    display: flex;
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.vision-box,
.mission-box {
    flex: 1 1 450px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.vision-box h3,
.mission-box h3 {
    margin-bottom: 15px;
    color: #d62828;
    font-size: clamp(20px, 2vw, 24px);
}

.mission-box ul {
    padding-left: 18px;
}

.mission-box li {
    margin-bottom: 10px;
    font-size: clamp(14px, 1.5vw, 16px);
} */ */


/* ===== LARGE SCREENS (1400px+) ===== */
/* @media (min-width: 1400px) {
    .about-section {
        padding: 120px 0;
    }
} */

/* ===== TABLET ===== */
/* @media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-stats {
        justify-content: center;
    }

    .vision-mission {
        flex-direction: column;
    }
} */

/* ===== MOBILE ===== */
/* ===== MOBILE FIX ===== */
/* @media (max-width: 768px) {

    .about-content {
        flex-direction: column;
        gap: 10px;   
    }

    .about-image {
        margin-bottom: 10px;
    }

    .about-image img {
        margin-bottom: 0;
    }

    .about-text {
        margin-top: 0;
        padding-top: 0;
    }

    .about-text p {
        margin-top: 10px;
    }
} */


/* ===== SMALL MOBILE ===== */
/* @media (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-text p {
        font-size: 14px;
    }
}
 */


/* ===============================
   PREMIUM ABOUT SECTION
================================ */
/* 
.about-premium{
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg,#f8fafc,#eef2ff);
    overflow: hidden;
} */

/* soft circles */
/* .about-bg-circle{
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background: rgba(99,102,241,0.08);
    top:40px;
    left:80px;
} */
/* .about-bg-circle.two{
    width:320px;
    height:320px;
    right:80px;
    top:200px;
    left:auto;
} */

/* GRID */
/* .about-grid{
    display:grid;
    grid-template-columns: 420px 1fr;
    gap:60px;
    align-items:center;
} */

/* IMAGE CARD */
/* .about-image-card{
    position:relative;
    padding:10px;
    border-radius:24px;
    /* background: linear-gradient(45deg,#6d28d9,#db2777); */
    /* box-shadow:0 25px 50px rgba(0,0,0,0.15); */
} */
/* .about-image-card img{
    width:100%;
    border-radius:18px;
} */

/* BADGE */
/* .exp-badge{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#fff;
    padding:14px 18px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
} */

/* RIGHT CONTENT */
/* .about-tag{
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    color:#6d28d9;
}
.about-right h2{
    font-size:42px;
    margin:10px 0;
}
.about-right h2 span{
    color:#db2777;
}
.about-right h4{
    margin-bottom:16px;
    color:#444;
}
.about-right p{
    line-height:1.8;
    color:#555;
    margin-bottom:14px;
} */

/* STATS */
/* .premium-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:20px;
}
.premium-stats div{
    background:#fff;
    padding:16px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
} */

/* VISION MISSION */
/* .vision-premium{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}
.vision-card,
.mission-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
} */


/* RESPONSIVE */
@media (max-width:992px){
    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .premium-stats{
        grid-template-columns:1fr;
    }

    .vision-premium{
        grid-template-columns:1fr;
    }

    .exp-badge{
        left:50%;
        transform:translateX(-50%);
    }
}



/* ===== MODERN ABOUT SECTION ===== */

.about-modern {
    padding: 100px 20px;
 background: linear-gradient(135deg, #fff8f0, #ffe8d6);
}

.about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT CARD */
.about-card {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    padding: 12px;
    border-radius: 25px;
 /* background: linear-gradient(135deg, #fff8f0, #fefefe); */
}

.about-card img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: block;
}

/* EXPERIENCE BADGE */
.experience-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
}

.experience-box h3 {
    margin: 0;
    color: linear-gradient(135deg, #fff8f0, #f1b88d);
}

.experience-box p {
    margin: 0;
    font-size: 14px;
}

/* RIGHT CONTENT */
.about-details {
    flex: 1;
    min-width: 320px;
}

.about-tag {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e31010;
}

.about-details h2 {
    font-size: 38px;
    margin: 10px 0;
}

.about-details h2 span {
    background: linear-gradient(135deg, #ec1818, #ec6b08);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}


.about-details h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #444;
}

.about-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FEATURES GRID */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-top: 20px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-box {
        left: 50%;
        transform: translateX(-50%);
    }
}
.about-extra {
    display: none;
    margin-top: 10px;
}

.about-read-btn {
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, #e01d1d, #f1b88d);
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.about-read-btn:hover {
    transform: translateY(-3px);
}


/* ===============================
   VISION & MISSION SECTION
================================ */

.vision-mission {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* CARD STYLE */
.vision-box,
.mission-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.vision-box:hover,
.mission-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* HEADINGS */
.vision-box h3,
.mission-box h3 {
    font-size: clamp(22px,2vw,26px);
    margin-bottom: 15px;
    color: #e53935;
    position: relative;
}

.vision-box h3::after,
.mission-box h3::after {
    content: "";
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg,#e53935,#ff7a00);
    position: absolute;
    left: 0;
    bottom: -6px;
    border-radius: 2px;
}

/* TEXT */
.vision-box p {
    color: #555;
    line-height: 1.8;
    margin-top: 12px;
}

/* LIST */
.mission-box ul {
    margin-top: 12px;
    padding-left: 18px;
}

.mission-box li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vision-box,
    .mission-box {
        padding: 22px;
    }
}



/* =============================
   ABOUT PAGE (UI FRIENDLY)
============================= */

.aboutpage {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff8f0, #ffe8d6);
}

/* MAIN GRID */
.aboutpage-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.aboutpage-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.aboutpage-image img {
  width: 100%;
  height: 400px;
  display: block;
}

/* BADGE */
.since-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.since-badge h3 {
  margin: 0;
  color: #e53935;
}

/* CONTENT */
.about-label {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #e53935;
}

.aboutpage-content h2 {
  font-size: clamp(28px,4vw,42px);
  margin: 10px 0;
  line-height: 1.2;
}

.aboutpage-content h2 span {
  background: linear-gradient(90deg,#e53935,#ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aboutpage-content h4 {
  margin-bottom: 15px;
  color: #444;
}

.aboutpage-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 700px;
}

/* STATS */
.aboutpage-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 20px;
}

.aboutpage-stats div {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.aboutpage-stats h5 {
  color: #e53935;
  margin-bottom: 5px;
}

/* VISION MISSION */
.aboutpage-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
}
/* SMALLER BOX */
.about-card-box {
    background: #fff;
    padding: 18px 20px;   /* ↓ reduced */
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

.about-card-box:hover {
    transform: translateY(-4px);
}

/* HEADING SMALL */
.about-card-box h3 {
    font-size: 26px;
    color: #e53935;
    margin-bottom: 8px;
}

/* PARAGRAPH */
.about-card-box p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #555;
}

/* LIST COMPACT */
.about-card-box ul {
    padding-left: 16px;
    margin: 0;
}

.about-card-box li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .aboutpage-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-card-box {
        padding: 16px;
    }
}



















/* ===== BANNER SECTION ===== */
.banner-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('assets/banner1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
    margin-top: 10px;
}

/* Overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Content */
.banner-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 900px;
}

/* Badge */
.banner-badge {
    display: inline-block;
    background-color: rgba(246, 211, 122, 0.2);
    border: 1px solid #f6d37a;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    color: #f6d37a;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Heading */
.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Paragraph */
.banner-content p {
    font-size: 1.1rem;
    color: #E5E7EB;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
}

/* Buttons */
.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Outline Button */
.banner-section .btn-outline {
    padding: 12px 28px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s ease;
    text-align: center;
}

.banner-section .btn-outline:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

/* Secondary Button */
.btn-secondary {
    padding: 12px 28px;
    background-color: #f6d37a;
    color: #000;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #FB923C;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .banner-section {
        min-height: 70vh;
        padding: 70px 20px;
        background-attachment: scroll; /* fix mobile parallax issue */
    }

    .banner-content h1 {
        font-size: 2.4rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .banner-section {
        text-align: center;
        justify-content: center;
        padding: 60px 20px;
    }

    .banner-content {
        max-width: 100%;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 0.95rem;
        margin-left: auto;
        margin-right: auto;
    }

    .banner-buttons {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .banner-section {
        min-height: 60vh;
        padding: 50px 15px;
    }

    .banner-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .banner-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .banner-section .btn-outline,
    .btn-secondary {
        width: 100%;
    }
}













/* ===== SAKHA SPICES SECTION ===== */
.spices-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #FED7AA, var(--color-white));
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: 100px; */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header h2 .highlight {
    color: var(--color-primary);
}

.section-header p {
    color: #4B5563;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.625;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-controls.prev {
    left: 1rem;
}

.slider-controls.next {
    right: 1rem;
}

.slider-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to right, var(--color-primary), #F87171);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s;
}

.slider-btn:hover {
    transform: scale(1.1);
}

.spices-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.spices-grid::-webkit-scrollbar {
    display: none;
}

.spice-card {
    min-width: 240px;
    max-width: 240px;
    background-color: var(--color-white);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.spice-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.spice-card img {
    width: 100%;
    aspect-ratio: 4 / 3;   /* 🔥 natural product image ratio */
    object-fit: contain;   /* image cut nahi hogi */
    background: #fff;      /* clean white bg */
    
}

.spice-card-content {
    padding: 1.25rem;
}

.spice-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}
.spice-card span {
    font-size: 1.25rem;
    font-weight: 700;
    color:var(--color-accent);
    margin-bottom: 1rem;
}
.spice-card ul {
    font-size: 0.875rem;
    color: #4B5563;
    margin-bottom: 1.25rem;
}

.spice-card ul li {
    margin-bottom: 0.5rem;
}

.spice-card ul li.extra {
    display: none;
}

.spice-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.view-more {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.view-more:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.enquiry-btn {
    width: 100%;
    padding: 0.625rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 0.25rem;
    transition: background-color 0.3s;
}

.enquiry-btn:hover {
    background-color: var(--color-secondary);
}











/* =====================================
   PRODUCTS SECTION – FINAL COMPLETE CSS
===================================== */

/* SECTION */
.products-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FED7AA, #ffffff);
}

/* HEADER */
.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
}

.products-header h2 span {
    color: #c0392b;
}

.products-header p {
    max-width: 650px;
    margin: 10px auto 0;
    color: #4b5563;
    line-height: 1.6;
}

/* GRID – PERFECT CENTER */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    gap: 24px;
    justify-content: center;
}

/* CARD */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

/* IMAGE AREA */
.product-img {
    width: 100%;
    height: 320px;                  /* 🔥 BIG IMAGE SPACE */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #ffffff;
}

/* IMAGE */
.product-img img {
    position: absolute;
    height: 300px;                  /* 🔥 BIG IMAGE */
    max-width: 95%;
    width: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.product-img img.active {
    opacity: 1;
}

/* CONTENT */
.product-card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
}

.product-card-content h3 span {
    display: block;
    font-weight: 600;
    color: #1e7f43;
}

/* LIST */
.product-card-content ul {
    list-style: none;
    font-size: 0.9rem;
    color: #4b5563;
}

.product-card-content ul li {
    margin-bottom: 6px;
}

/* BUTTON */
.product-card-buttons {
    margin-top: auto;
}

.enquiry-btn {
    width: 100%;
    padding: 12px;
    background: #e53935;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.enquiry-btn:hover {
    background: #c62828;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 260px);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 260px);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-img {
        height: 280px;
    }

    .product-img img {
        height: 250px;
    }
}



















/* ===== ENQUIRY MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 9999;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-white);
    width: 91.67%;
    max-width: 28rem;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    animation: modalZoom 0.4s ease;
}

@keyframes modalZoom {
    from {
        transform: scale(0.7);
    }
    to {
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2rem;
    color: #4B5563;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--color-primary);
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.modal-content input[readonly] {
    background-color: #F9FAFB;
    color: #374151;
    font-weight: 600;
    border-color: #D1D5DB;
}

.modal-content textarea {
    resize: none;
}

.modal-content button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(to right, var(--color-primary), #F87171);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s;
}

.modal-content button[type="submit"]:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}















/* ===== SHRI NATH JI SECTION ===== */
.shrinath-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #FEF3C7, #FED7AA, #FEF3C7);
}

.shrinath-showcase {
    max-width: 56rem;
    margin: 0 auto;
    background-color: var(--color-white);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.shrinath-showcase:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.shrinath-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
}

.shrinath-grid img {
    width: 100%;
    transition: transform 0.5s;
}

.shrinath-grid img:hover {
    transform: scale(1.05);
}

.shrinath-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.shrinath-content p {
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.625;
}


/* ===== PRODUCT IMAGE SLIDER ===== */
.product-img{
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-img img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: translateX(20px);
}

.product-img img.active{
  opacity: 1;
  transform: translateX(0);
}







/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 4rem 0;
    background-color: #F9FAFB;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--color-white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
}
.contact-info {
     padding: 3rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact-divider {
    display: block;
    width: 4rem;
    height: 4px;
    background-color: var(--color-primary);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.contact-item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.contact-item-content p,
.contact-item-content a {
    font-size: 0.875rem;
    color: #4B5563;
}

.contact-item-content a {
    color: var(--color-primary);
}

.contact-item-content a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
   padding: 3rem;
    background: linear-gradient(135deg, #fff3e0, #fed7aa);

}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 8px 12px;
    font-size: 15px;
    font-family: inherit;

    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #ffffff;

    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}
.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form .form-group textarea {
    resize: none;
}

.contact-form .mobile-input {
    display: flex;
    gap: 0.75rem;
}

.contact-form .mobile-input select {
    width: 5rem;
}

.contact-form .mobile-input input {
    flex: 1;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
}

.btn-submit {
   padding: 16px 80px;
    background-color: var(--color-primary);
    color: var(--color-white);
        font-size: 1rem;      
    font-weight: 600;
    border-radius: 0.25rem;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}



#formMessage {
    display: none;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

#formMessage.success {
    display: block;
    background-color: #D1FAE5;
    color: #065F46;
    border: 2px solid #6EE7B7;
}

#formMessage.error {
    display: block;
    background-color: #FEE2E2;
    color: #991B1B;
}

#formMessage.loading {
    display: block;
    background-color: #DBEAFE;
    color: #1E40AF;
}

/* CONTACT LOGO */
.contact-logo {
    width: 100%;
    text-align: center;
    margin-top: 100px;
}

.contact-logo img {
    display: inline-block;
    max-width: 200px;
    height: auto;
}



.contact-logo img:hover {
    transform: scale(1.05);
}













/* ===== LOCATION MAP SECTION ===== */
.location-section {
  padding: 90px 0;
   background: linear-gradient(135deg, #fff8f0, #ffe8d6);
  margin-top: 20px;
}

.location-header {
  text-align: center;
  margin-bottom: 50px;
}

.location-header h2 {
  font-size: 2.4rem;
  color: #c0392b;
}

.location-header span {
  color: #1e7f43;
}

.location-header p {
  color: #555;
  max-width: 600px;
  margin: 10px auto 0;
}

/* WRAPPER */
.location-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

/* MAP */
.map-box {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* INFO CARD */
.location-info {
  background: #fff;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.location-info h3 {
  color: #c0392b;
  margin-bottom: 20px;
}

.location-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #333;
}

.location-info i {
  color: #f6d37a;
  font-size: 1.1rem;
}

/* BUTTON */
.map-btn {
  display: inline-block;
  margin-top: 20px;
  background: #c0392b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.map-btn:hover {
  background: #a93226;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    height: 300px;
  }
    .contact-container {
        grid-template-columns: 1fr;
    }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.blog-section {
  padding: 80px 0;
  background: #fff;
}

/* HEADER */
.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h2 {
  font-size: 3rem;
  color: #a74b00;
}

.blog-header p {
  color: #555;
  margin: 10px 0;
}

.stars i {
  color: #f4b400;
}


.contact-form-wrapper {
    animation: slideFade 0.8s ease forwards;
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.map-box-2 {
    width: 100%;
    max-width: 100%;
}

.map-box-2 iframe {
    width: 100%;
    height: 280px;
}

@media (max-width: 768px) {
    .map-box-2 iframe {
        height: 220px;
    }
}













/* ===== ALTERNATING BLOG ===== */
.alt-blog-section {
  padding: 90px 0;
     background: linear-gradient(135deg, #ffffff, #fff0e0);
}

.alt-blog-item {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

/* 👇 MAGIC LINE */
.alt-blog-item:nth-child(even) .alt-blog-img {
  order: 2;
  justify-self: end;  
}
.alt-blog-item:nth-child(even) .alt-blog-content {
  order: 1;
}


/* RIGHT IMAGE */
.alt-blog-item:nth-child(even) .alt-blog-img {
  justify-self: end;
}
/* IMAGE */
.alt-blog-img img {
  width: 70%;
  height: 30%;
  object-fit: cover;
  border-radius: 16px;
  /* box-shadow: 0 25px 60px rgba(220, 171, 115, 0.18); */
  transition: transform 0.6s ease;
}

.alt-blog-img {
  width: 100%;
  max-width: 380px;
  min-width: 380px;  
}

.alt-blog-img img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.alt-blog-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.alt-blog-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.alt-blog-content a {
  padding: 10px 28px;
  border-radius: 30px;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  transition: 0.3s;
}

.alt-blog-content a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .alt-blog-item {
    grid-template-columns: 1fr;
  }

  /* reset order on mobile */
  .alt-blog-item:nth-child(even) .alt-blog-img,
  .alt-blog-item:nth-child(even) .alt-blog-content {
    order: initial;
  }

  .alt-blog-img img {
    height: 260px;
  }
}


.blog-full {
  display: none;
  margin-top: 12px;
  color: #555;
  line-height: 1.7;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}








/* ===============================
   HERO SLIDER
================================ */
/* 
/* .hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;              
    min-height: 500px;
    overflow: hidden;
} */ */

/* SLIDES */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: fade 12s infinite;
}

/* Animation delay */
.slide:nth-child(1){ animation-delay: 0s; }
.slide:nth-child(2){ animation-delay: 4s; }
.slide:nth-child(3){ animation-delay: 8s; }

/* IMAGE */
/* .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* DARK OVERLAY */
/* .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
} */

/* CONTENT */
.content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 620px;
    color: #fff;
}

.content h1 {
    font-size: clamp(28px,4vw,52px);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.content h1 span {
    color: #facc15;
}

.content p {
    font-size: clamp(14px,1.4vw,18px);
    margin-bottom: 25px;
    color: #f3f3f3;
}

/* BUTTON */
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: #e53935;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button:hover {
    background: #c62828;
    transform: translateY(-3px);
}

/* FADE ANIMATION */
@keyframes fade {
    0%   { opacity:0; }
    5%   { opacity:1; }
    30%  { opacity:1; }
    35%  { opacity:0; }
    100% { opacity:0; }
}

/* ===============================
   TABLET
================================ */
@media (max-width: 992px) {

    .hero-slider {
        height: 70vh;
        min-height: 420px;
    }

    .content {
        left: 6%;
        max-width: 85%;
    }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

    .hero-slider {
        height: 60vh;
        min-height: 360px;
    }

    .content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }

    .content p {
        margin-bottom: 18px;
    }

    .cta-button {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* ===============================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {

    .hero-slider {
        height: 55vh;
    }

    .content h1 {
        font-size: 22px;
    }

    .content p {
        font-size: 13px;
    }
}

















/* ===== QUOTE MODAL ===== */
.quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.quote-modal.show {
  display: flex;
}

.quote-box {
  background: #fff;
  width: 600px;
  max-width: 100%;
  display: flex;
  position: relative;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* CLOSE */
.quote-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 26px;
  cursor: pointer;
}

/* LEFT */
.quote-left {
  width: 45%;
  background: #f7f7f7;
  padding: 20px;
}

.quote-left h3 {
  background: #777;
  color: #fff;
  padding: 10px;
  margin-bottom: 12px;
}

.quote-left img {
  width: 100%;
  margin-bottom: 12px;
}

.quote-price {
  color: var(--color-primary);
  font-weight: bold;
}

.quote-price span {
  color: #000;
}

.quote-moq {
  margin-top: 5px;
  font-weight: bold;
  color: var(--color-primary);
}

/* RIGHT */
.quote-right {
  width: 55%;
  padding: 25px;
}

.quote-title {
  background: var(--color-primary);
  color: #fff;
  padding: 12px;
  margin-bottom: 20px;
}

.form-row {
margin-top: 20px;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-row input,
.form-row select {
    margin-top: 10px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
}

/* MOBILE NUMBER FIELD – FIXED */
/* MOBILE ROW */
.mobile-row {
    display: flex;
    width: 100%;
      align-items: stretch;
}


.mobile-row input,
.mobile-row .country-code {
    margin-top: 0 !important;   /* upar niche issue fix */
}

/* LEFT BOX */
.mobile-row .country-code {
    width: 90px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f2f2f2;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    box-sizing: border-box;
}


/* RIGHT INPUT */
.mobile-row input {
    flex: 1;
    height: 46px;
    padding: 0 12px;

    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 4px 4px 0;

    box-sizing: border-box;
}
/* OPTIONAL – NICE CORNERS */
.mobile-row .country-code {
  border-radius: 4px 0 0 4px;
}

.mobile-row input {
  border-radius: 0 4px 4px 0;
}

.quote-btn {
  background: #333;
  color: #fff;
  padding: 12px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
/* SMALL MOBILE */
@media (max-width: 480px) {

    .mobile-row .country-code {
        width: 75px;
        min-width: 75px;
        font-size: 13px;
        height: 42px;
    }

    .mobile-row input {
        height: 42px;
        font-size: 13px;
    }
}

/* TABLET */
@media (min-width: 768px) {

    .mobile-row .country-code {
        width: 95px;
        height: 48px;
        font-size: 14px;
    }

    .mobile-row input {
        height: 48px;
        font-size: 14px;
    }
}

/* LAPTOP / DESKTOP */
@media (min-width: 992px) {

    .mobile-row .country-code {
        width: 100px;
        height: 50px;
    }

    .mobile-row input {
        height: 50px;
    }
}
























/* ===== FOOTER ===== */
footer {
    position: relative;
    overflow: hidden;
    width: 100%;
    color: #fff;

    background-image: url(assets/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    padding-top: 2rem;  
    padding-bottom: 1rem;
    min-height: 100px;
    margin-top: 10px;
    object-fit: cover;
    /* margin-bottom: 10px; */

}

/* ===== LIGHT OVERLAY ===== */
footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(50, 37, 37, 0.65); /* light background */
    z-index: 1;
}

/* ===== FOOTER CONTENT ===== */
.footer-content {
    position: relative;
    z-index: 2;
}

/* ===== FOOTER GRID ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
     padding: 0.5rem 0;
    gap: 1rem;
}

/* ===== ABOUT ===== */
.footer-about img {
    height: 5rem;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: #fff;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}


/* ===== SOCIAL ICONS ===== */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
    align-items: center;
}

.spice-social {
    margin-top: 6rem;  
    gap: 16px;
}


.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    /* background: #8f8989; */
    transition: all 0.3s ease;
}

/* WhatsApp Official */
.social-link.whatsapp {
    background: #25D366;
}

/* Facebook Official */
.social-link.facebook {
    background: #1877F2;
}

/* Instagram Official Gradient */
.social-link.instagram {
    background: radial-gradient(circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%);
}

/* Hover effect */
.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.gst-number {
    margin-top: 18px;
    padding: 6px 12px;
    display: inline-block;
    background: rgba(246, 211, 122, 0.15);
    border: 1px solid rgba(246, 211, 122, 0.4);
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}
.fassi-number {
    margin-top: 14px;
    display: inline-block;

    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(246, 211, 122, 0.15);
    border: 1px solid rgba(246, 211, 122, 0.4);

    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;

    color: #fff;
    backdrop-filter: blur(6px);

    transition: 0.3s ease;
}

.Cin-number:hover {
    background: rgba(255,255,255,0.28);
}



/* ================= DEVELOPED BY ================= */
/* Developed By same as footer-badge */
.developed-by {
    text-align: center;
    padding: 1rem 0 0.8rem;
}

.developed-by a {
    display: inline-flex;
    padding: 0.375rem 1rem;
    background-color: rgba(246, 211, 122, 0.25);
    border: 1px solid rgba(246, 211, 122, 0.6);
     align-items: center;    
    justify-content: center; 
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s ease;
}

/* Optional hover */
.developed-by a:hover {
    background-color: rgba(246, 211, 122, 0.4);
}


.developed-by p {
    font-size: 0.9rem;
    margin: 0;
}

.developed-by .small-text {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-right: 4px;
}

.developed-by img {
    height: 32px;
    max-width: 100%;
    object-fit: contain;
}

/* Hover Effect */
.developed-by a:hover {
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 768px) {
    .developed-by {
        padding: 1rem 0 0.6rem;
    }

    .developed-by img {
        height: 38px;
    }

    .developed-by p {
        font-size: 0.85rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .developed-by img {
        height: 32px;
    }

    .developed-by p {
        font-size: 0.8rem;
    }
}





















/* ===== FOOTER SECTION ===== */
.footer-section h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.5rem;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: 0.25rem;
}

/* LINK CLICK PE BOX REMOVE */
footer a:focus,
footer a:active {
    outline: none;
    box-shadow: none;
    background: transparent;
}

/* CONTACT CARD CLICK BOX REMOVE */
.contact-card:focus,
.contact-card:focus-within {
    outline: none;
    background-color: rgba(255, 255, 255, 0.75);
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #fff;
}

.footer-links a {
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 0.5rem;
}

/* ===== FOOTER CATEGORIES ===== */
.footer-categories li {
    color: #fff;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-categories li:hover {
    color: var(--color-primary);
}

/* ===== CONTACT CARD ===== */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 0.5rem;
    border-left: 3px solid var(--color-secondary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    color: #fff;
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.contact-card-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.contact-card-content p:first-child {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.contact-card-content p:last-child {
    color: #4B5563;
    font-size: 0.875rem;
}


/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    color: #ffffff;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.footer-bottom p {
    color: #ffffff;
    font-size: 0.875rem;
}

/* ===== BADGES ===== */
.footer-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-badge {
    padding: 0.375rem 1rem;
    background-color: rgba(246, 211, 122, 0.25);
    border: 1px solid rgba(246, 211, 122, 0.6);
    border-radius: 9999px;
    color: #fff;
}

.footer-divider {
    color: #fff;
}


/* ===== FOOTER BASE ===== */
footer {
    /* background: #111; */
    color: #fff;
    padding: 3rem 1rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* Tablet */
@media (min-width: 600px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptop */
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer bottom responsive */
.footer-bottom-content {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

/* Contact card mobile spacing */
@media (max-width: 768px) {
    .contact-card {
        padding: 0.6rem;
    }

    .contact-card-content p {
        font-size: 0.8rem;
    }
}
/* =========================
   SMALL TABLET (600px+)
========================= */
@media (min-width: 600px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .contact-card {
        padding: 0.8rem;
    }

    .contact-card-content p {
        font-size: 0.9rem;
    }
}

/* =========================
   TABLET (768px+)
========================= */
@media (min-width: 768px) {

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        margin-top: 20px;
    }
}

/* =========================
   LAPTOP (992px+)
========================= */
@media (min-width: 992px) {

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card-content p {
        font-size: 1rem;
    }
}

/* =========================
   EXTRA SMALL MOBILE FIX
========================= */
@media (max-width: 480px) {

    .footer-grid {
        gap: 8px;     /* bilkul compact */
    }

    .footer-bottom-content {
        margin-top: 10px;
        gap: 6px;
    }
}




/* ===== WORKFLOW SECTION ===== */
.workflow-section {
    padding: 80px 0;
    background: #feebd1;
}

.workflow-header {
    text-align: center;
    margin-bottom: 45px;
}

.workflow-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
}

.workflow-header span {
    color: #e53935;
}

/* ===== GRID LAYOUT ===== */
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 🔥 FIXED 3 CARDS */
    gap: 28px;
}

/* CARD (BIGGER SIZE) */
.timeline-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;      /* bigger card */
}

.timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* IMAGE BIGGER */
.timeline-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.timeline-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.timeline-content {
    padding: 18px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* HIGHLIGHT */
.timeline-item.highlight {
    border: 2px solid #e53935;
}


/* TABLET → 2 cards */
@media (max-width: 992px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE → 1 card */
@media (max-width: 768px) {
    .timeline {
        grid-template-columns: 1fr;
    }

    .workflow-header h2 {
        font-size: 1.8rem;
    }

    .timeline-img {
        height: 180px;
    }
}





#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 999999;
}
#scrollTop.show {
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */


@media (min-width: 640px) {
    .hero-text h1 {
        font-size: 4rem;
    }

    .about-image img {
        height: 20rem;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }

    .about-image img {
        height: 24rem;
    }

    .shrinath-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        gap: 3rem;
    }

    .hero-text {
        text-align: left;
    }

    .hero-text h1 {
        font-size: 3.75rem;
    }

    .banner-content h1 {
        font-size: 3.75rem;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
    }
}

@media (min-width: 1280px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

/* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
*:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ===== ADDITIONAL RESPONSIVE FIXES ===== */
@media (max-width: 639px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .banner-content h1 {
        font-size: 1.75rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-outline,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .spice-card {
        min-width: 260px;
    }

    .slider-controls {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .slider-controls.prev {
        left: 0.5rem;
    }

    .slider-controls.next {
        right: 0.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .contact-container {
        box-shadow: none;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 479px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn-submit,
    .btn-reset {
        width: 100%;
    }
}









/* CTA action css */

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  height: 80vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background-image: url("assets/banner.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ===== OVERLAY ===== */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 1;
}

/* ===== CONTENT ===== */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
  color: #fff;
  animation: fadeUp 1.2s ease forwards;
}

/* ===== TITLE ===== */
.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-title span {
  color: var(--color-secondary);
  position: relative;
}

.cta-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  left: 0;
  bottom: -8px;
  background: var(--color-primary);
  animation: underline 1.5s infinite alternate;
}

/* ===== TEXT ===== */
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  opacity: 0.9;
}

/* ===== BUTTONS ===== */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: linear-gradient(
    to right,
    var(--color-primary),
    #f87171
  );
  color: #fff;
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-5px) scale(1.05);
}

/* SECONDARY */
.cta-btn.secondary {
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
}

.cta-btn.secondary:hover {
  background: var(--color-secondary);
  color: #000;
  transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underline {
  from {
    width: 20%;
  }
  to {
    width: 100%;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2.2rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

























/* about hero css */


/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background-image: url("assets/banner.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ===== OVERLAY ===== */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 1;
}

/* ===== CONTENT ===== */
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  transition: all 1.2s ease;
}

.about-hero-content.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TITLE ===== */
.about-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-hero-title span {
  color: var(--color-secondary);
  position: relative;
}

.about-hero-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  left: 0;
  bottom: -10px;
  background: var(--color-primary);
  animation: glowLine 1.5s infinite alternate;
}

/* ===== TEXT ===== */
.about-hero-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* ===== BUTTONS ===== */
.about-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* PRIMARY */
.hero-btn.primary {
  background: linear-gradient(
    to right,
    var(--color-primary),
    #f87171
  );
  color: #fff;
  box-shadow: 0 12px 35px rgba(229, 57, 53, 0.45);
}

.hero-btn.primary:hover {
  transform: translateY(-6px) scale(1.05);
}

/* SECONDARY */
.hero-btn.secondary {
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.hero-btn.secondary:hover {
  background: var(--color-secondary);
  color: #000;
  transform: translateY(-6px);
}

/* ===== ANIMATIONS ===== */
@keyframes glowLine {
  from {
    width: 30%;
    opacity: 0.5;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-hero {
    background-attachment: scroll;
  }

  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-text {
    font-size: 1rem;
  }
}





/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff7ed, #ffffff);
    font-family: 'Poppins', sans-serif;
    margin-top: 18px;
    margin-bottom: 18px;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
}

/* FAQ ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Hide checkbox */
.faq-item input {
    display: none;
}

/* Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #222;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fff0e0;
}

.faq-question span {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Open State */
.faq-item input:checked ~ .faq-answer {
    max-height: 200px;
    padding: 15px 25px 25px;
}

.faq-item input:checked + .faq-question span {
    transform: rotate(45deg);
    color: #8B0000;
}

/* Responsive */
@media (max-width: 600px) {
    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 18px;
    }
}










/* ===== FLOAT WRAP (RIGHT SIDE CENTER) ===== */
.float-wrap {
  position: fixed;
  top: 70%;
  left: 20px;   /* RIGHT SIDE */
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  
}

/* ===== SMALL ROUND BUTTONS ===== */
.float-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

/* Hide text */
.float-btn span {
  display: none;
}

/* COLORS */
.whatsapp { background: #25D366; }
.call { background: #2563EB; }
.location { background: #EF4444; }

/* HOVER EFFECT */
.float-btn:hover {
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .float-wrap {
    right: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .float-wrap {
    right: 10px;
    gap: 10px;
  }

  .float-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .float-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}














/* Overlay */
.im-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  z-index: 9999;
}

/* Popup */
.im-popup{
  background:#fff;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,.3);
  animation: imPop .25s ease;
}

@keyframes imPop{
  from{opacity:0; transform:scale(.95);}
  to{opacity:1; transform:scale(1);}
}

/* Two column layout */
.im-two-col{
  width: 820px;
  max-width: 95%;
  display: flex;
  overflow: hidden;

  position: fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

/* LEFT IMAGE */
.im-left{
  width: 45%;
  background:#f6f6f6;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.im-left img{
  width:100%;
  max-height:360px;
  object-fit:contain;
}

/* RIGHT FORM */
.im-right{
  width:55%;
  padding:28px;
}

.im-right h2{
  margin-bottom:16px;
  color:var(--color-primary);
}

/* Inputs */
.im-right input,
.im-right select{
  width:100%;
  padding:11px;
  margin-bottom:12px;
  border:1px solid #ccc;
  border-radius:6px;
}

#imProductName{
  background:#f3f3f3;
  font-weight:600;
}

/* Quantity row */
.im-row{
  display:flex;
  gap:10px;
}

/* Button */
.im-submit{
  width:100%;
  padding:13px;
  background:var(--color-primary);
  color:#fff;
  border:none;
  border-radius:6px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

.im-submit:hover{
  background:var(--color-secondary);
}

/* Close */
.im-close{
  position:absolute;
  right:16px;
  top:12px;
  font-size:24px;
  cursor:pointer;
  z-index:5;
}

/* Mobile */
@media(max-width:768px){
  .im-two-col{
    flex-direction:column;
  }
  .im-left,
  .im-right{
    width:100%;
  }
}


/* ===============================
   🔥 GLOBAL MOBILE OVERFLOW FIX
================================ */

/* Force no horizontal scroll */
html, body {
  width: 100%;
  overflow-x: hidden !important;
}

/* All sections safety */
section,
header,
footer,
.container {
  max-width: 100%;
  overflow-x: hidden;
}

/* ===============================
   CONTAINER FIX (REMOVE DOUBLE DEF)
================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* ===============================
   ALT BLOG FIX (MAIN CULPRIT)
================================ */
@media (max-width: 768px) {
  .alt-blog-img {
    min-width: 100% !important; /* ❌ remove 380px */
    max-width: 100%;
  }

  .alt-blog-img img {
    width: 100%;
    height: auto;
  }
}

/* ===============================
   POPUP / MODAL FIX
================================ */
.im-two-col,
.quote-box,
.modal-content {
  max-width: 95vw !important;
}

@media (max-width: 768px) {
  .im-two-col {
    width: 100% !important;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ===============================
   PRODUCTS / CARDS FIX
================================ */
.spice-card,
.product-card {
  max-width: 100%;
}

.spices-grid {
  padding-inline: 16px;
}

/* ===============================
   HERO + BANNER FIX
================================ */
@media (max-width: 768px) {

  .hero-section,
  .banner-section,
  .cta-section,
  .about-hero {
    background-attachment: scroll !important;
  }

  .hero-content {
    padding-inline: 10px;
    
  }
}
.product-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

  opacity: 0;
  transition: opacity 0.8s ease;
}

.product-img img.active {
  opacity: 1;
}


/* ===============================
   FLOAT BUTTON FIX
================================ */
@media (max-width: 768px) {
  .float-wrap {
    left: auto;
    right: 10px;
  }
}

/* ===============================
   CONTACT FIX
================================ */
@media (max-width: 768px) {
  .contact-container {
    margin: 0;
    border-radius: 0;
  }
}

/* ===============================
   FINAL MOBILE SAFETY
================================ */
* {
  max-width: 100vw;
}