/* ======= GENERAL STYLES ======= */
:root {
    --primary-color: #28a745;
    --primary-dark: #218838;
    --primary-light: #48c774;
    --secondary-color: #2c3e50;
    --accent-color: #e67e22;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --bs-primary: #28a745; /* Green */
    --bs-dark: #000000;
    --bs-light: #fff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #495057;
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

.greencolormainpageheadercommon {
    border-left: 5px solid #28a745;
    padding-left: 15px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(40, 167, 69, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title .subtitle {
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

.text-center .section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.text-start .section-title h2:after {
    left: 0;
    transform: none;
}

/* ======= TOP BAR ======= */
.top-bar {
    background-color: #73ae03;
    padding: 8px 0;
    font-size: 0.85rem;
}

/* ======= MAIN HEADER ======= */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo img {
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.search-box .form-control {
    border-radius: 50px 0 0 50px;
    border: 1px solid #e9ecef;
    padding-left: 20px;
}

.search-box .btn {
    border-radius: 0 50px 50px 0;
    padding: 10px 20px;
}

.contact-btn {
    border-radius: 50px;
    transition: var(--transition);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ======= NAVIGATION ======= */
.navbar {
    background-color: #73ae03;
    padding: 0;
    transition: var(--transition);
}

.navbar-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-toggler {
    border: none;
    padding: 10px;
    color: white !important;
    font-size: 1.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* ======= HERO CAROUSEL ======= */
.hero-section {
    position: relative;
}

.carousel-item {
    height: 400px;
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.carousel-item.active img {
    transform: scale(1);
}

.carousel-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
    margin: 0 auto;
    left: 10%;
    right: 10%;
    text-align: center;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* ======= PRODUCT CARDS ======= */
.featured-products {
    padding: 80px 0;
    background-color: var(--light-color);
}

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin-bottom: 30px;
    height: auto;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.product-title a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--primary-color);
}

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.cta-card {
    background: linear-gradient(135deg, #2980b9, #3498db);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-content {
    padding: 40px 20px;
}

.cta-content h4 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ======= CTA SECTION ======= */
.cta-section {
    padding: 50px 0;
    background: url('img/cta-bg.jpg') center center/cover;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(0, 123, 255, 0.9));
}

.cta-inner {
    position: relative;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.cta-inner h2 {
    color: #fff;
    font-size: 2.5rem;
}

/* ======= COCONUT PAGE ======= */
.CocopeatPagesection-heading {
    border-left: 5px solid #28a745;
    padding-left: 15px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

.CocopeatPagesection-highlight {
    color: #28a745;
}

.CocopeatPagesection-product-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.CocopeatPagesection ul.custom-list li {
    margin-bottom: 10px;
}

/* ======= ABOUT US PAGE ======= */
.Aboutuspagesection-title {
    border-left: 5px solid #28a745;
    padding-left: 15px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

.Aboutuspagesection-about-card {
    border: none;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.Aboutuspagesection-staff-img {
    object-fit: cover;
    height: 100%;
    border-top-left-radius: .375rem;
    border-bottom-left-radius: .375rem;
}

/* ======= MACHINE-TWISTED COIR FIBER PAGE ======= */
.mtcf-section-title {
    border-left: 5px solid var(--bs-primary);
    padding-left: 15px;
    font-weight: bold;
    color: var(--bs-dark);
    margin-bottom: 1.5rem;
}

.mtcf-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mtcf-list-group-item {
    background-color: #fff;
    border: 0;
    padding-left: 0;
}

.mtcf-application-list li::before {
    content: "✔️ ";
    color: var(--bs-primary);
}

.mtcf-content-area {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* ======= TEA PAGE ======= */
.teapage-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--bs-dark);
    border-bottom: 3px solid var(--bs-primary);
    display: inline-block;
    padding-bottom: 10px;
}

.teapage-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.teapage-section-title {
    color: #28a745;
    margin-top: 2rem;
    font-weight: 600;
    border-left: 5px solid #28a745;
    padding-left: 15px;
}

.teapage-green-text {
    color: #28a745;
    font-weight: 600;
}

.teapage-container {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* ======= PRODUCT PAGES COMMON STYLING ======= */
.product-page-container {
    background-color: #f9f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.product-page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--bs-dark);
    text-align: center;
    border-bottom: 4px solid var(--bs-primary);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.product-page-section-title {
    border-left: 5px solid var(--bs-primary);
    padding-left: 15px;
    font-weight: 600;
    color: #212529;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.product-page-img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.product-page-list li {
    margin-bottom: 0.5rem;
}

.product-page-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

/* ======= BACK TO TOP ======= */
.back-to-top {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    background-color: white !important;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}

/* ======= RESPONSIVE ADJUSTMENTS ======= */
@media (min-width: 992px) {
    .navbar-nav {
        height: 80px !important;
        display: flex;
        align-items: center;
    }

    .nav-link {
        border-radius: 7px;
        margin: 0px 10px;
    }

    .nav-link:hover {
        background-color: white !important;
        color: black !important;
    }

    .navbar-nav .nav-link.active {
        background-color: white;
        color: black;
    }
}


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

  .goog-te-menu-frame {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .goog-te-menu2 {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: auto !important;
    box-sizing: border-box;
    height: auto !important;
    font-size: 14px !important;
  }

  @media screen and (max-width: 767px) {
    #google_translate_element {
      padding: 10px;
      text-align: center;
    }
  }


