:root {
    --primary-green: #2E7D32;
    --light-green: #66BB6A;
    --dark-text: #333333;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 700;
}

.text-success {
    color: var(--primary-green) !important;
}

.bg-success {
    background-color: var(--primary-green) !important;
}

.hover-success:hover {
    color: var(--light-green) !important;
}

.btn-success {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--light-green);
    border-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

.transition-effect {
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    padding: 5px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 70px;
}

@media (max-width: 991px) {
    .navbar-logo {
        height: 80px;
    }
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    align-items: center;
}

.brand-title {
    color: var(--primary-green) !important;
    line-height: 1.1;
    font-size: 1.35rem;
    font-weight: 700;
}

.brand-stars {
    color: #ffb300;
    /* Rich gold color */
    font-size: 0.95rem;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 2px;
}

.logo-divider {
    width: 1px;
    height: 35px;
    background-color: rgba(46, 125, 50, 0.25);
    margin: 0 15px;
}

.brand-tagline {
    font-family: 'Poppins', sans-serif;
    color: #216121;
    font-size: 0.60rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
    margin-left: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-carousel {
    height: 60vh;
    min-height: 510px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

#heroCarousel {
    position: relative;
    z-index: 1;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: top center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Section Padding */
.section-padding {
    padding: 50px 0;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    margin: 10px;
}

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

.product-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Why Choose Us Icons */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.9)), url('../images/cta-bg.jpg') center/cover;
    color: var(--white);
    padding: 80px 0;
}

/* Admin Styles */
.admin-sidebar {
    min-height: 100vh;
    background-color: #343a40;
}

.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, .8);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: #fff;
    background-color: var(--primary-green);
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 25vh;
        min-height: 100px;
    }

    .hero-slide {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .admin-sidebar {
        min-height: auto;
    }
}

/* Custom Footer */
.site-footer {
    position: relative;
    background: linear-gradient(90deg, #042b24, #0c3d2f);
    color: #fff;
    overflow: hidden;
    padding-top: 40px;
}


.footer-main {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.logo-tagline {
    color: #32c481;
    font-weight: 600;
    margin-top: 8px;
    font-size: 14px;
}

.footer-about {
    color: #d5d5d5;
    line-height: 1.6;
    margin: 20px 0;
    font-size: 15px;
}

.footer-heading {
    color: #ffcc00;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    font-size: 20px;
}

.footer-heading::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #3fd58a;
    position: absolute;
    left: 0;
    bottom: -12px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

.footer-links a:hover {
    color: #3fd58a;
    padding-left: 8px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.info-item i {
    color: #34d286;
    font-size: 28px;
    margin-top: 6px;
}

.info-label {
    color: #8fa79d;
    font-weight: 700;
    font-size: 14px;
}

.info-text {
    font-size: 26px;
    font-weight: 700;
    margin-top: 8px;
}

.org-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #ddd;
    font-size: 15px;
}

.contact-link i {
    color: #ffcc00;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.social-links a:hover {
    background: #34d286;
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    color: #aaa;
}

.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-links a {
    color: #aaa;
    text-decoration: none;
}

.bottom-links a:hover {
    color: #34d286;
}

@media(max-width:991px) {

    .logo-text {
        font-size: 30px;
    }

    .footer-heading {
        font-size: 20px;
    }

    .info-text {
        font-size: 20px;
    }

    .org-name {
        font-size: 24px;
    }

    .contact-link {
        font-size: 15px;
    }

    .site-footer::before {
        font-size: 180px;
    }
}

/* Plant Gallery Section */
.plant-gallery-section {
    background-color: #eaf2ed;
    padding: 60px 0;
}

.gallery-title {
    color: #11432f;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.gallery-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, #349c66, #f3a83b);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.gallery-card {
    background: #ffffff;
    border-radius: 12px;
    padding-bottom: 20px;
    margin: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

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

.gallery-img-wrapper {
    height: 200px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    margin-bottom: 15px;
}

.gallery-img-wrapper img,
.gallery-img-wrapper .no-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-img-wrapper .no-img {
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.gallery-info h5 {
    color: #1a4331;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.view-btn {
    border: 1px solid #349c66;
    color: #349c66;
    font-weight: 600;
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-btn:hover {
    background-color: #349c66;
    color: #fff;
}

/* Owl Carousel Custom Controls */
.plant-gallery-carousel .owl-nav button.owl-prev,
.plant-gallery-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #40a06d !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 18px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(64, 160, 109, 0.4);
    transition: all 0.3s ease;
    margin: 0 !important;
}

.plant-gallery-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.plant-gallery-carousel .owl-nav button.owl-next {
    right: -20px;
}

.plant-gallery-carousel .owl-nav button:hover {
    background-color: #2e7a50 !important;
}

.plant-gallery-carousel .owl-dots {
    margin-top: 30px !important;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.plant-gallery-carousel .owl-dots .owl-dot span {
    display: block !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background: #b5d5c5 !important;
    margin: 0 !important;
    transition: all 0.3s;
}

.plant-gallery-carousel .owl-dots .owl-dot.active span {
    background: #40a06d !important;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(64, 160, 109, 0.6);
}

/* Product Details Gallery Carousel Dots */
.product-details-carousel {
    position: relative;
}

.product-details-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 !important;
    z-index: 10;
}

.product-details-carousel .owl-dots .owl-dot span {
    display: block !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-details-carousel .owl-dots .owl-dot.active span {
    background: #ffffff !important;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Floating Contact Widget */
.floating-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.whatsapp-btn {
    background-color: #25D366;
}

.phone-btn {
    background-color: #007bff;
}

.email-btn {
    background-color: #dc3545;
}

/* Tooltip on hover */
.floating-btn::before {
    content: attr(title);
    position: absolute;
    right: 60px;
    background-color: #333;
    color: #fff;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(10px);
}

.floating-btn::after {
    content: '';
    position: absolute;
    right: 54px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(10px);
}

.floating-btn:hover::before,
.floating-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-widget {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .floating-btn::before,
    .floating-btn::after {
        display: none;
    }
}

/* Language Switcher Widget */
.lang-switcher {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.lang-btn {
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    color: #2e7a50;
    transition: all 0.3s ease;
    user-select: none;
}

.lang-btn:hover {
    color: #1a4331;
}

.lang-btn.active {
    background: #349c66;
    color: #ffffff;
}

.lang-btn.active:hover {
    color: #ffffff;
}

/* custom shadow for event details img */
.custom-shadow {
    box-shadow: 0 0.100rem 0.80rem rgba(67, 67, 67, 0.2);
}

@media (max-width: 768px) {
    .lang-switcher {
        bottom: 15px;
        left: 15px;
        padding: 4px;
    }

    .lang-btn {
        padding: 6px 16px;
        font-size: 14px;
    }
}


/* Hide Google Translate Top Bar & Tooltips */
.skiptranslate iframe,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

#goog-gt-tt {
    display: none !important;
}

/* Custom Breadcrumb Header */

.breadcrumb-pill {
    display: inline-block;
    background-color: #006118;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: -60px;
    box-shadow: 0 4px 10px rgba(161, 170, 161, 0.4);
}

.breadcrumb-pill a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-pill i {
    font-size: 0.8rem;
    margin: 0 10px;
}

/* Dropdown Hover on Desktop */
@media all and (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Our Grafting & Nursery Process Styles
   ========================================== */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

.process-wrapper {
    position: relative;
    padding: 10px 0;
}

/* Outer beautiful box container */
.process-container-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 25px;
    box-shadow: 0 15px 45px rgba(46, 125, 50, 0.04);
    border: 1px solid rgba(46, 125, 50, 0.08);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Subtle background accent in the box */
.process-container-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .process-container-box {
        padding: 40px 20px;
    }
}

/* Horizontal line behind steps on desktop */
.process-line {
    position: absolute;
    top: 95px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green) 0%, var(--light-green) 50%, #f3a83b 100%);
    z-index: 1;
    opacity: 0.3;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .process-line {
        display: none;
        /* Hide line on mobile/tablet grid stacking */
    }
}

.process-step-card {
    position: relative;
    background: #f8faf8;
    /* Light off-white contrast against white box */
    border: 1px solid rgba(46, 125, 50, 0.05);
    border-radius: 18px;
    padding: 40px 20px 25px;
    box-shadow: none;
    border-color: rgba(41, 112, 44, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    height: 100%;
    overflow: visible;
}

/* Hover effects */
.process-step-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.1);
    border-color: rgba(37, 100, 40, 0.2);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.2rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.05);
}

.process-step-card:hover .process-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: #ffffff;
    border-color: var(--light-green);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.2);
}

.process-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f3a83b 0%, #e67e22 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
    z-index: 3;
    border: 2px solid #ffffff;
}

