/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('../images/ayurvedic_herbs_background_1766403790143.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(20, 15, 10, 0.85) 0%,
            rgba(20, 15, 10, 0.75) 40%,
            rgba(20, 15, 10, 0.4) 70%,
            transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 400;
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: lowercase;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 51px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 700px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 700px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 32px;
    max-width: 650px;
    font-family: 'Inter', sans-serif;
}

.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.hero-btn:active {
    transform: translateY(0);
}

/* ===================================
   Tablet Responsive (768px - 1024px)
   =================================== */
@media screen and (max-width: 1024px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 30px;
    }

    .hero-description {
        font-size: 14px;
        max-width: 550px;
    }

    .hero-tagline {
        font-size: 13px;
    }
}

/* ===================================
   Mobile Responsive (below 768px)
   =================================== */
@media screen and (max-width: 767px) {
    .hero-section {
        min-height: 100vh;
        padding: 40px 15px;
        background-position: 65% center;
    }

    .hero-overlay {
        background: linear-gradient(to right,
                rgba(20, 15, 10, 0.92) 0%,
                rgba(20, 15, 10, 0.85) 60%,
                rgba(20, 15, 10, 0.6) 100%);
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-tagline {
        font-size: 12px;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 25px;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: auto;
    }
}

/* ===================================
   Small Mobile (below 480px)
   =================================== */
@media screen and (max-width: 480px) {
    .hero-section {
        padding: 30px 10px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 25px;
    }
}

/* ===================================
   About Section (What We Are)
   =================================== */
.about-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 20px 0;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.about-text {
    margin-bottom: 32px;
}

.about-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    text-align: justify;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    background-color: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.about-btn:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.about-btn:active {
    transform: translateY(0);
}

/* ===================================
   About Section - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .about-section {
        padding: 80px 20px;
    }

    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-image {
        min-height: 350px;
    }
}

/* ===================================
   About Section - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        min-height: 300px;
        order: 1;
    }

    .about-content {
        order: 2;
        padding: 0;
    }

    .about-title {
        font-size: 25px;
        margin-bottom: 18px;
    }

    .about-text {
        margin-bottom: 28px;
    }

    .about-text p {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .about-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===================================
   About Section - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .about-section {
        padding: 50px 15px;
    }

    .about-image {
        min-height: 250px;
    }

    .about-title {
        font-size: 25px;
    }
}

/* ===================================
   Product Slider Section
   =================================== */
.products-section {
    padding: 100px 20px;
    background-color: #f8f8f8;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.products-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.product-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.product-card {
    min-width: calc(33.333% - 20px);
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 280px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 24px;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.product-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
}

.product-link {
    font-size: 14px;
    font-weight: 500;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Slider Navigation Buttons */
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #d4af37;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background-color: #d4af37;
    color: #ffffff;
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background-color: #ffffff;
    color: #d4af37;
    transform: scale(1);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background-color: #b8b8b8;
}

.slider-dot.active {
    background-color: #d4af37;
    width: 32px;
    border-radius: 6px;
}

/* ===================================
   Product Slider - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .products-section {
        padding: 80px 20px;
    }

    .products-title {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .product-card {
        min-width: calc(50% - 15px);
    }

    .product-name {
        font-size: 25px;
    }

    .product-description {
        font-size: 14px;
    }

    .product-image {
        height: 240px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }
}

/* ===================================
   Product Slider - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .products-section {
        padding: 60px 15px;
    }

    .products-title {
        font-size: 25px;
        margin-bottom: 40px;
    }

    .slider-wrapper {
        gap: 10px;
    }

    .product-track {
        gap: 20px;
    }

    .product-card {
        min-width: 100%;
    }

    .product-name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .product-description {
        font-size: 12px;
    }

    .product-image {
        height: 200px;
        padding: 15px;
    }

    .product-info {
        padding: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-dots {
        margin-top: 30px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 24px;
    }
}

/* ===================================
   Product Slider - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .products-section {
        padding: 50px 10px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 16px;
    }
}

/* ===================================
   Franchise Section
   =================================== */
.franchise-section {
    padding: 80px 20px;
    background-color: #9bc53d;
}

.franchise-container {
    max-width: 1200px;
    margin: 0 auto;
}

.franchise-box {
    background-color: #9bc53d;
    border: 4px solid #c4a053;
    border-radius: 8px;
    padding: 60px 80px;
    text-align: center;
    position: relative;
}

.franchise-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.franchise-icon {
    font-size: 32px;
    margin-bottom: 24px;
}

.franchise-content {
    max-width: 1000px;
    margin: 0 auto;
}

.franchise-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #2d2d2d;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.franchise-content p:last-child {
    margin-bottom: 0;
}

