/* body {
  padding-top: 80px;
  font-family: "Nunito", sans-serif;
} */

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

p {
    font-weight: 400;
}


/* Navbar Styles */

.navbar-custom {
    background-color: #fff;
}

.navbar-custom .nav-link {
    color: #000;
    margin: 0 4px;
    position: relative;
    font-size: 15px;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: rgb(41, 114, 74);
}

.navbar-custom .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: rgb(41, 114, 74);
    font-size: 12px;
}

.book-btn {
    border-top-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0;
    border: 1px solid rgb(41, 114, 74);
    color: #000;
    padding: 8px 20px;
    text-decoration: none;
}

.book-btn:hover {
    background-color: rgb(41, 114, 74);
    color: #fff;
}

@media (max-width: 991px) {
    .navbar-custom .nav-link.active::after {
        display: none;
    }
    .navbar-custom .nav-link {
        padding-left: 20px;
    }
}


/* Dropdown Menu */

@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s ease;
        border-radius: 12px;
        padding: 0px 0;
        border: none;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        border-top: 1px solid #236e45;
    }
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* Dropdown items */

.dropdown-menu .dropdown-item {
    padding: 10px 32px;
    font-weight: 500;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(41, 114, 74, 0.2);
    color: rgb(41, 114, 74);
    padding-left: 28px;
}


/*MOBILE DROPDOWN – REMOVE BOX LINES + DOTS */

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        padding-left: 45px;
        margin: 0;
        list-style: disc;
    }
    .navbar .dropdown-menu li {
        list-style: disc;
    }
    .navbar .dropdown-item {
        border: 0;
        background: transparent;
        padding: 8px 0;
    }
}


/* Toggler Icons */

.menu-icon {
    font-size: 28px;
    display: inline;
    color: rgb(41, 114, 74);
}

.close-icon {
    font-size: 38px;
    display: none;
    color: rgb(41, 114, 74);
}

.navbar-toggler.collapsed .menu-icon {
    display: inline;
}

.navbar-toggler.collapsed .close-icon {
    display: none;
}

.navbar-toggler:not(.collapsed) .menu-icon {
    display: none;
}

.navbar-toggler:not(.collapsed) .close-icon {
    display: inline;
}

.navbar-toggler {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* Banner video */

.object-fit-cover {
    object-fit: cover;
}


/* Banner video height fix */

.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-section video {
    height: 100%;
    /* Video fills the banner height */
    width: 100%;
}


/* Mobile height fix */


/* OUR PROJECTS SECTION */

.our-projects {
    background-color: #236e45;
    margin-top: -8px;
}


/* GALLERY */

.our-projects-gallery {
    display: flex;
    gap: 20px;
    height: 420px;
}


/* ITEM */

.our-project-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s ease;
    border-radius: 10px;
}


/* IMAGE */

.our-project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 10px;
    /* Optional (safe) */
}


/* PROJECT NAME OVERLAY – GLASS BLUR */

.our-project-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 7px 18px;
    /* Glass effect */
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    font-family: "Nunito", sans-serif;
}

.our-project-item span small {
    font-size: 12px;
    color: #e1dfdf;
    font-weight: 300;
}

.our-project-item img:hover {
    transform: scale(1.05);
}


/* MOBILE */

@media (max-width: 768px) {
    .our-projects-gallery {
        flex-direction: column;
        height: auto;
    }
    .our-project-item {
        height: 250px;
    }
}

.project-btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}


/* ===== LEADERSHIP & NEWS – PREMIUM ===== */

