* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary-color: #6b8e5a;
    --secondary-color: #f8f9fa;
    --accent-color: #DCF1C8;
    /* --font-family: 'Arial', sans-serif; */
    --font-family: 'Poppins', sans-serif;
    --font-stylish: 'Vladimir Script', cursive;
    --border-radius: 10px;
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}




body {
    font-family: var(--font-family);
    overflow-x: hidden;
}

/* Page Title */
.page-title {
    text-align: center;
    padding: 40px 0;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Navigation Bar - Exact as in image */
.custom-navbar {
    position: absolute;
    /* top: 20px; */
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 78%;
    /* max-width: 900px; */
    max-width: 100%;
}

.navbar-container {
    /* background: rgba(255, 255, 255, 0.95); */
    background: var(--accent-color);
    backdrop-filter: blur(15px);
    border-radius: 0px 0px 10px 10px;
    padding: 12px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    /* top: 120px; */
    overflow: auto;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color) !important;
    text-decoration: none;
}


.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.navbar-nav .nav-link:hover, .activee {
    background: rgba(107, 142, 90, 0.1);
    color: #4a5c3a !important;
}

.navbar-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.navbar-icons .icon-btn {
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-icons .icon-btn:hover {
    background: rgba(107, 142, 90, 0.1);
    color: #4a5c3a;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
        url('file:///S:/shivam/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Enhanced Forest Background Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Large Background Text - Exactly as in image */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 12vw, 18rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.05em;
    z-index: 1;
    white-space: nowrap;
    user-select: none;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    font-family: var(--font-family);
}

/* Product Display Platform - More realistic */
.product-platform {
    position: relative;
    z-index: 10;
    background: linear-gradient(145deg, rgba(139, 116, 86, 0.9), rgba(101, 82, 59, 0.8));
    border-radius: 20px;
    padding: 40px 60px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    max-width: 900px;
    width: 85%;
    backdrop-filter: blur(10px);
}

/* Product Layout - Matching image exactly */
.products-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    min-height: 300px;
}

/* Amla Bites Package - Left side */
.amla-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.amla-package {
    width: 140px;
    height: 180px;
    background: linear-gradient(145deg, #d4a574, #b8935f);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.amla-package::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 35px;
    background: #4a7c59;
    border-radius: 8px;
}

.amla-label {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    color: #4a5c3a;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Center section - Pachan Shuddhi and oils */
.center-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pachan-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pachan-box {
    width: 120px;
    height: 90px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pachan-box::after {
    content: '🌿';
    font-size: 28px;
}

.pachan-label {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #4a5c3a;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.oil-bottles-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.oil-bottle {
    width: 40px;
    height: 120px;
    border-radius: 8px 8px 4px 4px;
    position: relative;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.oil-bottle.dark {
    background: linear-gradient(145deg, #2d5c3a, #1a3d20);
}

.oil-bottle.golden {
    background: linear-gradient(145deg, #d4a574, #b8935f);
}

.oil-bottle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: inherit;
    border-radius: 50%;
}

/* Right section - Mortar, pestle and herbs */
.herbs-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mortar-pestle {
    width: 90px;
    height: 70px;
    background: linear-gradient(145deg, #f5f5f5, #e0e0e0);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.mortar-pestle::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -15px;
    width: 35px;
    height: 10px;
    background: #d0d0d0;
    border-radius: 20px;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.herbs-collection {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.lime {
    width: 28px;
    height: 28px;
    background: radial-gradient(circle, #90c695, #6b8e23);
    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.small-bottle {
    width: 25px;
    height: 50px;
    background: linear-gradient(145deg, #d4a574, #b8935f);
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Floating Leaves - More natural */
.floating-leaf {
    position: absolute;
    color: rgba(144, 198, 149, 0.7);
    font-size: 2.5rem;
    animation: leafFloat 12s ease-in-out infinite;
    z-index: 5;
}

.leaf-1 {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 15%;
    right: 10%;
    animation-delay: 3s;
}

.leaf-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 6s;
}

.leaf-4 {
    bottom: 30%;
    right: 18%;
    animation-delay: 9s;
}

@keyframes leafFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    33% {
        transform: translateY(-25px) rotate(8deg);
        opacity: 0.9;
    }

    66% {
        transform: translateY(10px) rotate(-5deg);
        opacity: 0.8;
    }
}

/* Bottom Section */
.bottom-section {
    text-align: center;
    padding: 80px 20px;
    background: var(--secondary-color);
}

.bottom-subtitle {
    font-style: italic;
    color: #b8935f;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.bottom-title {
    font-size: 3rem;
    font-weight: bold;
    color: #2d5c3a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
}



/* About Section */
.about-section {
    background: var(--secondary-color);
    padding: 98px 0 30px;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="leaf-pattern" patternUnits="userSpaceOnUse" width="200" height="200"><path d="M50,50 Q70,30 90,50 Q70,70 50,50" fill="%23e8f3ea" opacity="0.3"/><path d="M150,150 Q130,130 150,110 Q170,130 150,150" fill="%23e8f3ea" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23leaf-pattern)"/></svg>') repeat;
    opacity: 0.4;
}

.decorative-leaf {
    animation: leafSway 8s ease-in-out infinite;
    position: absolute;
    left: 15px;
}

.decorative-leaf1 {
    animation: leafSway 8s ease-in-out infinite;
    position: absolute;
    /* left: 15px; */
    right: 213px;

}

@keyframes leafSway {

    0%,
    100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

.section-subtitle {
    font-family: var(--font-stylish);
    color: #b8935f;
    font-size: 2.4rem;
    margin-bottom: 25px;
    font-weight: 400;
}

.section-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2d5c3a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Marketplace Section */
.marketplace-section {
    background: var(--secondary-color);
    padding: 60px 0 100px;
}

.marketplace-title {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.marketplace-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-item {
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-box {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 160px;
    min-height: 61px;
}

.logo-box:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* TATA 1mg */
.tata-1mg {
    background: var(--primary-color);
    color: white;
}

.tata-1mg .logo-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.tata-1mg .logo-suffix {
    font-size: 1rem;
    background: white;
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Myntra */
.myntra {
    background: var(--primary-color);
    color: white;
}

.myntra .logo-text {
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
}

.myntra .logo-name {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Amazon */
.amazon {
    background: var(--primary-color);
    color: white;
}

.amazon .logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.amazon .logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    right: 20%;
    height: 3px;
    background: #ff9900;
    border-radius: 2px;
}

/* Flipkart */
.flipkart {
    background: var(--primary-color);
    color: white;
}

.flipkart .logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
}


/* Products Section */
.products-section {
    background: var(--secondary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 200px;
}

.products-section::before {
    content: 'Products';
    position: absolute;
    top: 24%;
    left: 47%;
    transform: translate(-50%, -50%);
    font-size: 26rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.03);
    font-family: var(--font-stylish);
    white-space: nowrap;
    z-index: 0;
    letter-spacing: 10px;
}

.background-numbers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    /* z-index: 1; */
}

.background-image {
    width: 83%;
    /* border: 2px solid; */
    position: absolute;
    top: 31px;
}

.background-image img {
    width: 100%;
    height: 374px;
}

.bg-number {
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(200, 200, 200, 0.1);
    user-select: none;
}

.bg-number:nth-child(1) {
    top: 10%;
    left: 5%;
}

.bg-number:nth-child(2) {
    top: 20%;
    right: 10%;
}

.bg-number:nth-child(3) {
    bottom: 10%;
    left: 15%;
}

.products-subtitle {
    font-family: var(--font-stylish);
    color: #b8935f;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.products-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #2d5c3a;
    margin-bottom: 60px;
}

.product-card {
    background: transparent;
    border: none;
    text-align: center;
    position: relative;
    z-index: 10;
}

.product-image-container {
    margin-bottom: 30px;
}

.product-image {
    max-width: 380px;
    height: 500px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: translateY(-10px);
}

.pachan-product {
    /* background: linear-gradient(145deg, #7a9b8a, var(--primary-color)); */
    background: #627B67;
}

.amla-product {
    background: linear-gradient(145deg, #7a9b8a, var(--primary-color));
}

.pain-product {
    background: linear-gradient(145deg, #7a9b8a, var(--primary-color));
}

/* Pachan Shuddhi Package */
.pachan-package {
    width: 200px;
    height: 280px;
    background: linear-gradient(145deg, #2d5c3a, #1a3d20);
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.package-top {
    height: 40px;
    background: linear-gradient(145deg, #4a7c59, #2d5c3a);
    border-radius: 15px 15px 0 0;
}

.package-label {
    background: rgba(255, 255, 255, 0.95);
    margin: 20px 15px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.brand-logo {
    font-size: 20px;
    margin-bottom: 8px;
}

.main-name {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d5c3a;
}

.sub-name {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

.package-bottom {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 15px 15px;
    border-radius: 8px;
}

.product-illustration {
    font-size: 3rem;
}

/* Amla Package */
.amla-package-card {
    width: 200px;
    height: 280px;
    background: linear-gradient(145deg, #2d5c3a, #1a3d20);
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.amla-package-top {
    height: 40px;
    background: linear-gradient(145deg, #d4a574, #b8935f);
    border-radius: 15px 15px 0 0;
}

.amla-package-label {
    background: rgba(255, 255, 255, 0.95);
    margin: 20px 15px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.amla-brand-logo {
    font-size: 20px;
    margin-bottom: 8px;
}

.amla-name {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d5c3a;
}

.amla-type {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 4px;
}

.amla-package-bottom {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 15px 15px;
    border-radius: 8px;
}

.amla-illustration {
    font-size: 3rem;
}

/* Pain Viram Bottle */
.product-bottle {
    width: 120px;
    height: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bottle-cap {
    width: 120px;
    height: 30px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 60px 60px 8px 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bottle-body {
    width: 120px;
    height: 270px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 8px 8px 15px 15px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.bottle-label {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    bottom: 20px;
    background: linear-gradient(145deg, #d4a574, #b8935f);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bottle-brand {
    font-size: 16px;
    color: white;
}

.pain-text {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: white;
}

.viram-text {
    display: block;
    font-size: 0.9rem;
    color: white;
    margin-top: 2px;
}

.bottle-type {
    font-size: 0.7rem;
    color: white;
    margin: 5px 0;
}

.bottle-illustration {
    font-size: 2rem;
}

.product-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d5c3a;
    margin-bottom: 20px;
}

.btn-view-product {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-view-product:hover {
    background: #BFEAA9;
    color: #2D5C3A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 142, 90, 0.3);
}

.decorative-leaf-bottom {
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.6;
    animation: leafSway 10s ease-in-out infinite;
}

.reviews-section {
    /* background: linear-gradient(135deg, #7ca982 0%, #5a7c65 100%); */
    background: #627B67;
    /* position: relative; */
    overflow: hidden;
    padding: 100px 0;
    min-height: 400px;
}

.reviews-section::before {
    /* content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 20 Q50 5 80 20 Q85 50 80 80 Q50 85 20 80 Q5 50 20 20 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
    background: url('assets/images/leaf6.png');
    background-size: contain;
    animation: float 6s ease-in-out infinite; */
}

.reviews-section::after {
    /* content: '';
    position: absolute;
    top: 20px;
    right: 80px;
    width: 120px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transform: rotate(-15deg);
    animation: float 4s ease-in-out infinite reverse; */
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.script-title {
    font-family: var(--font-stylish);
    font-size: 2.5rem;
    color: rgba(244, 238, 119, 0.9);
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.quote-icon.left {
    margin-bottom: 20px;
}

.quote-icon.right {
    margin-top: 20px;
    transform: rotate(180deg);
}

.review-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 30px 0;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.reviewer-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    letter-spacing: 2px;
    margin-top: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
    bottom: -60px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
}

/* Hover effects */
.carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}



/* Team Section Styles */
.team-section {
    /* background: linear-gradient(135deg, var(--secondary-color) 0%, #e9ecef 100%); */
    background: white;
    /* padding: 100px 0; */
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: 'About Us';
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 21rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.03);
    font-family: var(--font-stylish);
    white-space: nowrap;
    z-index: 0;
    letter-spacing: 10px;
}

.script-title-team {
    font-family: var(--font-stylish);
    font-size: 2.5rem;
    color: #b8860b;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.main-title-team {
    font-family: var(--font-family);
    font-size: 4rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.team-card {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.team-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #7ca982 0%, #5a7c65 100%);
    padding: 15px;
}

.team-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    /* height: 400px; */
    height: 586px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-image-wrapper:hover .team-image {
    transform: scale(1.05);
}

/* Responsive adjustments for team section */




footer {
    background-color: var(--accent-color);
    padding: 40px;
    /* display: grid; */
    /* grid-template-columns: 2fr 1fr 1fr 2fr; */
    /* gap: 30px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.logo-section p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons span {
    font-size: 18px;
}

.links-section h3,
.contact-section h3,
.blog-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-section li {
    margin-bottom: 10px;
}

.links-section a {
    text-decoration: none;
    color: #666;
}



.blog-posts {
    display: grid;
    gap: 20px;
}

.blog-post {
    display: flex;
    gap: 15px;
}

.blog-date {
    font-size: 12px;
    color: #999;
}

.blog-content {
    font-size: 14px;
    color: #666;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 14px;
}

.leaf1 {
    height: 250px;
    left: -17px;
    position: relative;
    top: -30px;
}

.icon1 {
    height: 60px;
    position: relative;
    left: -7px;
    top: -7px;
}

.team-section{
background-image: none !important;
}

.r-upper h4 {
    line-height: 20px;
}

.r-upper h4 {
    /* text-align: left; */
    font-weight: 600;
    font-size: 20px;
}

.r-upper p {
    text-align: left;
    font-size: 15px;
}

/* Mobile Responsiveness */

@media (max-width: 576px) {
    .team-section::before {
        font-size: 3rem;
    }


    .hero {
        height: 25vh;
    }

    .navbar-brand img {
        height: 25px;
    }

    .custom-navbar {
        width: 95%;
        /* top: 10px; */
    }
}

@media (max-width: 768px) {

    .about-section {
        /* background: var(--secondary-color); */
        padding: 50px 0 30px;
        /* position: relative; */
    }

    .custom-navbar {
        width: 95%;
        /* top: 10px; */
    }

    .navbar-container {
        padding: 10px 20px;
    }

    .hero-bg-text {
        font-size: 4rem;
    }

    .products-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .product-platform {
        padding: 30px;
        width: 95%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 20px;
        text-align: justify;
    }

    .marketplace-title {
        font-size: 1.5rem;
    }

    .marketplace-logos {
        flex-direction: column;
        gap: 15px;
    }

    .products-section {
        padding: 50px 0;
    }

    .products-title {
        font-size: 2.5rem;
    }

    .details-section {
        background-image: none !important;
        height: 85vh !important;
    }

    .decorative-leaf1 img {
        height: 150px !important;
    }

    .logo-box {
        min-width: 200px;
    }

    .navbar-container {
        padding: 10px 20px;
    }

    .hero-bg-text {
        font-size: 4rem;
    }

    .products-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .product-platform {
        padding: 30px;
        width: 95%;
    }

    .bottom-title {
        font-size: 2rem;
    }

    .team-section::before {
        font-size: 4rem;
        letter-spacing: 5px;
    }

    .script-title-team {
        font-size: 2rem;
    }

    .main-title-team {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-image {
        height: 530px;
    }

    .script-title {
        font-size: 2rem;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .quote-icon {
        font-size: 3rem;
    }

    .reviewer-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .reviews-section {
        padding: 60px 0;
    }

}

@media (max-width:480px) {}

@media (min-width:481px) and (max-width:767px) {}

@media (min-width:768px) and (max-width:991px) {}

@media (min-width:992px) and (max-width:1199px) {}

@media (min-width:1200px) and (max-width:1919px) {}

@media(max-width:1920px) {}