/* ===================================
   Franchise Section - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .franchise-section {
        padding: 60px 20px;
    }

    .franchise-box {
        padding: 50px 60px;
    }

    .franchise-title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .franchise-icon {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .franchise-content p {
        font-size: 14px;
    }
}

/* ===================================
   Franchise Section - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .franchise-section {
        padding: 50px 15px;
    }

    .franchise-box {
        padding: 40px 30px;
        border-width: 3px;
    }

    .franchise-title {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .franchise-icon {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .franchise-content p {
        font-size: 12px;
        line-height: 1.7;
        margin-bottom: 14px;
    }
}

/* ===================================
   Franchise Section - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .franchise-section {
        padding: 40px 10px;
    }

    .franchise-box {
        padding: 30px 20px;
    }

    .franchise-title {
        font-size: 25px;
    }
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box {
    background-color: #d4ebe8;
    border: 3px solid #7db5a6;
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #8b4789;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #2d7a6b;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* ===================================
   Stats Section - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .stats-section {
        padding: 60px 20px;
    }

    .stats-grid {
        gap: 25px;
    }

    .stat-box {
        padding: 40px 25px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 15px;
    }
}

/* ===================================
   Stats Section - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .stats-section {
        padding: 50px 15px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-box {
        padding: 35px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* ===================================
   Stats Section - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .stats-section {
        padding: 40px 10px;
    }

    .stat-box {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* ===================================
   Mission, Vision, Quality Section
   =================================== */
.mvq-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.mvq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mvq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvq-card {
    position: relative;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mvq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.mvq-card-brown {
    background-image: url('../images/ayurvedic_herbs_texture_1766406545230.png');
    background-color: #9b8b7e;
}

.mvq-card-green {
    background-image: url('../images/ayurvedic_herbs_texture_1766406545230.png');
    background-color: #7ba882;
}

.mvq-card-dark {
    background-image: url('../images/ayurvedic_herbs_texture_1766406545230.png');
    background-color: #6b5d56;
}

.mvq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mvq-card-brown .mvq-overlay {
    background: linear-gradient(135deg, rgba(155, 139, 126, 0.85) 0%, rgba(155, 139, 126, 0.75) 100%);
}

.mvq-card-green .mvq-overlay {
    background: linear-gradient(135deg, rgba(123, 168, 130, 0.85) 0%, rgba(123, 168, 130, 0.75) 100%);
}

.mvq-card-dark .mvq-overlay {
    background: linear-gradient(135deg, rgba(107, 93, 86, 0.85) 0%, rgba(107, 93, 86, 0.75) 100%);
}

.mvq-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mvq-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.mvq-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
    margin: 0;
}

/* ===================================
   MVQ Section - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .mvq-section {
        padding: 60px 20px;
    }

    .mvq-grid {
        gap: 25px;
    }

    .mvq-card {
        min-height: 350px;
    }

    .mvq-content {
        padding: 35px 25px;
    }

    .mvq-title {
        font-size: 25px;
        margin-bottom: 18px;
    }

    .mvq-text {
        font-size: 14px;
    }
}

/* ===================================
   MVQ Section - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .mvq-section {
        padding: 50px 15px;
    }

    .mvq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvq-card {
        min-height: 320px;
    }

    .mvq-content {
        padding: 30px 25px;
    }

    .mvq-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .mvq-text {
        font-size: 12px;
        line-height: 1.7;
    }
}

/* ===================================
   MVQ Section - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .mvq-section {
        padding: 40px 10px;
    }

    .mvq-card {
        min-height: 300px;
    }

    .mvq-content {
        padding: 25px 20px;
    }

    .mvq-title {
        font-size: 18px;
    }

    .mvq-text {
        font-size: 12px;
    }
}

/* ===================================
   Certification Logo Slider
   =================================== */
