@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root{
    --primary:#69462e;
    --secondary: #7c8d5b;
    --btn:#19548f;
    --sec-btn:#2492c4;
}

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body{
    font-family: "Lora", serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.95em;
    color: #2a2a2a;
    overflow-x: hidden !important;
    background: #ffffff;
}

/* --------------------------------------
   NAVBAR CORE STYLE
--------------------------------------- */
.navbar {
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px 12px 20px;  /* FIXED */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
}

.logo img {
    width: 140px;
    height: auto;
}

/* Desktop nav links */
.nav-links ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links ul li a {
    text-decoration: none;
    font-size: 18px;
    color: var(--primary); /* your extra color */
    font-weight: 600;
    transition: 0.3s;
}

.nav-links ul li a:hover,
.nav-links ul li a.active {
    color: var(--secondary); /* hover color */
}
.nav-links ul li.btn a {
    background: transparent;
    color: #69462e;
    padding: 10px 22px;
    border-radius: 30px;
    border: 2px solid #69462e;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links ul li.btn a:hover {
    background: #7c8d5b;
    color: #fff;
    border: 2px solid #7c8d5b;
}

/* --------------------------------------
   MOBILE MENU BUTTON
--------------------------------------- */
.mobile-menu-icon {
   display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: absolute;
    right: 20px;   /* pull inside navbar */
    top: 50%;
    transform: translateY(-50%);
    
}

.mobile-menu-icon span {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
    /* margin-left: -100%; */
}

/* --------------------------------------
   RESPONSIVE DESIGN
--------------------------------------- */
@media (max-width: 992px) {
    .navbar {
        padding: 10px 20px;
    }

    .nav-links {
        position: absolute;
        background: #ffffff;
        top: 80px;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: 0.4s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.open {
        height: 230px; /* menu drops down */
    }

    .nav-links ul {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
        gap: 20px;
    }

    .mobile-menu-icon {
          display: flex !important;  /* show in mobile */
        flex-direction: column;
        gap: 6px;
        position: absolute;
        right: 50px;   /* Icon stays inside navbar */
        top: 50%;
        transform: translateY(-50%);
    }
}


/* FOOTER */
footer {
    background: #140b05; 
    padding: 60px 0 20px;
    /* margin-top: 50px; */
}

footer .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Titles */
footer .title h2 {
    font-size: 22px;
    color: #7c8d5b;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: start;
}

/* List Styles */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    text-decoration: none;
    font-size: 16px;
    color: #afafaf;
    line-height: 26px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #7c8d5b;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;  /* spacing between icon and text */
    margin-bottom: 12px;
}

.footer-links li i {
    font-size: 18px;
    color: #7c8d5b;   /* your theme color */
}

/* QR CODE BOX */
.qr-code img {
    width: 140px;
    height: auto;
    border: 3px solid #7c8d5b;
    padding: 5px;
    border-radius: 10px;
}

/* Bottom Section */
footer .bottom {
    grid-column: 1 / 5;  /* full width */
    text-align: center;
    padding-top: 30px;
    font-size: 15px;
    color: #777;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

@media (max-width: 992px) {
    footer .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    footer .bottom {
        grid-column: 1 / 3;
    }
}

@media (max-width: 600px) {
    footer .container {
        grid-template-columns: 1fr;
        text-align: start;
    }

    .qr-code img {
        margin: auto;
    }

    footer .bottom {
        grid-column: 1 / 2;
    }
}


/* SLIDER */
/* Slider container */
.slider {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

/* Each Slide */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caption text */
.caption {
    position: absolute;
    top: 15%;
    left: 25%;
    color: #08310b;
    text-align: center;
}

.caption p {
    font-size: 20px;
    font-weight: 500;
    /* margin-bottom: 10px; */
}

.caption h2 {
    font-size: 48px;
    line-height: 1.2;
    max-width: 600px;
    font-weight: 700;
}

/* Fade animation */
.fade {
    animation: fadeEffect 1.3s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Fade Up for text */
.fadeup {
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --------------------- MOBILE RESPONSIVE --------------------- */

@media (max-width: 768px) {
    .slider {
        height: 60vh;
    }

    .caption {
        bottom: 10%;
        left: 5%;
    }

    .caption h2 {
        font-size: 28px;
        max-width: 90%;
    }

    .caption p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 50vh;
    }

    .caption h2 {
        font-size: 22px;
    }

    .caption p {
        font-size: 14px;
    }
}

/* WELCOME  */
/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: #fff;
}

.welcome .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;

    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Text */
.left-text {
    max-width: 600px;
}
.left-text .tag {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.left-text h2 {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
}

.left-text p {
    font-size: 17px;
    line-height: 28px;
    color: #444;
    margin-bottom: 20px;
}
.right-img img {
    width: 100%;
    height: 400px;
    max-width: 600px; /* prevents it from becoming too large */
     border-radius: 0 40px 0 40px;
    object-fit: cover;
     transition: 0.5s ease;
}
.right-img img:hover {
    transform: scale(1.02);
}

.fade-img {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeZoom 1.2s ease-out forwards;
}

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/* Responsive */
@media (max-width: 992px) {
    .welcome .container {
        grid-template-columns: 1fr;
        text-align: start;
    }

    .left-text h2 {
        font-size: 32px;
    }

    .right-img img {
        width: 90%;
        margin: auto;
    }
}

@media (max-width: 600px) {
   
    .left-text h2 {
        font-size: 28px;
    }

    .left-text p {
        font-size: 15px;
        line-height: 26px;
    }
}


/* why choose us */
.clone-benefits {
    padding: 70px 0;
    background: url(assets/img/about/4.webp) no-repeat center center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.clone-benefits h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 25px;
    max-width: 900px;
    margin: 0 auto; /* center section */
}

.box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    transition: 0.4s ease;
    border: 1px solid #e6e6e6;
}

.box:hover {
    transform: translateY(-6px);
    border-color: #42a95d;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.box img {
    width: 70px;
    margin-bottom: 15px;
}

.box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #264a34;
}

.box p {
    font-size: 15px;
    color: #555;
}

/* Grow animation */
.grow {
    transition: 0.4s ease-in-out;
}

.box:hover .grow {
    transform: scale(1.1);
}

/* Responsive */
@media(max-width: 600px){
    .benefit-grid {
        grid-template-columns: 1fr; /* mobile single */
    }
}

/* product section */
.product-section {
    padding: 70px 0;
    background: #ffffff;
    text-align: center;
}

.product-title {
    font-size: 50px;
    font-weight: 700;
    color: #1d5c3f;
    text-align: center;
    margin-bottom: 40px;
}

.product-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
}