.vision-section {
    background: linear-gradient(180deg, #ffffff, #f7f9f8);
}

.vision-wrap {
    background: #fff;
    border-radius: 28px;
    padding: 50px 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

h1.vision-title {
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    color: rgb(41, 114, 74);
}


/* LEFT */

.vision-sub {
    color: #000;
}


/* CENTER IMAGE */

.founder-box {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.founder-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}


/* RIGHT – NEWS */

.news-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px 22px;
    border: 1px solid rgb(41, 114, 74);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    transition: 0.35s ease;
}

.news-source {
    color: rgb(41, 114, 74);
}


/* MOBILE */

@media (max-width: 768px) {
    .vision-wrap {
        padding: 30px 20px;
    }
    .founder-box img {
        height: 300px;
    }
}


/* RIGHT NEWS COLUMN – MOVE UP */

.news-shift-up {
    margin-top: -40px;
}


/* Mobile pe normal rahe */

@media (max-width: 768px) {
    .news-shift-up {
        margin-top: 0;
    }
}


/* WHY INVEST SECTION */

.why-invest-section {
    background: #ffffff;
}

.why-title span {
    color: rgb(41, 114, 74);
}

.why-intro {
    font-size: 15.5px;
    color: #444;
    line-height: 1.8;
}


/* Cards */

.why-card {
    padding: 12px 8px;
    height: 100%;
    border-bottom: 1px solid #555;
    transition: all 0.35s ease;
}

.why-card h5 {
    font-weight: 700;
    color: rgb(41, 114, 74);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* Highlight Card */

.why-card.highlight {
    background: linear-gradient(135deg, #236e45, #2f8a5c);
}

.why-card.highlight h5,
.why-card.highlight p {
    color: #fff;
}


/* Mobile */

@media (max-width: 768px) {
    .why-title {
        font-size: 28px;
    }
}


/* ===== BLOG SECTION ===== */

.blog-section h1 {
    font-size: 2.5rem;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.blog-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.blog-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    gap: 15px;
}

.blog-content {
    flex: 1;
    min-width: 0;
}


/* TITLE – 1 LINE DOTS */

.blog-title {
    font-size: 1rem;
    font-weight: 600;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
       width:470px;
    padding-right: 10px;   /* thoda space milega */
}


/* DESCRIPTION – 2 LINE DOTS */

.blog-desc {
    font-size: 0.9rem;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}


/* BUTTON RIGHT END */

.read-more-btn {
    flex-shrink: 0;
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid #236e45;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 22px;
    border-top-left-radius: 22px;
    border-top-right-radius: 0px;
    color: #236e45;
    font-size: 0.85rem;
    transition: 0.3s ease;
    white-space: nowrap;
}

.read-more-btn:hover {
    background-color: #236e45;
    color: #fff;
}

@media (max-width: 768px) {
    .blog-img {
        height: 200px;
    }
    .blog-title {
        font-size: 0.95rem;
    }
    .blog-desc {
        font-size: 0.85rem;
    }
}

.blog-more-wrap {
    margin-top: 8px;
    text-align: right;
}

.blog-more-btn {
    padding: 2px 10px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.blog-more-btn:hover {
    background: #236e45;
    color: #fff;
    transform: translateY(-2px);
}


/* blog-page */

.sl-blog-detail {
    padding: 30px 0;
    background: #ffffff;
    font-family: "Nunito", sans-serif;
}

.sl-blog-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}


/* HERO IMAGE */

.sl-blog-hero-img {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.sl-blog-hero-img img {
    width: 100%;
    height:450px;
    object-fit: cover;
}


/* META */

.sl-blog-meta {
    font-size: 13px;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 12px;
}

.sl-blog-meta span {
    margin-right: 6px;
}


/* TITLE */

.sl-blog-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    margin-bottom: 25px;
}


/* CONTENT */

.sl-blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}


/* IMAGE GRID */

.sl-blog-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.sl-blog-gallery-item {
    overflow: hidden;
    border-radius: 6px;
}

.sl-blog-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sl-blog-gallery-item:hover img {
    transform: scale(1.05);
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .sl-blog-title {
        font-size: 26px;
    }
    .sl-blog-gallery {
        grid-template-columns: 1fr;
    }
    .sl-blog-gallery-item img {
        height: 220px;
    }
}

.sl-author-box {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 6px;
}

.sl-author-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.sl-author-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.sl-author-box p {
    margin: 0;
    font-size: 15px;
    color: #666;
}

.sl-related-title {
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}


/* Card */

.sl-related-card {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}


/* Image */

.sl-related-card img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}


/* Content */

.sl-related-content {
    padding-left: 15px;
}

.sl-related-content h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.sl-related-content span {
    font-size: 12px;
    color: #777;
}


/* Breadcrumb */

.sl-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
}

