body{
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    background: #f5f5f5;
}

/* =========================
   NAVBAR
========================= */
/* =========================
   DROPDOWN MENU
========================= */

.dropdown-menu-custom{
    position: relative;
    list-style: none;
}

/* First Dropdown */

.custom-dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;

    background: #f1f1f1;

    padding: 0;
    margin: 0;

    list-style: none;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: 999;
}

/* Show Dropdown On Hover */

.dropdown-menu-custom:hover .custom-dropdown{
    opacity: 1;
    visibility: visible;
}

/* Dropdown Items */

.custom-dropdown li{
    position: relative;
    border-bottom: 1px solid #ddd;
}

.custom-dropdown li a{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 22px;

    color: #666;
    text-decoration: none;

    font-size: 15px;
    font-family: Arial, sans-serif;

    transition: 0.3s;
}

/* Arrow */

.has-submenu > a::after{
    content: "›";
    font-size: 20px;
    color: #888;
}

/* Hover */

.custom-dropdown li:hover > a{
    background: #e7e7e7;
    color: #000;
}

/* =========================
   SUBMENU
========================= */
.hero-section-img{
    position: relative;
}

.hero-section-img img{
    width: 100%;
    display: block;
}

/* Text */

.hero-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text p{
    color: #fff;
    font-size: 40px;
    font-family: 'Arvo', serif;
    margin: 0;
}
.submenu{
    position: absolute;

    top: 0;
    left: 100%;

    width: 250px;

    background: #f3f3f3;

    padding: 0;
    margin: 0;

    list-style: none;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;
}

/* Show Submenu */

.has-submenu:hover .submenu{
    opacity: 1;
    visibility: visible;
}

/* Submenu Items */

.submenu li{
    border-bottom: 1px solid #ddd;
}

.submenu li a{
    padding: 15px;
    display: block;

    text-align: center;

    font-size: 15px;
    line-height: 1.8;

    color: #666;
    transition: 0.3s;
}