.cert-slider-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.cert-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cert-slider-track {
    display: flex;
    gap: 80px;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.cert-slider-track:hover {
    animation-play-state: paused;
}

.cert-logo {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cert-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.cert-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   Cert Slider - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .cert-slider-section {
        padding: 50px 0;
    }

    .cert-slider-track {
        gap: 60px;
    }

    .cert-logo {
        width: 130px;
        height: 90px;
    }
}

/* ===================================
   Cert Slider - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .cert-slider-section {
        padding: 40px 0;
    }

    .cert-slider-track {
        gap: 50px;
        animation: scroll-logos 20s linear infinite;
    }

    .cert-logo {
        width: 100px;
        height: 70px;
    }
}

/* ===================================
   Cert Slider - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .cert-slider-section {
        padding: 30px 0;
    }

    .cert-slider-track {
        gap: 40px;
    }

    .cert-logo {
        width: 80px;
        height: 60px;
    }
}

/* ===================================
   Manufacturing Standards Section
   =================================== */
.manufacturing-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.manufacturing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.manufacturing-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.manufacturing-text {
    padding-right: 20px;
}

.manufacturing-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    color: #6b9b37;
    margin-bottom: 24px;
}

.manufacturing-intro {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    text-align: justify;
}

.manufacturing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.manufacturing-list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a4a4a;
    font-family: 'Inter', sans-serif;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.manufacturing-list li:before {
    content: "•";
    color: #6b9b37;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

.manufacturing-contact {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a4a4a;
    font-family: 'Inter', sans-serif;
    text-align: justify;
    margin: 0;
}

.manufacturing-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.manufacturing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   Manufacturing - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .manufacturing-section {
        padding: 80px 20px;
    }

    .manufacturing-content {
        gap: 40px;
    }

    .manufacturing-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .manufacturing-intro,
    .manufacturing-list li,
    .manufacturing-contact {
        font-size: 14px;
    }

    .manufacturing-image {
        min-height: 350px;
    }
}