.sl-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #444242;
}

.sl-breadcrumb a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

.sl-breadcrumb a:hover {
    color: #b68c5a;
    /* brand golden tone */
}

.sl-breadcrumb .breadcrumb-item.active {
    font-size: 14px;
    color: #777;
}


/* Video Slider Wrapper */

.video-slider-wrapper {
    overflow: hidden;
    padding-bottom: 20px;
    position: relative;
}


/* Flex Slider */

.video-slider {
    display: flex;
    gap: 25px;
    animation: scrollVideos 40s linear infinite;
}


/* Video Card */

.video-card {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}


/* Video Element */

.story-video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}


/* Overlay & Play Button */

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-btn {
    font-size: 60px;
    color: #fff;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-card:hover .play-btn {
    transform: scale(1.15);
    opacity: 1;
}


/* Video Info */

.video-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.65);
}

.video-info h5 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
}

.video-info p {
    margin: 0;
    font-size: 14px;
}


/* Infinite Scroll Animation */

@keyframes scrollVideos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    /* duplicate cards for infinite effect */
}


/* Responsive */

@media (max-width: 992px) {
    .video-card {
        width: 240px;
    }
    .story-video {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .video-card {
        width: 200px;
    }
    .story-video {
        height: 160px;
    }
}


/* Footer Gradient */

.footer-gradient {
    background: linear-gradient(135deg, #1d1d1d, #236e45);
    color: #fff;
    font-family: "Nunito", sans-serif;
    position: relative;
    overflow: hidden;
}


/* Footer Logo */

.footer-logo img {
    max-width: 180px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}


/* Footer Description */

.footer-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 15px;
}


/* Social Links */

.social-links a {
    display: inline-block;
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #2f8a5c;
    transform: translateY(-3px);
}


/* Footer Titles */

.footer-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #2f8a5c;
    text-transform: uppercase;
}


/* Footer List */

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-list li a:hover {
    color: #2f8a5c;
    transform: translateX(4px);
}


/* Contact List */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    margin-right: 10px;
    color: #fff;
}


/* Footer Divider */

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 25px 0;
}


/* Footer Bottom */

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}


/* Responsive Footer */

@media (max-width: 992px) {
    .footer-gradient {
        text-align: left;
    }
    .footer-list,
    .footer-contact {
        padding: 0;
        text-align: left;
    }
    .footer-list li {
        margin-bottom: 3px;
    }
    .footer-logo {
        margin-bottom: 15px;
    }
    .social-links {
        justify-content: center;
    }
    /* Center Contact Info on Mobile */
    .footer-contact {
        display: inline-block;
        text-align: left;
    }
    .footer-contact li {
        justify-content: left;
        /* centers icon + text horizontally */
    }
}


/* our-project-page */

.project-hero {
    position: relative;
    height: 50vh;
    background: url("/img/our-project-hero-section.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.project-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.project-hero .container {
    position: relative;
    z-index: 2;
}

.fs-16 {
    color: #e0e0e0;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width:667px) {
    .fs-16 {
        font-size: 13px;
    }
}

.farm-project-section {
    background: #f9f9f9;
}


/* Project Info as Table */

.project-info {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}


/* Project Info as Table – ONLY PADDING FIX */

.project-info li strong,
.project-info li span {
    display: table-cell;
    padding: 5px 0px;
    /* ⬅ YAHI SE SPACE AAYEGI */
}

.project-info li {
    display: table-row;
    /* each li = table row */
    font-size: 16px;
    color: #333;
    padding: 8px 10;
    border-bottom: 1px solid #d9dbda;
    /* optional row separator */
}

.project-info li strong {
    display: table-cell;
    /* left cell */
    width: 150px;
    /* fixed width for labels */
    font-weight: 600;
    color: rgb(41, 114, 74);
    padding-right: 10px;
}

.project-info li span {
    display: table-cell;
    /* right cell */
}


/* Remove bottom border for last row */

.project-info li:last-child {
    border-bottom: none;
}


/* ===== PREMIUM FOUNDER SECTION ===== */

.founder-section-premium {
    padding: 60px 0;
    background-color: #fff8f0;
    border-bottom: 2px dotted #236e45;
}


/* Image Box */

.founder-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.01);
}