.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-image img {
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.product-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-image,
.product-content {
    width: 50%;
}
.product-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
    padding-right: 40px;
}

.product-content h3 {
    font-size: 28px;
    color: #20543c;
    margin-bottom: 15px;
}

.product-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.product-points {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #444;
}

.product-points li {
    margin-bottom: 8px;
}

/* Responsive */
@media(max-width: 768px){
    .product-wrapper {
        display: block;
        width: 100%;
    }

    .product-image img {
        width: 100%;
        height: auto;
        border-radius: 0; /* optional */
    }

    .product-image {
        width: 100%;
    }

    .product-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
}

/* Breacrump section */
.breadcrumb {
    padding: 25px 0;
    background: url(assets/img/about/3.webp) no-repeat center center;
    background-size: cover;
    border-bottom: 1px solid #d6e3d4;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    height: 200px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcrumb .container {
    font-size: 22px;   /* Bigger Text */
    font-weight: 600;
    color: #20543c;
}

.breadcrumb a {
    color: #2a754a;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #444;
    font-weight: 600;
}

/* Contact-section */
.contact-section {
    padding: 70px 0;
    background: #f7f7f7;
}

.contact-section .container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Small Box (Phone & Mail) */
.contact-box.sm {
    width: 300px;
    height: 220px;
}

/* Big Box (Address) */
.contact-box.lg {
    width: 300px;
    height: 300px;
}

/* Common Styling */
.contact-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-icon {
    font-size: 45px;
    color: #7c8d5b;
    margin-bottom: 15px;
}

.contact-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #69462e;
}

.contact-box ul {
    padding: 0;
    list-style: none;
}

.contact-box li a {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.contact-box li a:hover {
    color: #69462e;
}

/* Responsive */
@media(max-width: 768px){
    .contact-box {
        width: 100% !important;
        height: auto !important;
    }
}


/* form */
/* ---------- FORM SECTION WRAPPER ---------- */
.form {
    padding: 60px 0;
    background: #ffffff;
}

.form .container {
    max-width: 700px;
    margin: 0 auto;
}

/* Title */
.title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 800;
    color: #7c8d5b;
}

/* ---------- GRID LAYOUT FOR THE FORM ROW ---------- */
#form .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 18px;
}

/* remove old widths/margins from bootstrap overrides */
#form .row > div {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

/* 1) Your Name (left) */
#form .row > div:nth-child(1) {
    grid-column: 1 / 2;
}

/* 2) Your Email (right) */
#form .row > div:nth-child(2) {
    grid-column: 2 / 3;
}

/* 3) Your Mobile No (full width) */
#form .row > div:nth-child(3) {
    grid-column: 1 / 3;
}

/* 4) Description (full width) */
#form .row > div:nth-child(4) {
    grid-column: 1 / 3;
}

/* 5) Captcha Code input (left) */
#form .row > div:nth-child(5) {
    grid-column: 1 / 2;
}

/* 6) Captcha image (right) */
#form .row > div:nth-child(6) {
    grid-column: 2 / 3;
    display: flex;
    align-items: center;     /* vertical center */
}