.submenu li:hover a{
    background: #e7e7e7;
    color: #000;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .custom-dropdown,
    .submenu{
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .dropdown-menu-custom:hover .custom-dropdown,
    .has-submenu:hover .submenu{
        display: block;
    }

    .submenu{
        padding-left: 15px;
    }

    .custom-dropdown li a,
    .submenu li a{
        font-size: 15px;
        padding: 14px 16px;
    }
}
.custom-navbar{
    background: #1d2340;
    border-bottom: 1px solid #c89b5b;
    position: relative;
    padding: 0;
    z-index: 999;
}

/* Nav Menu */
.navbar-nav .nav-link{
    color: #d4b07a !important;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 60px;
    padding: 8px 28px !important;
    position: relative;
    transition: 0.3s ease;
    font-weight: 500;
}

.navbar-nav .nav-link:hover{
    color: #ffffff !important;
}

/* Active Underline */
.navbar-nav .nav-link.active::after{
    content: "";
    position: absolute;
    left: 25%;
    bottom: 15px;
    width: 50%;
    height: 2px;
    background: #d4b07a;
}

/* =========================
   CENTER LOGO DESKTOP
========================= */

.center-logo{
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    margin-top: 8px;
    z-index: 99;
}

.center-logo img{
    width: 160px;
    height: auto;
    display: block;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px){

    .custom-navbar{
        padding: 12px 0;
    }

    .container.position-relative{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo Left Side */
    .center-logo{
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-top: 0;
        order: 1;
    }

    .center-logo img{
        width: 90px;
    }

    /* Hamburger Right Side */
    .navbar-toggler{
        order: 2;
        border: none;
        background: #fff;
        padding: 8px 12px;
        box-shadow: none !important;
        margin: 0 !important;
    }

    /* Mobile Menu */
    .navbar-collapse{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1d2340;
        padding: 20px;
        border-radius: 0 0 12px 12px;
        text-align: center;
        z-index: 999;
    }

    .navbar-nav{
        width: 100%;
    }

    .navbar-nav .nav-item{
        margin: 5px 0;
    }

    .navbar-nav .nav-link{
        line-height: normal;
        padding: 12px 0 !important;
        font-size: 17px;
    }

    /* Remove Underline Mobile */
    .navbar-nav .nav-link.active::after{
        display: none;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 576px){

    .center-logo img{
        width: 75px;
    }

    .navbar-nav .nav-link{
        font-size: 15px;
        letter-spacing: 0.5px;
    }
}
/* =========================
   TRADITIONAL SECTION
========================= */

.traditional-section{
    background: #d9d3c3;
    overflow: hidden;
    position: relative;
}

/* Left Side */

.section-title{
    font-size: 55px;
    color: #4a4a4a;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Lines */

.recipe-line{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.green-line,
.red-line{
    width: 40px;
    height: 3px;
    display: inline-block;
}

.green-line{
    background: #2f9d44;
}

.red-line{
    background: #e53d3d;
}

/* Highlight */

.recipe-highlight h3{
    display: inline-block;
    background: #8b6a4c;
    color: #fff;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Text */

.recipe-text{
    color: #4a4a4a;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.recipe-description{
    color: #6d6d6d;
    font-size: 17px;
    line-height: 2;
    max-width: 90%;
    margin: auto;
}

/* Icons */

.top-icon img,
.bottom-icon img{
    width: 80px;
}

.top-icon{
    margin-bottom: 25px;
}

.bottom-icon{
    margin-top: 40px;
}

/* Right Image */

.recipe-image-box img{
    width: 100%;
    max-width: 650px;
    object-fit: cover;
}

/* Bottom Note */

.recipe-note{
    background: #ebe7df;
    border: 1px solid #b5aa96;
    padding: 22px;
    max-width: 560px;
    margin: -20px auto 0;
    position: relative;
    z-index: 2;
    font-size: 36px;
    color: #4b4b4b;
    line-height: 1.2;
    font-family: cursive;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){

    .section-title{
        font-size: 42px;
    }

    .recipe-description{
        max-width: 100%;
    }

    .recipe-note{
        font-size: 28px;
        padding: 18px;
    }

    .recipe-image-box{
        margin-top: 40px;
    }
}

@media (max-width: 576px){

    .section-title{
        font-size: 32px;
    }

    .recipe-highlight h3{
        font-size: 18px;
        padding: 8px 15px;
    }

    .recipe-text,
    .recipe-description{
        font-size: 15px;
        line-height: 1.8;
    }

    .recipe-note{
        font-size: 22px;
        padding: 15px;
    }

    .top-icon img,
    .bottom-icon img{
        width: 60px;
    }
}
/* =========================
   FONTS
========================= */

/* Heading Font */
.section-title{
    font-family: 'Arvo', serif;
}

.recipe-highlight h3{
    font-family: 'Arvo', serif;
}

.recipe-note{
    font-family: 'Arvo', serif;
}

/* Paragraph Font */
.recipe-text,
.recipe-description{
    font-family: Arial, sans-serif;
}
/* Center All Content */

.recipe-highlight,
.recipe-line,
.top-icon,
.bottom-icon{
    display: flex;
    justify-content: center;
}

.recipe-text,
.recipe-description{
    text-align: center;
}

.section-title{
    text-align: center;
}

.agro-tourism-section{
    background: #d9d3c3;
    overflow: hidden;
}

/* Image */

.agro-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */

.agro-content{
    padding-left: 20px;
}

/* Heading */

.agro-heading{
    font-family: 'Arvo', serif;
    font-size: 35px;
    color: #4a4a4a;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.2;
}

/* Paragraph */

.agro-text{
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1.9;
    color: #5a5a5a;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Bottom Text */

.agro-bottom-text{
    font-family: 'Arvo', serif;
    font-size: 18px;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){

    .agro-content{
        padding-left: 0;
        text-align: center;
    }

    .agro-heading{
        font-size: 42px;
    }

    .agro-text{
        font-size: 18px;
        line-height: 1.8;
    }

    .agro-bottom-text{
        font-size: 22px;
    }
}

@media (max-width: 576px){

    .agro-heading{
        font-size: 32px;
    }

    .agro-text{
        font-size: 16px;
    }

    .agro-bottom-text{
        font-size: 18px;
    }
}   
/* =========================
   TOURIST GALLERY SECTION
========================= */

.tourist-gallery-section{
    background: #0d1230;
    overflow: hidden;
    position: relative;
}

/* Gallery Card */

.gallery-card{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Image */

.gallery-card img{
    width: 100%;
    /* height: 420px; */
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

/* Overlay Effect */

.gallery-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: 0.5s ease;
    z-index: 1;
}

/* Hover Animation */

.gallery-card:hover img{
    transform: scale(1.08);
    opacity: 0.6;
}

.gallery-card:hover::before{
    background: rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){

    .gallery-card img{
        height: 320px;
    }
}

@media (max-width: 576px){

    .gallery-card img{
        height: 240px;
    }
}

/* =========================
   GOOGLE REVIEW SECTION
========================= */

.google-review-section{
    background: #d9d0c2;
    overflow: hidden;
}

/* Heading */

.review-main-heading{
    font-family: 'Arvo', serif;
    font-size: 28px;
    color: #444;
    margin-bottom: 25px;
    font-weight: 700;
}

.review-icon{
    margin-bottom: 50px;
}

.review-icon i{
    font-size: 70px;
    color: #7c5a3b;
}

/* Left Side */

.google-review-info h4{
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.review-main-icon{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-main-icon i{
    font-size: 30px;
    color: #666;
}

.rating{
    color: #ff8b1e;
    font-size: 22px;
    margin: 10px 0;
    font-weight: 700;
}

.google-review-info p{
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.powered{
    font-size: 13px;
    color: #888;
}

/* Button */

.review-btn{
    display: inline-block;
    background: #2f6de1;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 20px;
    transition: 0.3s;
}

.review-btn:hover{
    background: #174cb8;
    color: #fff;
}

/* Cards */

.review-card{
    background: #fff;
    padding: 20px;
    min-height: 220px;
    transition: 0.4s;
}

.review-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* User */

.review-user{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.user-icon{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon i{
    font-size: 28px;
    color: #777;
}

.review-user h5{
    font-size: 16px;
    color: #1a56d6;
    margin-bottom: 2px;
    font-weight: 700;
}

.review-user span{
    font-size: 13px;
    color: #777;
}

.google-icon{
    font-size: 22px;
    background: conic-gradient(
        #4285F4 0deg 90deg,
        #34A853 90deg 180deg,
        #FBBC05 180deg 270deg,
        #EA4335 270deg 360deg
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stars */

.review-stars{
    color: #ff8b1e;
    font-size: 20px;
    margin-bottom: 12px;
}

/* Text */

.review-card p{
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

/* Dots */

.carousel-indicators [data-bs-target]{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    border: none;
    opacity: 1;
}

.carousel-indicators .active{
    background: #2458d8;
}

/* Responsive */

@media(max-width:991px){

    .google-review-info{
        text-align: center;
        margin-bottom: 30px;
    }

    .review-main-heading{
        font-size: 22px;
        line-height: 1.6;
    }
}

@media(max-width:576px){

    .review-card{
        min-height: auto;
    }

    .review-main-heading{
        font-size: 18px;
    }

    .review-card p{
        font-size: 14px;
    }
}





/* =========================
   OUR ACTIVITIES SECTION
========================= */

.activities-section{
    background: #0b1030;
    overflow: hidden;
}

/* Heading */

.activities-heading{
    font-family: 'Arvo', serif;
    font-size: 35px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Activity Card */

.activity-card{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Image */

.activity-card img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.5s ease;
    display: block;
}

/* Overlay */

.activity-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.5s ease;
}

/* Overlay Text */

.activity-overlay h3{
    color: #fff;
    font-size: 32px;
    font-family: 'Arvo', serif;
    transform: translateY(20px);
    transition: 0.5s ease;
}

/* Hover Effects */

.activity-card:hover img{
    transform: scale(1.08);
    opacity: 0.4;
}

.activity-card:hover .activity-overlay{
    opacity: 1;
}

.activity-card:hover .activity-overlay h3{
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .activities-heading{
        font-size: 42px;
    }

    .activity-card img{
        height: 350px;
    }

    .activity-overlay h3{
        font-size: 24px;
    }
}

@media(max-width:576px){

    .activities-heading{
        font-size: 32px;
    }

    .activity-card img{
        height: 280px;
    }

    .activity-overlay h3{
        font-size: 20px;
    }
}


/* =========================
   FARM TEXT SECTION
========================= */

.farm-text-section{
    overflow: hidden;
}

/* =========================
   TOP IMAGE
========================= */

.farm-top-bg{
    background: url('../images/home_pizza2_sectionbg3.jpg') center center/cover no-repeat;
    padding: 70px 0;
    text-align: center;
}

/* Heading */

.farm-heading{
    font-family: 'Arvo', serif;
    font-size: 35px;
    color: #2d2b3f;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

/* =========================
   BOTTOM IMAGE
========================= */

.farm-bottom-bg{
    background: url('../images/footerback.png') center center/cover no-repeat;
    height: 200px;
    width: 100%;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .farm-top-bg{
        padding: 70px 0;
    }

    .farm-heading{
        font-size: 42px;
    }

    .farm-bottom-bg{
        height: 180px;
        background-size: contain;
    }
}

@media(max-width:576px){

    .farm-top-bg{
        padding: 50px 0;
    }

    .farm-heading{
        font-size: 28px;
        line-height: 1.5;
    }

    .farm-bottom-bg{
        height: 120px;
        background-size: contain;
    }
}


/* =========================
   FOOTER SECTION
========================= */
/* =========================
   FOOTER SECTION
========================= */

.custom-footer{
    background: url('../images/home_pizza2_sectionbg3.jpg') center center/cover no-repeat;
    padding: 70px 0;
    overflow: hidden;
}

/* =========================
   LOGO
========================= */

.footer-logo-box h2{
    font-family: 'Arvo', serif;
    font-size: 24px;
    color: #1f2740;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-logo-box img{
    width: 150px;
}

/* =========================
   HEADINGS
========================= */

.footer-links h3,
.footer-contact h3,
.opening-hours h3,
.footer-middle-heading h2,
.map-box h3{
    font-family: 'Arvo', serif;
    color: #1f2740;
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
}

/* =========================
   QUICK LINKS
========================= */

.footer-menu{
    display: flex;
    gap: 35px;
}

.footer-menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu ul li{
    margin-bottom: 10px;
}

.footer-menu ul li a{
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: 0.3s;
    font-family: Arial, sans-serif;
}

.footer-menu ul li a:hover{
    color: #000;
    padding-left: 4px;
}

/* =========================
   CONTACT
========================= */

.footer-contact p{
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

.footer-contact h4{
    font-family: 'Arvo', serif;
    font-size: 20px;
    color: #1f2740;
    margin: 25px 0 15px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons{
    display: flex;
    gap: 12px;
}

.social-icons a{
    width: 42px;
    height: 42px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.4s;
}

.social-icons a i{
    font-size: 18px;
}

.social-icons a:hover{
    transform: translateY(-4px);
    background: #1f2740;
}

/* =========================
   OPENING HOURS
========================= */

.hours-box{
    margin-bottom: 18px;
}

.hours-box h4{
    font-family: 'Arvo', serif;
    font-size: 20px;
    color: #1f2740;
    margin-bottom: 6px;
}

.hours-box p{
    font-size: 15px;
    color: #444;
    font-family: Arial, sans-serif;
}

/* =========================
   MIDDLE HEADING
========================= */

.footer-middle-heading{
    margin: 60px 0 40px;
}

.footer-middle-heading h2{
    margin-bottom: 0;
}

/* =========================
   MAP
========================= */

.map-box p{
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
    font-family: Arial, sans-serif;
}

.map-box iframe{
    width: 100%;
    height: 280px;
    border: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .footer-logo-box,
    .footer-links,
    .footer-contact,
    .opening-hours{
        text-align: center;
    }

    .footer-menu{
        justify-content: center;
    }

    .social-icons{
        justify-content: center;
    }

    .footer-middle-heading{
        margin: 50px 0 30px;
    }
}

@media(max-width:576px){

    .custom-footer{
        padding: 50px 0;
    }

    .footer-logo-box h2{
        font-size: 22px;
    }

    .footer-links h3,
    .footer-contact h3,
    .opening-hours h3,
    .footer-middle-heading h2,
    .map-box h3{
        font-size: 20px;
    }

    .footer-menu{
        gap: 20px;
    }

    .map-box iframe{
        height: 230px;
    }
}

/* =========================
   ABOUT INFO SECTION
========================= */

.about-info-section{
    background: #d9d3c3;
    overflow: hidden;
}

/* Left Side */

.about-left-content{
    text-align: center;
    padding-right: 40px;
}

.about-left-content h2{
    font-family: 'Arvo', serif;
    font-size: 35px;
    color: #2f3447;
    line-height: 1.4;
    margin-bottom: 100px;
    font-weight: 400;
}

.about-left-content p{
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    line-height: 2;
    color: #2f3447;
}

/* Right Side */

.about-right-box{
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 70px;
}

/* Icons */

.about-icon img{
    width: 120px;
}

/* Text */

.about-text p{
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1.8;
    color: #2f3447;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .about-left-content{
        padding-right: 0;
        margin-bottom: 50px;
    }

    .about-left-content h2{
        font-size: 42px;
        margin-bottom: 30px;
    }

    .about-left-content p{
        font-size: 18px;
    }

    .about-right-box{
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 50px;
    }

    .about-text p{
        font-size: 18px;
    }

    .about-icon img{
        width: 120px;
    }
}

@media(max-width:576px){

    .about-left-content h2{
        font-size: 30px;
    }

    .about-left-content p,
    .about-text p{
        font-size: 16px;
        line-height: 1.8;
    }

    .about-icon img{
        width: 90px;
    }
    .hero-text p {
        font-size: 28px;
    }
}

/* =========================
   SOCIAL MEDIA SECTION
========================= */

.social-media-section{
    background: #d9d3c3;
    overflow: hidden;
}

/* Images */

.social-img{
    overflow: hidden;
}

.social-img img{
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

/* Center Content */

.social-content{
    padding: 0 20px;
}

/* Heading */

.social-content h2{
    font-family: 'Arvo', serif;
    font-size: 62px;
    color: #2f3447;
    line-height: 1.4;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Social Wrapper */

.social-box-wrapper{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 35px;
}

/* Social Box */

.social-box h4{
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 700;
}

/* Icons */

.social-icons{
    display: flex;
    /* justify-content: center; */
    gap: 15px;
}

.social-icons a{
    width: 32px;
    height: 32px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: 0.4s ease;
}

/* Facebook */

.social-icons a:first-child{
    background: #1877f2;
    color: #fff;
}

/* Instagram */

.social-icons a:last-child{
    background: #e4405f;
    color: #fff;
}

.social-icons a i{
    font-size: 14px;
}

/* Hover */

.social-icons a:hover{
    transform: translateY(-5px);
}

/* Paragraph */

.social-content p{
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2f3447;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* Button */

.book-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: #ff6b00;
    color: #fff;

    text-decoration: none;

    padding: 14px 35px;

    font-size: 15px;
    font-family: Arial, sans-serif;
    font-weight: 700;

    transition: 0.4s ease;
}

.book-btn i{
    font-size: 13px;
}

/* Hover */

.book-btn:hover{
    background: #e55f00;
    color: #fff;
    transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .social-content{
        margin: 40px 0;
    }

    .social-content h2{
        font-size: 42px;
    }

    .social-content p{
        font-size: 18px;
    }

    .social-img img{
        height: 420px;
    }
}

@media(max-width:576px){

    .social-content h2{
        font-size: 30px;
    }

    .social-box-wrapper{
        flex-direction: column;
        gap: 30px;
    }

    .social-content p{
        font-size: 16px;
        line-height: 1.8;
    }

    .book-btn{
        width: 100%;
        font-size: 18px;
        padding: 15px 25px;
    }

    .social-img img{
        height: 300px;
    }
}
h2{
    font-size: 35px !important;
}

/* =========================
   COUNTER SECTION
========================= */

.counter-section{
    background: #d9d3c3;
    overflow: hidden;
}

/* Heading */

.counter-heading{
    font-family: 'Arvo', serif;
    font-size: 65px;
    color: #2f3447;
    font-weight: 400;
    margin-bottom: 80px;
}

/* Counter Box */

.counter-box{
    position: relative;
}

/* Icon */

.counter-icon{
    margin-bottom: 20px;
}

.counter-icon i{
    font-size: 50px;
    color: #2f8de4;
}

/* Number */

.counter-box h3{
    display: inline-block;
    font-size: 50px;
    color: #444;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1;
    font-family: Arial, sans-serif;
}

/* Plus */

.counter-box span{
    font-size: 50px;
    color: #444;
    vertical-align: top;
    font-weight: 300;
}

/* Text */

.counter-box p{
    font-size: 15px;
    color: #999;
    /* margin-top: 15px; */
    font-family: Arial, sans-serif;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .counter-heading{
        font-size: 45px;
        margin-bottom: 50px;
    }

    .counter-box h3{
        font-size: 65px;
    }

    .counter-box span{
        font-size: 40px;
    }

    .counter-box p{
        font-size: 18px;
    }
}

@media(max-width:576px){

    .counter-heading{
        font-size: 32px;
    }

    .counter-icon i{
        font-size: 50px;
    }

    .counter-box h3{
        font-size: 50px;
    }

    .counter-box span{
        font-size: 30px;
    }

    .counter-box p{
        font-size: 16px;
    }
    .footer-png img{
        margin-top: -50px;
        height: 150px;}
}
.footer-png img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}


/* =========================
   FARM TEXT INFO
========================= */

.farm-text-info{
    background: #d9d3c3;
    border-top: 3px solid #6f8f3b;
    padding: 50px 0 70px;
}

/* Text */

.farm-text-box h2{
    font-family: 'Arvo', serif;
    font-size: 22px;
    line-height: 1.8;
    color: #2f3447;
    font-weight: 700;
    max-width: 1500px;
    margin: auto;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .farm-text-box h2{
        font-size: 22px !important;
        line-height: 1.7;
    }
}

@media(max-width:576px){

    .farm-text-info{
        padding: 40px 0 50px;
    }

    .farm-text-box h2{
        font-size: 20px;
        line-height: 1.8;
    }
}
/* =========================
   SERVICES SECTION
========================= */

.services-section{
    background: #d9d3c3;
    overflow: hidden;
}

/* Heading */

.services-heading{
    font-family: 'Arvo', serif;
    font-size: 50px;
    color: #2f3447;
    font-weight: 400;
}

/* =========================
   FLIP CARD
========================= */

.flip-card{
    perspective: 1000px;
}

.flip-card-inner{
    position: relative;
    width: 100%;
    height: 320px;

    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Hover Flip */

.flip-card:hover .flip-card-inner{
    transform: rotateY(180deg);
}

/* Front & Back */

.flip-card-front,
.flip-card-back{
    position: absolute;
    width: 93%;
    height: 93%;

    backface-visibility: hidden;

    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Front */

.flip-card-front{
    background: #fff;
}

.flip-card-front img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Title */

.service-title{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;

    background: rgba(0,0,0,0.55);

    color: #fff;

    text-align: center;

    padding: 14px;

    font-size: 22px;
    font-family: 'Arvo', serif;
}

/* Back */

.flip-card-back{
    background: green;
    color: #fff;

    transform: rotateY(180deg);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 25px;
}

/* Back Heading */

.flip-card-back h3{
    font-family: 'Arvo', serif;
    font-size: 30px;
    margin-bottom: 18px;
}

/* Back Text */

.flip-card-back p{
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Button */

.service-btn{
    display: inline-block;

    background: #ff6b00;
    color: #fff;

    text-decoration: none;

    padding: 12px 28px;
    border-radius: 6px;

    font-size: 15px;
    font-family: Arial, sans-serif;

    transition: 0.4s ease;
}

.service-btn:hover{
    background: #e55f00;
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .services-heading{
        font-size: 38px;
    }

    .flip-card-inner{
        height: 280px;
    }

    .service-title{
        font-size: 18px;
    }

    .flip-card-back h3{
        font-size: 24px;
    }
}

@media(max-width:576px){

    .services-heading{
        font-size: 30px;
    }

    .flip-card-inner{
        height: 250px;
    }

    .flip-card-back p{
        font-size: 14px;
    }
}


/* =========================
   PICNIC SECTION
========================= */

.picnic-section{
    background: #d9d3c3;
    overflow: hidden;
}

/* Left Box */

.picnic-content-box{
    background: #ece8df;
    padding: 60px 40px;
    border: 1px solid #b8b0a2;
    height: 100%;
}

/* Heading */

.picnic-content-box h2{
    text-align: center;
    font-family: 'Arvo', serif;
    font-size: 52px;
    color: #2f3447;
    margin-bottom: 45px;
    font-weight: 400;
}

/* Paragraph */

.picnic-content-box p{
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 2;
    color: #222;
    margin-bottom: 30px;
    text-align: justify;
}

/* Strong */

.picnic-content-box p strong{
    font-weight: 700;
}

/* Right Images */

.picnic-img-box{
    overflow: hidden;
}

/* Images */

.picnic-img-box img{
    width: 100%;
    /* height: 370px; */
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* Hover */

.picnic-img-box:hover img{
    transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .picnic-content-box{
        padding: 40px 25px;
    }

    .picnic-content-box h2{
        font-size: 38px;
        margin-bottom: 30px;
    }

    .picnic-content-box p{
        font-size: 16px;
        line-height: 1.9;
    }

    .picnic-img-box img{
        height: 300px;
    }
}

@media(max-width:576px){

    .picnic-content-box h2{
        font-size: 28px;
    }

    .picnic-content-box p{
        font-size: 14px;
        line-height: 1.8;
    }

    .picnic-img-box img{
        height: 220px;
    }
    .picnic-images{
        padding-top: 0px;
        #hurda-img{
    margin-top: 0px !important;
}
}
}

#hurda-img{
    margin-top: 251px !important;
}

/* Right Images Center */

.picnic-images{
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
   
}

.picnic-img-box{
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.picnic-img-box img{
    width: 90% !important;
    max-width: 500px !important;
    display: block !important;
    margin: auto !important;
}
.picnic-images{
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
}

.picnic-img-box{
    width: 100% !important;
    text-align: center !important;
}

.picnic-img-box img{
    width: 85% !important;
    margin: auto !important;
    display: block !important;
}

/* The Core Grid Layout */
.farm-section {
   padding-top: 50px;
    padding-bottom: 20px;
   background: #ddd7c5;
    display: flex;
    justify-content: center;
}
.gridd{
     display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 20px; /* Space between grid items */
    max-width: 1200px;
    width: 100%;
}

/* Info Text Block Styling */
.info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.info-box h2 {
    font-size: 1.8rem;
    color: #4a4a4a;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 280px;
}

/* Gallery Images Styling */
.gallery-item {
    width: 100%;
    overflow: hidden;
    background-color: #fff; /* Optional: handles image loading frames nicely */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps images beautifully cropped without stretching */
    display: block;
}

/* Responsive adjustments for Tablets/Mobiles */
@media (max-width: 900px) {
    .farm-section {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .farm-section {
        grid-template-columns: 1fr; /* 1 single column on mobile screens */
    }
}


.contact-section{
    background:#ede7d9;
    overflow:hidden;
    font-family: 'Playfair Display', serif;
}

.main-title{
    font-family: 'Arvo', serif !important;
    font-size:35px !important;
    font-weight:600;
    color:#2f4052;
}

.wave-line{
    width:90px;
    height:5px;
    background:#e5c79a;
    border-radius:30px;
}

.welcome-title{
    font-family: 'Arvo', serif !important;
    font-size:35px !important;
    line-height:1.3;
    color:#2f4052;
    font-weight:500;
}

.follow-title{
    font-family: 'Arvo', serif !important;
    font-size:22px;
    color:#2f4052;
    font-weight:700;
}

.social-heading{
    font-family: 'Arvo', serif !important;
    font-size:18px;
    color:#2f4052;
}


.follow-heading{
    font-size:24px;
    color:#2f4052;
    font-weight:600;
}

.social-wrapper{
    display:flex;
    align-items:center;
    gap:15px;
}

.icon-box{
    width:35px;
    height:35px;
    background:#000;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.icon-box i{
    color:#fff;
}

.icon-box:hover{
    transform:scale(1.1);
    color:#fff;
}


.info-title{
    font-family: 'Arvo', serif !important;
    font-size:22px;
    font-weight:700;
    color:#2f4052;
}

.info-text{
    font-size:18px;
    line-height:1.8;
    color:#2f4052;
}

@media(max-width:991px){

    .main-title{
        font-size:38px;
    }

    .welcome-title{
        font-size:38px;
        text-align:center;
    }

    .follow-title{
        text-align:center;
    }

    .social-heading{
        text-align:center;
    }

    .social-icon{
        margin:auto;
    }

    .info-title{
        font-size:28px;
    }

    .info-text{
        font-size:20px;
    }

}

@media(max-width:576px){

    .main-title{
        font-size:30px;
    }

    .welcome-title{
        font-size:28px;
    }

    .follow-title{
        font-size:24px;
    }

    .info-title{
        font-size:24px;
    }

    .info-text{
        font-size:17px;
    }

}

.contact-form-section{
    background:#ece7d6;
    font-family: 'Playfair Display', serif;
}

.contact-title{
    font-size:42px;
    color:#3f4045;
    font-weight:500;
}

.custom-label{
    font-size:14px;
    font-weight:700;
    color:#1f2c3b;
    margin-bottom:10px;
}

.custom-input{
    height:45px;
    border:1px solid #b7a792;
    background:#d8d0c7;
    border-radius:0;
    box-shadow:none !important;
}

.custom-textarea{
    height:200px;
    border:1px solid #b7a792;
    background:#d8d0c7;
    border-radius:0;
    resize:none;
    box-shadow:none !important;
}

.custom-input::placeholder{
    color:#7c6e60;
}

.submit-btn{
    background:#8d7659;
    color:#fff;
    border:none;
    padding:14px 35px;
    font-size:18px;
    transition:0.3s;
}

.submit-btn:hover{
    background:#705c45;
}

@media(max-width:768px){

    .contact-title{
        font-size:45px;
    }

    .custom-textarea{
        height:180px;
    }

}

@media(max-width:576px){

    .contact-title{
        font-size:35px;
    }

    .custom-label{
        font-size:18px;
    }

}

.faq-section{
    background:#ece7d6;
    padding:80px 0;
    font-family:'Playfair Display', serif;
}

/* Left & Right Titles */
.faq-main-title,
.faq-right-title{
    font-family: 'Arvo', serif !important;
    font-size:60px;
    line-height:1.2;
    color:#374454;
    font-weight:500;
    margin-bottom:50px;
}

/* Contact Box */
.faq-contact-box{
    background:#d9d2c2;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.contact-box-title{
    font-size:22px;
    font-family: 'Arvo', serif !important;
    color:#374454;
    font-weight:700;
    margin-bottom:25px;
}

.contact-box-text{
    font-size:15px;
    line-height:1.8;
    color:#374454;
    margin-bottom:30px;
}

.contact-btn{
    display:inline-block;
    background:#2f96dc;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    font-size:17px;
    transition:0.3s;
}

.contact-btn:hover{
    background:#1d7fc0;
    color:#fff;
}

/* Accordion */
.custom-accordion{
    border-left:1px solid #d0c8b8;
    padding-left:30px;
}

.faq-item{
    border:none;
    background:transparent;
    margin-bottom:20px;
}

.faq-btn{
    background:transparent !important;
    box-shadow:none !important;
    padding:20px 0;
    font-size:22px;
    color:#374454 !important;
    border:none;
}

.faq-btn:not(.collapsed){
    background:transparent !important;
}

.faq-btn::after{
    content:"+";
    background-image:none !important;
    font-size:25px;
    color:#a7a29b;
    transform:none !important;
}

.faq-number{
    width:50px;
    font-size:20px;
    font-weight:700;
    color:#374454;
}

.faq-question{
    flex:1;
    font-size:16px;
    /* line-height:1.5; */
}

.faq-answer{
    padding-left:50px;
    font-size:16px;
    color:#555;
    line-height:1.8;
}

/* Responsive */
@media(max-width:991px){

    .faq-main-title,
    .faq-right-title{
        font-size:42px;
    }

    .custom-accordion{
        padding-left:20px;
    }

    .contact-box-title{
        font-size:30px;
    }

}

@media(max-width:576px){

    .faq-main-title,
    .faq-right-title{
        font-size:32px;
    }

    .contact-box-title{
        font-size:24px;
    }

    .contact-box-text{
        font-size:17px;
    }

    .faq-btn{
        font-size:18px;
    }

    .faq-number{
        font-size:22px;
        width:35px;
    }

    .faq-answer{
        padding-left:35px;
        font-size:16px;
    }

}

 .rg-review-section{
        background:#d7d0bf;
        padding:70px 0;
        overflow:hidden;
    }

    .rg-review-title{
        text-align:center;
        font-size:34px;
        color:#444;
        margin-bottom:45px;
        font-family:'Gloria Hallelujah', cursive;
        font-weight:500;
    }

    /* SLIDER WRAPPER WITH WIDGET */
    .rg-slider-wrapper{
        display:flex;
        align-items:flex-start;
        gap:20px;
    }

    /* GOOGLE WIDGET PANEL */
    .rg-google-widget{
        background:#fff;
        border-radius:12px;
        padding:18px 16px;
        min-width:220px;
        max-width:220px;
        box-shadow:0 4px 15px rgba(0,0,0,0.08);
        flex-shrink:0;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .rg-widget-top{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .rg-widget-logo{
        width:44px;
        height:44px;
        border-radius:50%;
        object-fit:cover;
        border:1px solid #eee;
        flex-shrink:0;
    }

    .rg-widget-name{
        font-size:13px;
        font-weight:700;
        color:#222;
        line-height:1.4;
    }

    .rg-widget-rating-row{
        display:flex;
        align-items:center;
        gap:6px;
        margin-top:2px;
    }

    .rg-widget-score{
        font-size:22px;
        font-weight:700;
        color:#ff9800;
        line-height:1;
    }

    .rg-widget-stars{
        color:#ff9800;
        font-size:16px;
        letter-spacing:1px;
    }

    .rg-widget-count{
        font-size:12px;
        color:#666;
    }

    .rg-widget-powered{
        font-size:12px;
        color:#888;
        display:flex;
        align-items:center;
        gap:4px;
    }

    .rg-widget-powered img{
        height:14px;
    }

    .rg-widget-btn{
        display:inline-flex;
        align-items:center;
        gap:6px;
        background:#1a73e8;
        color:#fff;
        border:none;
        border-radius:20px;
        padding:8px 14px;
        font-size:13px;
        font-weight:600;
        cursor:pointer;
        text-decoration:none;
        margin-top:4px;
        transition:background 0.2s;
    }

    .rg-widget-btn:hover{
        background:#1558b0;
        color:#fff;
        text-decoration:none;
    }

    .rg-widget-btn img{
        width:16px;
        height:16px;
    }

    /* SWIPER TAKES REMAINING SPACE */
    .rg-swiper-area{
        flex:1;
        min-width:0;
        position:relative;
    }

    /* CARD */
    .rg-review-card{
        background:#fff;
        padding:22px;
        border-radius:12px;
        min-height:240px;
        transition:0.3s ease;
        box-shadow:0 4px 15px rgba(0,0,0,0.08);
    }

    .rg-review-card:hover{
        transform:translateY(-5px);
    }

    /* TOP SECTION */
    .rg-review-top{
        display:flex;
        align-items:center;
        position:relative;
        margin-bottom:15px;
    }

    .rg-user-img{
        width:55px;
        height:55px;
        border-radius:50%;
        object-fit:cover;
        margin-right:12px;
        flex-shrink:0;
    }

    .rg-user-info h4{
        margin:0;
        font-size:18px;
        color:#0d47c7;
        font-weight:600;
        line-height:1.3;
    }

    .rg-user-info span{
        font-size:13px;
        color:#777;
    }

    /* GOOGLE ICON */
    .rg-google-icon{
        width:22px;
        position:absolute;
        right:0;
        top:0;
    }

    /* STARS */
    .rg-stars{
        color:#ff9800;
        font-size:20px;
        margin-bottom:12px;
        letter-spacing:2px;
    }

    /* REVIEW TEXT */
    .rg-review-card p{
        font-size:15px;
        line-height:1.7;
        color:#333;
        margin:0;
    }

    /* PAGINATION */
    .swiper-pagination{
        position:relative;
        margin-top:35px;
    }

    .swiper-pagination-bullet{
        width:10px;
        height:10px;
        background:#999;
        opacity:1;
    }

    .swiper-pagination-bullet-active{
        background:#0d47c7;
    }

    /* MOBILE */
    @media(max-width:768px){

        .rg-review-section{
            padding:50px 0;
        }

        .rg-review-title{
            font-size:26px;
            margin-bottom:30px;
        }

        .rg-slider-wrapper{
            flex-direction:column;
        }

        .rg-google-widget{
            min-width:100%;
            max-width:100%;
        }

        .rg-review-card{
            padding:18px;
            min-height:auto;
        }

        .rg-user-info h4{
            font-size:16px;
        }

        .rg-review-card p{
            font-size:14px;
        }

        .rg-stars{
            font-size:18px;
        }
    }
    a{
        text-decoration:none;
    }