.founder-image-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 22px;
}

.founder-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    /* ✅ IMPORTANT FIX */
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}

.founder-name h5 {
    margin: 0;
    font-size: 17px;
    line-height: 1.2;
}

.founder-name span {
    font-size: 13px;
    opacity: 0.9;
}


/* Text Side */

.founder-content .section-tag {
    display: inline-block;
    color: rgb(41, 114, 74);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.founder-content h3 {
    color: rgb(41, 114, 74);
    margin-bottom: 20px;
}

.founder-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}


/* Mobile */

@media (max-width: 768px) {
    .founder-image-box img {
        height: 320px;
    }
}


/* Responsive */

@media (max-width: 768px) {
    .project-info li {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .project-info li strong {
        width: 40%;
        padding-right: 10px;
        margin-bottom: 5px;
    }
    .project-info li span {
        width: 60%;
    }
}


/* Founder Section adjustments for mobile */

@media (max-width: 991px) {
    .founder-section-premium .row {
        overflow: visible !important;
    }
    .founder-section-premium .founder-content ul.project-info li {
        padding: 0.25rem 0 !important;
        /* remove big vertical gaps */
    }
    .founder-section-premium .founder-image-box img {
        width: 100%;
        height: auto;
    }
    .founder-section-premium .founder-content {
        text-align: center;
        margin-top: 1rem;
    }
}


/* ONLY Founder Section Carousel – remove circle */

.founder-carousel .carousel-control-prev,
.founder-carousel .carousel-control-next {
    background: none !important;
    border-radius: 0 !important;
    width: auto;
    height: auto;
}


/* Arrow icon ke peeche ka background bhi remove */

.founder-carousel .carousel-control-prev-icon,
.founder-carousel .carousel-control-next-icon {
    background-color: transparent !important;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.info-card p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.farm-img-box img {
    width: 100%;
    object-fit: cover;
}

.content-heading {
    color: #236e45;
}


/* AGRONOMY SECTION */

.agronomy-section {
    background-color: #f3f3f3;
}

.agronomy-title {
    font-weight: 700;
}

.agronomy-title span {
    color: #236e45;
}

.agronomy-subtitle {
    max-width: 720px;
    margin: auto;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0px;
}


/* Left text */

.agro-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}


/* Expert box */

.expert-box {
    display: flex;
    gap: 14px;
    background: #fff;
    padding: 18px;
    border-left: 4px solid #236e45;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.expert-box i {
    font-size: 26px;
    color: #236e45;
}

.expert-box h6 {
    margin: 0;
    font-weight: 700;
}

.expert-box p {
    font-size: 14px;
    margin: 4px 0 0;
    color: #555;
}


/* Card Base */

.agro-card {
    position: relative;
    background: #fff;
    padding: 24px;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* Image ALWAYS visible */

.agro-img {
    position: absolute;
    top: 0;
    left: 0;
    /* pehle -100% tha */
    width: 100%;
    height: 100%;
}


/* Image */

.agro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Dark overlay ALWAYS ON */

.agro-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}


/* Content */

.agro-content {
    position: relative;
    z-index: 2;
}


/* Text color same as hover */

.agro-content i,
.agro-content h6,
.agro-content p {
    color: #fff;
}


/* ❌ Disable hover completely */

.agro-hover:hover .agro-img,
.agro-hover:hover .agro-content,
.agro-hover:hover h6,
.agro-hover:hover p,
.agro-hover:hover i {
    transform: none;
    left: 0;
    color: #fff;
}


/* Mobile */

@media (max-width: 768px) {
    .agronomy-title {
        font-size: 26px;
    }
}


/* PHILOSOPHY FAQ SECTION */

.philosophy-faq {
    background: #f3f3f3;
}


/* Image Box */

.faq-image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.faq-image-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.faq-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.faq-image-overlay h4 {
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}


/* FAQ Accordion */

.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}