/* ===================================
   Manufacturing - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .manufacturing-section {
        padding: 60px 20px;
    }

    .manufacturing-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .manufacturing-text {
        padding-right: 0;
    }

    .manufacturing-title {
        font-size: 25px;
        margin-bottom: 18px;
    }

    .manufacturing-intro,
    .manufacturing-list li,
    .manufacturing-contact {
        font-size: 12px;
        line-height: 1.7;
    }

    .manufacturing-list {
        margin-bottom: 20px;
    }

    .manufacturing-list li {
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .manufacturing-list li:before {
        font-size: 16px;
    }

    .manufacturing-image {
        min-height: 300px;
        order: -1;
    }
}

/* ===================================
   Manufacturing - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .manufacturing-section {
        padding: 50px 15px;
    }

    .manufacturing-title {
        font-size: 25px;
    }

    .manufacturing-image {
        min-height: 250px;
    }
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-section {
    padding-bottom: 80px;
    background-color: #ffffff;
}

.why-header-bar {
    background-color: #6b9b37;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 50px;
}

.why-header-bar h2 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 0;
    font-weight: 600;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px auto;
    font-family: 'Inter', sans-serif;
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 15px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background-color: #6b9b37;
    border-radius: 6px;
    padding: 25px 20px;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card-header {
    background-color: #e37434;
    /* Orange/Terracotta */
    border-radius: 6px;
    padding: 15px 10px;
    margin-bottom: 25px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.why-card-header h3 {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.why-star {
    font-size: 18px;
    color: #ffffff;
    line-height: 1;
}

.why-card-text {
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #f0f0f0;
}

/* ===================================
   Why Choose - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .why-header-bar h2 {
        font-size: 28px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ===================================
   Why Choose - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .why-header-bar {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .why-header-bar h2 {
        font-size: 24px;
        padding: 0 15px;
    }

    .why-intro {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 20px 15px;
    }
}

/* ===================================
   Why Choose - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .why-header-bar h2 {
        font-size: 20px;
    }
}

/* ===================================
   How to Choose Section
   =================================== */
.guide-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.guide-container {
    max-width: 1200px;
    margin: 0 auto;
}

.guide-main-title {
    text-align: center;
    color: #6b9b37;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Column: Poster Style */
.intro-visual-col {
    background-color: #f5f2e9;
    /* Beige poster background */
    padding: 40px;
    border-radius: 4px;
}

.poster-header {
    text-align: center;
    margin-bottom: 40px;
}

.poster-header h2 {
    font-family: 'Oswald', sans-serif;
    /* Condensed font like image */
    font-size: 32px;
    line-height: 1.2;
    color: #2c3e2c;
    /* Dark green/black */
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.guide-step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.guide-step-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-icon {
    font-size: 30px;
    width: 50px;
    height: 50px;
    /* Removed background circle */
    background-color: transparent;
    color: #2c3e2c;
    /* Dark icon color */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.step-content h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #2c3e2c;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.step-content p {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}


/* Right Column: Checklist Bars */
.checklist-col {
    padding-top: 20px;
}

.checklist-box {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.checklist-item {
    margin-bottom: 12px;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-left: 4px solid transparent;
    border-radius: 4px;
    font-size: 13px;
    color: #4a4a4a;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    cursor: default;
}

.checklist-item:hover {
    border-left-color: #6b9b37;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Remove default checkmark, use border left for interaction */
.checklist-item::before {
    content: none;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .intro-visual-col {
        padding: 25px;
    }

    .poster-header h2 {
        font-size: 24px;
    }
}

/* ===================================
   What We Offer Section
   =================================== */
.offer-section {
    padding: 80px 20px;
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    border: 3px solid #ff4d4d;
    /* Red border frame as seen in screenshot markup, or maybe it was just highlighting? */
    /* Actually the red box in the user image was likely drawn by the user to HIGHLIGHT the section. 
       I should NOT implement the red border. I will stick to the internal design. */
    border: none;
    /* Reset */
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
}

.offer-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #9c27b0;
    /* Purple color for "WHAT WE OFFER?" as seen in image icon colors? 
                      Actually text is GREEN "WHAT WE OFFER?" */
    color: #6b9b37;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.offer-intro-text {
    text-align: justify;
    max-width: 1100px;
    margin: 0 auto 50px auto;
    font-size: 14px;
    line-height: 1.8;
    color: #4a4a4a;
    font-family: 'Inter', sans-serif;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.offer-card {
    background-color: #ffffff;
    border: 2px solid #6b9b37;
    border-radius: 10px;
    /* Rounded corners */
    border-bottom-right-radius: 20px;
    /* Asymmetric corner style? Keeping simple for now */
    border-top-left-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Add the partial border effect if needed, but simple border matches image well */
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(107, 155, 55, 0.15);
}

.offer-icon-wrapper {
    flex-shrink: 0;
}

.offer-icon {
    font-size: 40px;
    color: #2d7a6b;
    /* Teal icon color */
    display: block;
    line-height: 1;
}

.offer-content h3 {
    font-size: 20px;
    color: #2d7a6b;
    /* Green title */
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.offer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ===================================
   Offer - Tablet Responsive
   =================================== */
@media screen and (max-width: 900px) {
    .offer-grid {
        gap: 20px;
    }

    .offer-card {
        padding: 20px;
    }
}

/* ===================================
   Offer - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-header h2 {
        font-size: 26px;
    }

    .offer-intro-text {
        font-size: 13px;
        text-align: left;
        /* Better for mobile */
    }

    .offer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .offer-icon {
        margin-bottom: 10px;
    }
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    position: relative;
    padding: 100px 20px;
    background-image: url('https://ayurvedicfranchise.com/wp-content/uploads/2024/10/Ayurvedic-Products-Manufacturing.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    color: #6b9b37;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 35px 0;
}

.cta-button {
    display: inline-block;
    background-color: #6b9b37;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #6b9b37;
}

.cta-button:hover {
    background-color: transparent;
    color: #6b9b37;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 155, 55, 0.3);
}

/* ===================================
   CTA - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .cta-section {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: 34px;
    }
}

/* ===================================
   CTA - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ===================================
   CTA - Small Mobile
   =================================== */
@media screen and (max-width: 480px) {
    .cta-title {
        font-size: 22px;
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e2c;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e2c;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f9f0;
    color: #6b9b37;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #6b9b37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background-color: #6b9b37;
    color: #ffffff;
}

.faq-item.active .faq-icon {
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ===================================
   FAQ - Tablet Responsive
   =================================== */
@media screen and (max-width: 1024px) {
    .faq-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
}

/* ===================================
   FAQ - Mobile Responsive
   =================================== */
@media screen and (max-width: 767px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 18px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 15px 18px;
    }
}