body {
    font-family: 'Montserrat';
}

html,
body {
    padding-top: 50px !important;
    margin: 0;
    scroll-padding-top: 120px;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: white;
}

.navbar-brand img {
    height: 90px;
}

.nav-link {
    font-weight: bold;
    color: #3c5022 !important;
    margin-right: 1rem;
}

.btn-contact {
    background-color: #3c5022;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 991.98px) {

    html,
    body {
        padding-top: 30px !important;
        margin: 0;
        scroll-padding-top: 80px;
    }

    .navbar-brand img {
        height: 60px;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .btn-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
        padding-right: 40px;
    }

    .btn-contact {
        display: none;
    }

    .btn-contact-1 {
        background-color: #3c5022;
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        font-weight: bold;
        white-space: nowrap;
    }
}




.collections_1 {
    background-image: url('../assets/men.png');
    background-size: cover;
    background-position: center;
    height: 740px;
}

.collections_2 {
    background-image: url('../assets/women.png');
    background-size: cover;
    background-position: center;
    height: 740px;
}

.collections_3 {
    background-image: url('../assets/kids.png');
    background-size: cover;
    background-position: center;
    height: 740px;
}

.hero-title {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: white;
    overflow: hidden;
}

.gradient-overlay {
    content: "";
    position: absolute;
    height: 350px;
    width: 100%;
    background: linear-gradient(to top, rgba(60, 80, 34, 0.8), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 1rem;
    width: 100%;
}

.main-title {
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid #fff;
    width: 261px;
    height: 68px;
    background: rgba(161, 157, 157, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}


.sub-title {
    font-size: 1rem;
    font-weight: 500;
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.btn-know-more {
    background-color: #fff;
    color: #3C5022;
    border-radius: 25px;
    padding: 8px 30px;
    font-weight: 500;
    font-size: 0.95rem;
    border: none;
    transition: 0.3s ease;
}

.btn-know-more:hover {
    background-color: #3C5022;
    color: #fff;
}

@media (max-width: 768px) {


    .main-title {
        font-size: 1.2rem;
        padding: 8px 15px;
    }

    .sub-title {
        font-size: 0.9rem;
    }

    .btn-know-more {
        font-size: 0.85rem;
        padding: 6px 20px;
    }
}

.para_text {
    font-size: 18px;
}

.pan_partner_heading {
    color: #3C5022;
    font-weight: bold;
}

.offer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.offer-col {
    position: relative;
    text-align: left;
}

.icon-line-wrap {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.offer-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.offer-icon-wrap img {
    height: 90px;
    position: relative;
    z-index: 2;
    margin-left: 10px;
    margin-top: 10px;
}

.circle-bg {
    position: absolute;
    top: 30px;
    left: 50px;
    width: 70px;
    height: 70px;
    background: #e5e5e5;
    border-radius: 50%;
    z-index: 0;
}

.horizontal-line {
    height: 2px;
    background-color: #3d5723;
    flex-grow: 1;
    margin-left: 10px;
    position: relative;
    z-index: 1;
}

.no-line .horizontal-line {
    display: none;
}

.circle-bg-1 {
    position: absolute;
    top: 0px;
    left: 50px;
    width: 70px;
    height: 70px;
    background: #e5e5e5;
    border-radius: 50%;
    z-index: 0;
}

/* ==== TOGGLE BUTTONS ==== */
.toggle-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.toggle-btns button {
    flex: 1;
    padding: 25px;
    font-weight: bold;
    background-color: #3d5723;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin: 0;
    position: relative;
}

.toggle-btns button.inactive {
    background-color: #fff;
    color: #ccc;
}

.toggle-btns button::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}


/* ==== PRODUCT CARD ==== */
.product-card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    margin: 15px 0;
}

.main-product-img {
    width: 65%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    padding: 40px 20px;
    display: block;
    margin: 0 auto;
}

.main-product-img:hover {
    transform: scale(1.02);
}

.thumbs {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.thumbs img {
    width: 60px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.thumbs img:hover {
    opacity: 1;
}

.thumbs img.active-thumb {
    border-color: #3d5723;
    opacity: 1;
    box-shadow: 0 0 5px rgba(61, 87, 35, 0.5);
}

.product-name {
    font-weight: bold;
    color: #3d5723;
    margin-top: 10px;
    font-size: 24px;
}

.hidden {
    display: none;
}

@media (max-width: 767.98px) {
    .carousel-item .row>.col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .carousel-item .product-card {
        margin-bottom: 20px;
    }

    .carousel-item .row {
        justify-content: center;
    }
}

/* ==== EVENTS SECTION ==== */
.events-section {
    display: flex;
    width: 100%;
    gap: 40px;
    padding: 40px;
    align-items: flex-start;
    background-color: #fff;
    flex-wrap: wrap;
}

.events-left {
    width: 200px;
    flex-shrink: 0;
}

.events-left h2 {
    font-size: 32px;
    font-weight: bold;
    color: #354b1b;
    margin-bottom: 30px;
}

.events-toggle {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events-toggle button {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #354b1b5c;
    cursor: pointer;
    text-align: left;
}

.events-toggle button.active {
    color: #354b1b;
}

.events-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: calc(100% - 200px);
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0;
    padding-bottom: 10px;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    display: flex;
    gap: 0;
}

.carousel-slide img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.scroll-button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 26px;
    cursor: pointer;
    z-index: 2;
    padding: 12px 16px;
}

.scroll-button.left {
    left: 10px;
}

.scroll-button.right {
    right: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #6c757d;
    opacity: 0.6;
}

.carousel-indicators .active {
    background-color: #000;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
        filter: brightness(0) saturate(100%) invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);

}

.btn-outline-dark {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 768px) {
    .events-section {
        flex-direction: column;
        padding: 20px;
    }

    .events-left,
    .events-right {
        width: 100%;
    }

    .events-toggle {
        flex-direction: row;
        gap: 30px;
    }

    .carousel-slide img {
        max-width: 260px;
    }
}

.grow-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 60px 40px;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.grow-left {
    flex: 1 1 400px;
    min-width: 280px;
}

.grow-left h2 {
    font-size: 36px;
    font-weight: bold;
    color: #354b1b;
    margin-bottom: 20px;
}

.grow-left h2 span {
    color: #6b8e23;
}

.grow-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #222;
}

.grow-form {
    flex: 1 1 480px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 0 2px #fff, 0 0 10px rgba(107, 142, 35, 0.2);
    padding: 40px 30px;
}

.grow-form h3 {
    font-size: 26px;
    font-weight: bold;
    color: #354b1b;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
    color: #333;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.phone-group select {
    max-width: 80px;
}

.submit-btn {
    width: 40%;
    padding: 10px;
    background-color: #354b1b;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    display: block;
    margin: 20px auto 0 auto;
    text-align: center;
}


.submit-btn:hover {
    background-color: #2c3d15;
}

@media (max-width: 768px) {
    .grow-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .grow-form,
    .grow-left {
        width: 100%;
    }
}

/* .footer {
    background-color: #3d5723;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-left,
.footer-right {
    flex: 1 1 300px;
    min-width: 280px;
}


.footer-left h4 {
    margin: 10px 0 5px;
    font-size: 20px;
    font-weight: bold;
}

.footer-left p {
    margin: 5px 0;
    font-size: 14px;
    color: #e0e0e0;
}

.footer-right p {
    margin: 6px 0;
    font-size: 14px;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-right a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #d0e090;
}

.privacy-policy {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        margin-bottom: 30px;
    }

    .social-icons a {
        margin: 0 8px;
    }
}

.footer-right {
    float: right;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-right {
        float: none;
        text-align: center;
    }

    .footer-left {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
} */

/* .footer {
    background-color: #3d5723;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-left,
.footer-right {
    flex: 1 1 300px;
    min-width: 280px;
}

.footer-left h4 {
    margin: 10px 0 5px;
    font-size: 20px;
    font-weight: bold;
}

.footer-left p {
    margin: 5px 0;
    font-size: 14px;
    color: #e0e0e0;
}

.footer-right p {
    margin: 6px 0;
    font-size: 14px;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-right a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #d0e090;
}

.privacy-policy {
    font-weight: bold;
    display: inline-block;
}

.footer-right {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        margin-bottom: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
} */

.footer {
    background-color: #3d5723;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left,
.footer-right {
    flex: 1 1 300px;
    min-width: 280px;
}

.footer-left p {
    margin: 5px 0;
    font-size: 14px;
    color: #e0e0e0;
}

.footer-right {
    text-align: right;
}

.footer-right-content {
    /* display: flex; */
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.footer-right p {
    margin: 6px 0;
    font-size: 14px;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-right a:hover {
    text-decoration: underline;
}

/* .social-icons {
  margin-top: 10px;
} */

.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #d0e090;
}

.privacy-policy {
    font-weight: bold;
    display: inline-block;
}

@media (max-width: 768px) {
    .footer {
        height: 400px;
        padding: 40px 10px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-right-content {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }
}



.lang-switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px;
}

.lang-labels {
    font-weight: bold;
}

.lang-toggle {
    width: 60px;
    height: 30px;
    position: relative;
    -webkit-appearance: none;
    outline: none;
    background: #ccc;
    border-radius: 20px;
    transition: .5s;
}

.lang-toggle:checked {
    background: #4285f4;
}

.lang-toggle:before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    background: white;
    transition: .5s;
}

.lang-toggle:checked:before {
    left: 32px;
}

#google_translate_element,
.skiptranslate,
.goog-te-banner-frame {
    display: none !important;
}

@media (max-width: 768px) {
    .lang-switch-container {
        font-size: 0.75rem;
        gap: 3px;
    }

    .lang-toggle {
        transform: scale(0.7);
    }

    #google_translate_element {
        transform: scale(0.75);
        transform-origin: left center;
    }
}