/* Question */

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    color: #236e45;
}

.faq-question i {
    transition: transform 0.3s ease;
}


/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 22px;
}

.faq-answer p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    padding-bottom: 18px;
}


/* Active State */

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


/* Mobile */

@media (max-width: 768px) {
    .faq-image-box img {
        height: 300px;
    }
}


/* achievements-page */

.achievements-body {
    background-color: #f3f3f3;
}

.insight-subtitle {
    margin: auto;
    color: #555;
    line-height: 1.7;
}


/* TIMELINE */

.timeline {
    position: relative;
}


/* CENTER LINE */

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #236e45;
    transform: translateX(-50%);
}


/* ITEM */

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    position: relative;
}

.timeline {
    padding-bottom: 70px;
}


/* LEFT / RIGHT */

.timeline-item.left {
    flex-direction: row-reverse;
}

.timeline-item.right {
    flex-direction: row;
}


/* CONTENT */

.timeline-content {
    background: #fff;
    padding: 28px;
    width: 45%;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.timeline-content span {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #236e45;
}

.timeline-content h4 {
    font-weight: 700;
    margin: 10px 0;
}

.timeline-content p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.timeline-content a {
    font-weight: 600;
    color: #236e45;
    text-decoration: none;
}

.timeline-content a:hover {
    text-decoration: underline;
}


/* IMAGE */

.timeline-image {
    width: 45%;
    padding: 0 30px;
}

.timeline-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* MOBILE */

@media (max-width: 992px) {
    .timeline::before {
        left: 10px;
    }
    .timeline-item {
        flex-direction: column;
        padding-left: 30px;
    }
    .timeline-item.left,
    .timeline-item.right {
        flex-direction: column;
    }
    .timeline-content,
    .timeline-image {
        width: 100%;
    }
    .timeline-image {
        padding: 15px 0 0;
    }
}


/* BLOG SECTION */

.blog-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
}

.blog-card-unique {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.blog-card-unique:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card-unique:hover .blog-img img {
    transform: scale(1.05);
}

.blog-title {
    font-weight: 600;
    font-size: 1.3rem;
    color: #222;
}

.blog-desc {
    font-size: 0.95rem;
    line-height: 1.5;
}

.blog-meta {
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .blog-img img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .blog-img img {
        height: 200px;
    }
    .blog-title {
        font-size: 1.1rem;
    }
}


/* OUR TEAM SECTION – PREMIUM */

.team-hero {
    position: relative;
    height: 50vh;
    background: url("/img/team-hero.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.our-team-section {
    background: #f9f7f4;
    position: relative;
}


/* Section Heading */

.our-team-section h1 {
    letter-spacing: 1px;
}

.our-team-section p {
    max-width: 780px;
    margin: 0 auto;
    opacity: 0.9;
}


/* Team Card */

.team-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    transition: all 0.45s ease;
    position: relative;
}


/* Image */

.team-img {
    height: 320px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}


/* Content */

.team-content {
    padding: 12px 22px 3px;
    text-align: left;
    text-align: center;
}

.team-content h5 {
    font-weight: 700;
    font-size: 17px;
    color: #236e45;
    margin-bottom: 4px;
}

.team-content span {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #777;
    margin-bottom: 10px;
}

.team-content p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.team-btn-wrap {
    margin-top: 20px;
    text-align: right;
}

.team-btn {
    padding: 2px 10px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.team-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    border: 1.5px solid #fff;
    color: #236e45;
}


/* Mobile Optimization */

@media (max-width: 768px) {
    .team-img {
        height: 260px;
    }
    .team-content {
        padding: 20px;
    }
    .team-btn {
        padding: 6px 16px;
        font-size: 12.5px;
    }
}

.sl-team-section {
    background-color: #f8f9fa;
}

.sl-team-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.sl-team-card:hover {
    transform: translateY(-8px);
}

.sl-team-img-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #236e45;
}

.sl-team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-team-member-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.sl-team-member-role {
    font-size: 14px;
    color: #777;
}