/* 7) (Please Enter the code shown here) – full width below */
#form .row > div:nth-child(7) {
    grid-column: 1 / 3;
}

/* 8) SEND button – full width row (but centered button) */
#form .row > div:nth-child(8) {
    grid-column: 1 / 3;
}

/* ---------- INPUT & BUTTON STYLE ---------- */
.form-control {
    width: 100%;
    background: #f3f5f8;
    border: none;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 18px;
}

.btn-primary {
    width: 220px;
    background: #69462e;
    color: #fff;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 35px;
    display: block;
    margin: 25px auto 0 auto;
}



/* ---------- MOBILE: everything full width ---------- */
@media (max-width: 768px) {
    #form .row {
        grid-template-columns: 1fr;
    }

    #form .row > div {
        grid-column: 1 / 2 !important;
    }

 

    .btn-primary {
        width: 100%;
    }
}



/* SECTION BACKGROUND */
.product-section {
    padding: 30px 0;    /* reduce top-bottom gap */
    background: #ffffff;
}

.product-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;   /* left and right equal padding */
}

.product-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #7c8d5b;
    margin-bottom: 45px;
}

/* FLEX LAYOUT */
.product-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

/* LEFT IMAGE */
.left-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 14px;
    box-shadow: 0px 8px 30px rgba(0,0,0,0.10);
}

/* RIGHT CONTENT */
.right-content {
    flex: 1;
    max-width: 700px;
}

.right-content h3 {
    font-size: 26px;
    color: #272727;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: start;
}

.right-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #3b3b3b;
    margin-bottom: 12px;
    text-align: start;
}

/* RESPONSIVE */
@media (max-width: 900px) { 
    .product-wrapper {
        flex-direction: column;
        text-align: start;
    }

    .left-img img {
        max-width: 100%;
        width: 100%;
    }
}

@media(max-width: 600px){
    .product-title {
        font-size: 28px;
    }

    .right-content h3 {
        font-size: 22px;
    }

    .right-content p {
        font-size: 16px;
    }
}

/* feature */
.feature {
    /* padding: 70px 0; */
    background: url(assets/img/about/4.webp) no-repeat center center;
    background-size: cover;
    padding: 60px 0 60px 0;      /* Top & bottom spacing */
    position: relative;
    z-index: 1;
}

.feature .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.feature-title {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 35px;
}

/* BOX STYLING */
.feature-box {
    /* background: #f7faf7; */
    border-radius: 14px;
    padding: 30px 30px;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.08);
}

/* INTRO TEXT */
.feature-intro {
    font-size: 18px;
    color: #344;
    margin-bottom: 18px;
}

/* BULLET POINT LIST */
.feature-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 17px;
    color: #222;
    line-height: 1.55;
}

/* POINT ICON */
.feature-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1ea35a;
    font-size: 16px;
    font-weight: bold;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .feature-title {
        font-size: 26px;
    }

    .feature-points li {
        font-size: 16px;
    }
}

.usage {
    background: #fff;
    background-size: cover;
    padding: 60px 0 60px 0;      /* Top & bottom spacing */
    position: relative;
    z-index: 1;
}

/* Prevent overlapping with next or previous section */
.usage::after {
    content: "";
    display: block;
    clear: both;
}

/* Each item card spacing */
.usage-row {
    margin-top: 40px;
}

/* For safety on smaller screens */
@media(max-width: 768px) {
    .usage {
        padding: 80px 0 80px 0;
        font-size: 15px;
    }
}


.usage .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.usage-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #2d2d2d;
}

/* ROW FLEX */
.usage-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

/* EACH BOX */
.usage-item {
    flex: 1 1 calc(25% - 25px);
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    height: 150px;
    border: 1px solid #69462e;
    /* box-shadow: 0 7px 22px rgba(0,0,0,0.08); */
    transition: 0.3s;
}

/* ICON */
.usage-item i {
    font-size: 40px;
    color: #7c8d5b;
    margin-bottom: 10px;
}

/* TEXT */
.usage-item p {
    font-size: 17px;
    color: #333;
}

/* HOVER EFFECT */
.usage-item:hover {
    transform: translateY(-6px);
}

/* RESPONSIVE (MOBILE) */
@media(max-width: 768px){
    .usage-item {
        flex: 1 1 100%;
    }
}

/* gallery */
.gallery {
    padding: 70px 0;
    background: #ffffff;
}

.gallery-subtitle {
    text-align: center;
    font-size: 15px;
    color: #323232;
}

.gallery-title {
    text-align: center;
    font-size: 50px;
    margin-bottom: 40px;
    color: #7c8d5b;
    font-weight: 800;
}

/* GRID SYSTEM */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* IMAGE STYLING */
.gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
}

.gallery img:hover {
    transform: scale(1.04);
}