.process-step-title {
    color: #11432f;
    font-size: 1.12rem;
    font-weight: 700;
    transition: color 0.3s;
}

.process-step-card:hover .process-step-title {
    color: var(--primary-green);
}

.process-step-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Zoom-on-hover effect for the farm layout map */
.layout-img {
    transition: transform 0.5s ease;
}

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

/* Thematic Layout Styles */
.thematic-layout-section {
    background-color: #f7f9fa !important;
    /* Soft, premium off-white/light-gray background */
    font-family: 'Poppins', sans-serif;
    padding: 70px 0;
}

.thematic-layout-section .thematic-title {
    color: #11432f;
    font-weight: 800;
}

.thematic-layout-section .map-card {
    border-radius: 24px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(46, 125, 50, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.thematic-layout-section .map-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 55px rgba(46, 125, 50, 0.1);
}

.thematic-layout-section .metric-card {
    background: #ffffff;
    border: 1.83px solid rgba(46, 125, 50, 0.07);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.08);
    border-color: rgba(46, 125, 50, 0.2);
}

.thematic-layout-section .metric-card:hover {
    transform: translateY(-5px);
}



.thematic-layout-section .metric-icon-box {
    width: 54px;
    height: 54px;
    background-color: rgba(46, 125, 50, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thematic-layout-section .metric-card:hover .metric-icon-box {
    background-color: var(--primary-green);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.05);
}

.thematic-layout-section .metric-number {
    font-size: 1.65rem;
    font-weight: 800;
    color: #11432f;
    line-height: 1.2;
}

.thematic-layout-section .metric-text {
    font-size: 0.88rem;
    color: #666666;
    font-weight: 500;
    margin-top: 2px;
}

/* Custom styles for enquiry modal checkboxes */
.custom-checkbox .form-check-input:checked {
    background-color: #2E7D32;
    border-color: #2E7D32;
}

.custom-checkbox .form-check-input:focus {
    border-color: #66BB6A;
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.custom-checkbox:hover .form-check-label {
    color: #2E7D32 !important;
    transition: color 0.2s ease;
}