.testimonial-wrap {
    background: #236e45;
    font-family: "Nunito", sans-serif;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    /* Ensure buttons are on top */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #236e45;
    font-size: 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card video {
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .testimonial-card video {
        height: 200px;
    }
}

.testimonial-text {
    background: #fff;
    /* white box */
    border-radius: 10px;
    padding: 12px;
    margin-top: 10px;
    text-align: center;
}

.testimonial-text h5 {
    font-size: 16px;
    color: #236e45;
    margin-bottom: 4px;
    font-weight: 700;
}

.testimonial-text span {
    font-size: 14px;
    color: #555;
}

.testimonial-text p {
    font-size: 14px;
    color: #333;
    margin-top: 6px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    #testimonialCarousel .single-mobile-item {
        display: flex;
        justify-content: center;
        padding: 10px;
    }
    #testimonialCarousel .testimonial-card video {
        height: 200px !important;
    }
}


/* ===== MEDIA EVENTS V2 ===== */
.media-hero {
    position: relative;
    height: 50vh;
    background: url("/img/media-hero.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
}


.media-events-v2 {
    background: #ffffff;
}


/* Card */

.event-box {
    display: block;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}


/* Hover */

.event-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}


/* Image */

.event-img {
    height: 230px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-box:hover img {
    transform: scale(1.08);
}


/* Info */

.event-info {
    padding: 8px 20px 14px;
}

.event-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
}

.event-info h5 {
    font-size: 17px;
    font-weight: 600;
    margin: 6px 0 4px;
}

.event-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 576px) {
    .media-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}


/* events */

.event-hero {
    position: relative;
    height: 50vh;
    background: url("/img/event.jpg") center top / cover no-repeat;
    display: flex;
    align-items: center;
}



/* Text */

.overlay h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.overlay p {
    margin: 2px 0 0;
    font-size: 13px;
    opacity: 0.9;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .media-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item:nth-child(2) {
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .media-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}


/* latest-news */

.latest-news-section {
    background: #fffaf3;
}


/* Card Link */

.media-card {
    display: block;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 30px 26px;
    text-align: center;
    height: 100%;
    text-decoration: none;
    color: #000;
    transition: 0.25s ease;
}


/* Hover */

.media-card:hover {
    border-color: #198754;
    transform: translateY(-4px);
}


/* Logo */

.media-card img {
    max-height: 42px;
    margin-bottom: 18px;
}


/* Title */

.media-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}


/* Text */

.media-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}


/* achievement-page */

.achievements-hero {
    position: relative;
    height: 50vh;
    background: url("/img/achievement-hero.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
}


/* INSIGHT RAIL */

.insight-subtitle {
    margin: auto;
    color: #555;
    line-height: 1.7;
}


/* TIMELINE */

.timeline {
    position: relative;
    margin-top: 60px;
}


/* CENTER LINE */

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #236e45;
    transform: translateX(-50%);
}


/* ITEM */

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 70px;
    position: relative;
}


/* LEFT / RIGHT */

.timeline-item.left {
    flex-direction: row-reverse;
}

.timeline-item.right {
    flex-direction: row;
}


/* CONTENT */

.timeline-content {
    background: #fff;
    padding: 28px;
    width: 45%;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.timeline-content span {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #236e45;
}

.timeline-content h4 {
    font-weight: 700;
    margin: 10px 0;
}

.timeline-content p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}

.timeline-content a {
    font-weight: 600;
    color: #236e45;
    text-decoration: none;
}

.timeline-content a:hover {
    text-decoration: underline;
}


/* IMAGE */

.timeline-image {
    width: 45%;
    padding: 0 30px;
}

.timeline-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* MOBILE */

@media (max-width: 992px) {
    .timeline::before {
        left: 10px;
    }
    .timeline-item {
        flex-direction: column;
        padding-left: 30px;
    }
    .timeline-item.left,
    .timeline-item.right {
        flex-direction: column;
    }
    .timeline-content,
    .timeline-image {
        width: 100%;
    }
    .timeline-image {
        padding: 15px 0 0;
    }
}


/* MOBILE */

@media (max-width: 992px) {
    /* Remove center line on mobile */
    .timeline::before {
        display: none;
    }
    /* Stack items vertically */
    .timeline-item {
        flex-direction: column;
        padding-left: 0;
        /* remove extra left padding */
        margin-bottom: 50px;
        /* spacing between items */
    }
    .timeline-item.left,
    .timeline-item.right {
        flex-direction: column;
    }
    .timeline-content,
    .timeline-image {
        width: 100%;
        /* full width for content and image */
    }
    .timeline-image {
        padding: 15px 0 0;
        /* spacing above image */
    }
    .timeline-content {
        margin-bottom: 20px;
        /* optional spacing below content */
    }
}


/* ================= ABOUT SECTION ================= */

.company-hero {
    position: relative;
    height: 50vh;
    background: url("/img/comany-hero.avif") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.about-company {
    background-color: #f9f9f9;
}

.about-company img {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-company h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-company p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.about-company .btn-warning {
    background-color: #236e45;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s;
}

.about-company .btn-warning:hover {
    background-color: #236e45;
    color: #fff;
}


/* ================= MISSION, VISION & VALUES ================= */

.mv-section {
    background-color: #236e45;
}

.mv-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.mv-section p.text-muted {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.mv-section .shadow-sm {
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 2rem;
}

.mv-section .shadow-sm:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mv-section i {
    color: #236e45;
    margin-bottom: 1rem;
}

.mv-section h5 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.mv-section p {
    font-size: 1rem;
    color: #555;
}


/* ================= OUR JOURNEY – VERSION 2 ================= */

.sj2-journey {
    background: #ffffff;
}

.sj2-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #236e45;
}

.sj2-subtitle {
    max-width: 520px;
    color: #555;
    line-height: 1.7;
}


/* Steps */

.sj2-step {
    display: flex;
    gap: 20px;
    padding: 22px;
    margin-bottom: 18px;
    background: #f8f8f8;
    border-radius: 16px;
    transition: all 0.35s ease;
}

.sj2-step:hover {
    background: #236e45;
    color: #fff;
    transform: translateY(-5px);
}

.sj2-step:hover p,
.sj2-step:hover h5 {
    color: #fff;
}

.sj2-year {
    min-width: 70px;
    height: 70px;
    background: #236e45;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sj2-step h5 {
    margin-bottom: 6px;
    font-weight: 700;
}

.sj2-step p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.6;
}


/* Image */

.sj2-image-box {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-top: 70px;
}

.sj2-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sj2-image-box:hover img {
    transform: scale(1.06);
}


/* Mobile */

@media (max-width: 768px) {
    .sj2-title {
        font-size: 2rem;
    }
    .sj2-step {
        flex-direction: column;
    }
    .sj2-year {
        width: 60px;
        height: 60px;
    }
    .sj2-image-box {
        margin-top: -15px;
    }
}


/* MVV Card */

.mvv-card {
    position: relative;
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.35s ease;
}


/* Hover Image */

.mvv-img {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.mvv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Dark overlay on image */

.mvv-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}


/* Content */

.mvv-content {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mvv-content i {
    font-size: 30px;
    color: #236e45;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.mvv-content h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.mvv-content p {
    font-size: 14.5px;
    color: #555;
}


/* Hover effect */

.mvv-hover:hover .mvv-img {
    left: 0;
}

.mvv-hover:hover .mvv-content {
    transform: translateX(12px);
}

.mvv-hover:hover h5,
.mvv-hover:hover p,
.mvv-hover:hover i {
    color: #fff;
}


/* HERO */

.career-hero {
    position: relative;
    height: 50vh;
    background: url("/img/career-hero.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.career-hero .container {
    position: relative;
}

.career-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.career-hero p {
    max-width: 650px;
    margin: auto;
}


/* CARDS */

.career-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.career-card:hover {
    transform: translateY(-8px);
}

.career-card i {
    font-size: 40px;
    color: #236e45;
    margin-bottom: 15px;
}


/* LIFE */

.career-life {
    background: #f3f3f3;
}

.section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #236e45;
}


/* JOB */

.job-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.job-card h5 {
    color: #236e45;
    font-weight: 700;
}


/* ===== CAREER PROCESS ===== */

.career-process {
    background: #fff;
}

.process-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #2e7d32;
}

.process-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 15px;
    color: #666;
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(46, 125, 50, 0.08);
}


/* contact */

.contact-hero {
    position: relative;
    height: 50vh;
    background: url("/img/contact.jpg") center top / cover no-repeat;
    display: flex;
    align-items: center;
}

.contact-section {
    background: linear-gradient(135deg, #f4f7f5, #eef3f0);
    position: relative;
}


/* Headings & Text */

.contact-section h3 {
    font-size: 30px;
    font-weight: 700;
    color: #1c1c1c;
}

.contact-section h4 {
    color: #1c1c1c;
}

.contact-section p {
    font-size: 15.5px;
    line-height: 1.8;
    max-width: 420px;
}


/* Contact Info */

.contact-info li {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(35, 110, 69, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}


/* Form Card */

.contact-section .card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.contact-section .card:hover {
    transform: translateY(-4px);
}


/* Inputs */

.contact-section .form-control {
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14.5px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
}

.contact-section .form-control:focus {
    background: #fff;
    border-color: #236e45;
    box-shadow: 0 0 0 0.2rem rgba(35, 110, 69, 0.25);
}


/* Button */

.contact-section .book-btn {
    background: linear-gradient(135deg, #236e45, #1b5a38);
    color: #fff;
    border-radius: 10px;
    padding: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.35s ease;
}

.contact-section .book-btn:hover {
    background: #000;
    color: #236e45;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* Textarea */

.contact-section textarea {
    resize: none;
}


/* Mobile Responsive */

@media (max-width: 767px) {
    .contact-section h3 {
        font-size: 26px;
    }
    .contact-section p {
        max-width: 100%;
    }
    .contact-section .card {
        padding: 28px 22px;
    }
}

.book-btn-two {
    border-top-left-radius: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0;
    border: 1px solid #fff;
    padding: 8px 20px;
    text-decoration: none;
    background-color: #fff;
    color: #236e45;
}

.book-btn-two:hover {
    background-color: #236e45;
    color: #fff;
}

.blink-btn {
    animation: glowBlink 1.4s infinite;
}

@keyframes glowBlink {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 #8fc74a;
    }
    50% {
        opacity: 0.85;
        box-shadow: 0 0 15px #8fc74a;
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 0 rgba(106, 196, 111, 0);
    }
}


/*********************updatedesign*******************/

.text-justify {
    text-align: justify;
}


/* Make video responsive height */

.video-wrapper video {
    min-height: 250px;
}


/* Optional: adjust padding on smaller screens */

@media (max-width: 767.98px) {
    .expert-section {
        padding: 3rem 1rem;
    }
}


/*********************sec***********/

#mobileFloatingBtn {
    position: fixed;
    bottom: 0px;
    left: 10px;
    right: 10px;
    width: auto;
    z-index: 9999;
    padding: 4px 10px;
    /* ⬇ aur height kam */
    font-size: 13px;
    /* ⬇ compact text */
    /* ⬇ extra space remove */
    border-radius: 4px;
    /* ✅ rounded 4px */
    text-align: center;
    color: white;
    background-color: #236e45 !important;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}


/* Hover effect */

#mobileFloatingBtn:hover {
    background-color: #1f5f3b !important;
    /* thoda dark */
    color: #ffffff;
    letter-spacing: 0.5px;
    /* ✅ text hover effect */
    text-decoration: none;
}


/*********************font****/


/*************************/


/**************************phase-1*****************/

.amenity-card {
    background-color: #8fc74a;
    /* soft green */
    transition: transform 0.3s, box-shadow 0.3s;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .amenity-card h6 {
        font-size: 14px;
    }
}

.dancing-font {
    font-family: 'Dancing Script', cursive;
    font-size:45px;
}

/* fundation */

.fundation-hero {
    position: relative;
    height: 50vh;
    background: url("/img/foundation-hero.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
}
