/* ==========================
   RESET
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ==========================
   HEADER
========================== */
/* ==============================
   HEADER BASE
============================== */
header {
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom: 1px solid #ddd;
    transition: 0.3s ease;
    position: relative;
    z-index: 10;
}

/* Entire row hover effect */
header:hover {
    background: #007bff;
}

header:hover .logo,
header:hover nav a {
    color: white;
}

/* ==============================
   LOGO
============================== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: black;
    transition: 0.3s ease;
}

.logo img {
    width: 120px;
    height: auto;
    transition: 0.3s ease;
}

/* Mobile logos */
@media screen and (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
        gap: 0.4rem;
    }
    .logo img {
        width: 80px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    .logo img {
        width: 60px;
    }
}

/* ==============================
   NAVIGATION
============================== */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: 0.3s ease;
    padding: 8px 12px;
}

/* Disable individual hover; row handles hover */
nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* ==============================
   DROPDOWNS
============================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    padding: 8px 0;
    margin-top: 8px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    list-style: none;
    overflow: hidden;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.25s ease-in-out;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, padding-left 0.2s;
}
/* Make dropdown links black when header is hovered */
header:hover .dropdown-menu a {
    color: black;
}
.dropdown-menu a:hover {
    background: #f1f1f1;
    padding-left: 25px;
}

/* Parent dropdown link */
.dropdown > a {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s;
}

/* ==============================
   HAMBURGER
============================== */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
}
/* ==========================
   Mobile Menu Styles
   ========================== */
/* ===== Mobile Header & Navbar ===== */
@media screen and (max-width: 768px) {

  /* Hide desktop navbar by default */
  nav#navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
  }

  /* Show mobile menu when active */
  nav#navbar.active {
    display: flex !important;
  }

  /* Hamburger button styles */
  .hamburger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1100;
    transition: transform 0.3s ease;
  }

  .hamburger.is-active {
    transform: rotate(90deg);
  }

  /* Make ul flex column */
  nav#navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
  }

  nav#navbar li {
    border-bottom: 1px solid #ddd;
  }

  nav#navbar a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
  }

  /* Dropdown submenu styles */
  nav#navbar .dropdown-menu {
    display: none;
    position: static; /* No absolute positioning for mobile */
    background: #f8f8f8;
    box-shadow: none;
    flex-direction: column;
  }

  nav#navbar .dropdown.open > .dropdown-menu {
    display: flex;
  }

  /* Add dropdown arrow */
  nav#navbar .dropdown > a::after {
    content: "▾";
    float: right;
    margin-left: 5px;
  }

  /* Force all nav text black */
  #navbar ul li a,
  #navbar ul li a *,
  #navbar ul .dropdown-menu li a {
      color: #000 !important;
      fill: #000 !important;
  }
}

/*saving schemes================================================
/* Center the first image */
.save.big {
  display: flex;            /* make it a flex container */
  justify-content: center;  /* horizontally center the content */
  margin-bottom: 30px;      /* space below the main image */
}

.save.big img {
  width: 100%;              /* or a max-width if you want smaller */
  max-width: 1200px;        /* limits size on large screens */
  height: auto;
  border-radius: 10px;
  display: block;
}

.center-saving {
  text-align: center;
  padding: 40px 20px;
}

.savings-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Main image full width */
.save.big img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
}

/* Container for the 3 images */
.row-three {
  display: flex;
  gap: 20px;                /* space between images */
  justify-content: center;   /* center the row horizontally */
  flex-wrap: nowrap;         /* prevents wrapping */
}

/* Each smaller image */
.row-three .save img {
  width: 100%;
  max-width: 400px;          /* controls size */
  height: auto;
  display: block;
  border-radius: 10px;
}



/*land saving events slider containers
/* ===== CSS for Events Sliders ===== */

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.events-section {
  padding: 60px 20px;
  background: #f7f9fc;
  text-align: center;
}

.events-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.events-section h3 {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

/* Row of sliders */
.events-sliders-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slider container */
.events-slider-container {
  flex: 0 0 45%;           /* keep 2 per row on desktop */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* The slides inside container */
.events-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Each individual slide */
.events-slide {
  min-width: 100%;
}

/* Image inside slide - preserve faces */
.events-slide img {
  width: 100%;
  height: auto;           /* natural height to keep faces */
  max-height: 400px;      /* optional max height to avoid huge slides */
  display: block;
  border-radius: 10px;
  object-fit: contain;     /* ensures entire image fits */
  object-position: center; /* center faces */
}

/* Navigation buttons */
.events-prev,
.events-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.events-prev { left: 10px; }
.events-next { right: 10px; }

.events-prev:hover,
.events-next:hover {
  background: rgba(0,0,0,0.85);
}

/* Toggle / small buttons */
.events-toggle {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.events-toggle:hover {
  opacity: 1;
}



/* Responsive: slider containers stack */
@media(max-width: 768px){
  .events-slider-container {
    flex: 0 0 100%;   /* full width on mobile */
    margin-bottom: 20px;
  }

  .events-slide img {
    max-height: none; /* allow images to scale naturally */
  }
}




/*products on nav==========================================
*products nav display
/* Make parent li act as positioning context */
.dropdown {
    position: relative;
}

/* Dropdown menu: hidden by default, absolute positioning, 4 columns */
.dropdown-menu.large {
    display: none;                     /* hidden initially */
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 20px;
    border-radius: 8px;
    z-index: 999;

    display: grid;                     /* 3 columns */
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 20px 40px;

    max-height: 450px;
    overflow-y: auto;
}

/* Each category stays together */
.dropdown-section {
    display: block;     /* ensures all children stay under header */
}



    /* NEW: Scrollbar support */
.dropdown-menu.large::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu.large::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}



/* Show on hover (desktop) */
/* Show the menu immediately on hover */
.dropdown:hover > .dropdown-menu.large {
    display: grid !important;
}



.dropdown-section h4 {
    font-weight: bold;
    margin-bottom: 8px;
}

/* Default sub-item styling (BLACK before hover) */
.dropdown-section a {
    display: block;
    margin: 3px 0;
    color: #000000 !important;   /* ðŸ–¤ BLACK DEFAULT TEXT */
    text-decoration: none;
    font-weight: 500;
}

/* Hover styling (BLUE) */
.dropdown-section a:hover {
    color: #0074d9 !important;   /* ðŸ”µ BLUE ON HOVER */
    text-decoration: underline;
}

/* ===================================== */
/* ========== MOBILE VIEW =============== */
/* ===================================== */

@media (max-width: 768px) {

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    /* Dropdown becomes FULL WIDTH under header */
    .dropdown-menu.large {
        position: static;
        width: 100%;
        padding: 15px;

        /* switch to single column */
        display: none;
        grid-auto-flow: row;
        grid-template-rows: none;
        grid-template-columns: 1fr;
        gap: 12px;
        border-radius: 0;
        background: #f8f8f8;
    }

    /* Show menu when tapping the parent link */
    .dropdown:active .dropdown-menu.large,
    .dropdown:focus-within .dropdown-menu.large {
        display: block;
    }

    .dropdown-section {
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
    }

    .dropdown-section:last-child {
        border-bottom: none;
    }

    /* Mobile link styling (BLACK default) */
    .dropdown-section a {
        margin-left: 10px;
        color: #000000 !important;   /* ðŸ–¤ BLACK */
    }

    .dropdown-section a:hover {
        color: #0074d9 !important;   /* ðŸ”µ BLUE ON HOVER */
    }
}


/*saving schemes================================================
.center-saving {
  text-align: center;       /* Centers inline content like the heading */
  display: flex;
  flex-direction: column;
  align-items: center;      /* Centers children horizontally */
}

.center-saving .container {
  display: flex;
  justify-content: center;  /* Centers inner blocks */
  width: 100%;
}

.saving {
  display: flex;
  justify-content: center;   /* Centers .save */
}

.save img {
  display: block;
  margin: 0 auto;            /* Ensures the image itself is centered */
  max-width: 100%;
}
@media (max-width: 768px) {
  .center-saving .container,
  .saving {
    flex-direction: column;
    align-items: center;
  }

  .save img {
    max-width: 90%;      /* reduce image size for mobile */
  }
}



/* ==========================
   MAIN CONTENT
========================== */
main {
    padding: 40px 30px;
}

/* Brown welcome section */
.welcome-box {
    background: #8B5A2B;
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.welcome-box h1 {
    margin-bottom: 10px;
}
.save {
    display: inline-block; /* or keep your current display */
    margin-right: 20px;    /* Adjust spacing */
}
/*===============================slider
/* FEATURED PRODUCTS SLIDER */
.center-slider {
  text-align: center;
  padding: 50px 0;
  background: #f9f9f9;
}

.center-slider h2 {
  margin-bottom: 20px;
  font-size: 2em;
}

.slider-container {
  position: relative;
  max-width: 700px; /* max width for desktop */
  width: 90%; /* responsive width */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  flex: 0 0 100%; /* one slide per view */
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5em;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
  .slide img {
    padding: 20px;
  }

  .prev, .next {
    padding: 8px 12px;
    font-size: 1.2em;
  }
}

@media screen and (max-width: 480px) {
  .slider-container {
    width: 100%;
  }

  .slide img {
    padding: 10px;
  }

  .prev, .next {
    padding: 6px 10px;
    font-size: 1em;
  }

  .center-slider h2 {
    font-size: 1.5em;
  }
}

/* Horizontal scroll category list */
.category-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 10px 0;
    margin: 20px auto;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding-bottom: 12px;
}

.category-list li {
    flex: 0 0 auto;
}

.category-list li a {
    display: inline-block;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #28a745;
    border-radius: 20px;
    color: #28a745;
    font-weight: bold;
    transition: 0.3s;
}

.category-list li a:hover,
.category-list li a.active-category {
    background: #28a745;
    color: white;
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.product-card {
    display: block;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%; /* FIXED */
}


.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    transition: transform 0.3s;
}

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

.product-card h3 {
    font-size: 1.1em;
    margin: 10px 0 5px 0;
}

.product-card .desc {
    font-size: 0.9em;
    color: #555;
    height: 40px;
    overflow: hidden;
}

.product-card .price {
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

.add-cart-btn {
    padding: 10px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.add-cart-btn:hover {
    background: #218838;
}

/* Search section */
.search-section {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.search-container {
    display: flex;
    width: 400px;
    max-width: 90%;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-container input[type="text"] {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    outline: none;
    border-radius: 50px 0 0 50px;
}

.search-container input[type="text"]:focus {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.search-container button {
    border: none;
    background: #28a745;
    color: white;
    padding: 0 20px;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 0 50px 50px 0;
}

.search-container button:hover {
    background: #218838;
}
/* Pagination container */
#pagination {
    margin-top: 25px;
    text-align: center;
}

/* Pagination buttons */
#pagination button {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Hover effect */
#pagination button:hover:not(:disabled) {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Disabled button style */
#pagination button:disabled {
    background: #f0f0f0;
    color: #aaa;
    border-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Active page button */
#pagination button.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

/* Optional: first/last buttons slightly bigger */
#pagination button:first-child,
#pagination button:last-child {
    padding: 10px 18px;
}

/* cart checkout===========================================================
/* Checkout Form Container */
.checkout-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 30px;
}

/* Headings inside form */


/* Input fields and textarea */
.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form input[type="email"],
.checkout-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

/* Focus effect */
.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: #28a745;
    outline: none;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

/* Labels */
.checkout-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #555;
}

/* Payment method radios */
.checkout-form .payment-methods label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-weight: normal;
    cursor: pointer;
}

.checkout-form .payment-methods input[type="radio"] {
    accent-color: #28a745; /* green highlight */
}

/* Submit Button */
.checkout-form button {
    width: 100%;
    padding: 15px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.checkout-form button:hover {
    background: #218838;
}

/* Responsive */
@media (max-width: 600px) {
    .checkout-form {
        padding: 20px;
    }

    .checkout-form h2 {
        font-size: 18px;
    }

    .checkout-form button {
        font-size: 16px;
    }
}



/* ===========================
   Banner Area (keep blue)
   =========================== */
.banner_area {
    padding: 70px 0;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: #fff;
    text-align: center;
}

.banner_area .banner_text h3 {
    font-size: 34px;
    font-weight: 600;
}

.banner_area ul li a {
    color: #dce6ff;
}

.partners_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.partner {
    text-align: center;
    width: 150px; /* adjust size */
}

.partner img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px; /* optional */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.partner p {
    font-weight: bold;
    font-size: 14px;
}


/* ===========================
   Contact Form Area
   =========================== */
.contact_form_area {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.main_title {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.main_title h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 10px;
}

.main_title h5 {
    font-size: 16px;
    color: #555;
}

/* ===========================
   Form Column
   =========================== */
.form-column {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

/* ===========================
   Modern Contact Form
   =========================== */
.contact_us_form {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 100%;
    position: relative;
}

/* Inputs and textarea */
.contact_us_form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact_us_form .form-group input,
.contact_us_form .form-group textarea {
    border: 1px solid #ededed;
    border-radius: 6px;
    padding: 14px 16px;
    width: 100%;
    background: #f8fbff;
    font-size: 16px;
    color: #797979;
    transition: 0.3s ease;
}

.contact_us_form .form-group textarea {
    min-height: 150px;
    resize: none;
}

/* Floating label effect */
.contact_us_form .form-group label {
    position: absolute;
    top: 50%;
    left: 16px;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: 0.3s ease all;
}

.contact_us_form .form-group input:focus + label,
.contact_us_form .form-group input:not(:placeholder-shown) + label,
.contact_us_form .form-group textarea:focus + label,
.contact_us_form .form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 14px;
    font-size: 13px;
    color: #007bff;
    background: #ffffff;
    padding: 0 5px;
}

.contact_us_form .form-group input:focus,
.contact_us_form .form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}

/* Submit Button */
.order_s_btn {
    background: #007bff;
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
}

.order_s_btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
}

/* ===========================
   Contact Details Column
   =========================== */
/* ===========================
   Banner Area
   =========================== */
.banner_area {
    padding: 70px 0;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: #fff;
    text-align: center;
}

.banner_area .banner_text h3 {
    font-size: 34px;
    font-weight: 600;
}

/* ===========================
   Contact Form Area
   =========================== */
.contact_form_area {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.main_title {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.main_title h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 10px;
}

.main_title h5 {
    font-size: 16px;
    color: #555;
}

/* ===========================
   Form Column
   =========================== */
.form-column {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

/* ===========================
   Modern Contact Form
   =========================== */
/* ===========================
   Banner Area
   =========================== */
.banner_area {
    padding: 70px 20px;
    background: linear-gradient(to right, #007bff, #0056b3);
    color: #fff;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.banner_area .banner_text h3 {
    font-size: 34px;
    font-weight: 600;
    margin: 0;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 0.8s forwards;
    animation-delay: 0.2s;
}

/* ===========================
   Contact Form Area
   =========================== */
.contact_form_area {
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.main_title {
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.main_title h2 {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 10px;
}

.main_title h5 {
    font-size: 16px;
    color: #555;
}

/* ===========================
   Form Column
   =========================== */
.contact_us_form {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards;
    animation-delay: 0.4s;
}

/* Form inputs and textarea */
.contact_us_form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact_us_form .form-group input,
.contact_us_form .form-group textarea {
    border: 1px solid #ededed;
    border-radius: 6px;
    padding: 14px 16px;
    width: 100%;
    background: #f8fbff;
    font-size: 16px;
    color: #797979;
    transition: 0.3s ease;
}

.contact_us_form .form-group textarea {
    min-height: 150px;
    resize: none;
}

/* Floating label effect */
.contact_us_form .form-group label {
    position: absolute;
    top: 50%;
    left: 16px;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: 0.3s ease all;
}

.contact_us_form .form-group input:focus + label,
.contact_us_form .form-group input:not(:placeholder-shown) + label,
.contact_us_form .form-group textarea:focus + label,
.contact_us_form .form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 14px;
    font-size: 13px;
    color: #007bff;
    background: #ffffff;
    padding: 0 5px;
}

.contact_us_form .form-group input:focus,
.contact_us_form .form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
}

/* Submit Button */
.order_s_btn {
    background: #007bff;
    color: #fff;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
}

.order_s_btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,86,179,0.3);
}

/* ===========================
   Contact Details Below Form
   =========================== */
.contact_details {
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 40px; /* space from form */
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s forwards;
    animation-delay: 0.6s;
}

.contact_details .contact_d_item h5 {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #797979;
    margin-bottom: 10px;
}

.contact_details .contact_d_item h5 i {
    color: #007bff;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s ease;
}

.contact_details .contact_d_item h5 a {
    color: #797979;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact_details .contact_d_item h5:hover i,
.contact_details .contact_d_item h5:hover a {
    color: #0056b3;
}

.contact_details .contact_d_item + .contact_d_item {
    margin-top: 20px;
}




/* ===========================
   Responsive Adjustments
   =========================== */
@media (max-width: 768px) {
    .banner_area {
        padding: 50px 15px;
    }
    .banner_area .banner_text h3 {
        font-size: 28px;
    }

    .contact_details {
        max-width: 100%;
        margin-top: 30px;
        text-align: center;
    }

    .contact_details .contact_d_item h5 {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact_us_form {
        padding: 25px 20px;
    }

    .main_title h2 {
        font-size: 28px;
    }

    .main_title h5 {
        font-size: 14px;
    }

    .contact_details {
        padding: 20px;
    }

    .contact_details .contact_d_item h5 {
        font-size: 15px;
    }

    .contact_details .contact_d_item h5 i {
        font-size: 16px;
    }

    .banner_area {
        padding: 40px 10px;
    }
    .banner_area .banner_text h3 {
        font-size: 24px;
    }
}

/* ===========================
   Slide-up Animations
   =========================== */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


/*end============================================================
/* COOL BROWN FOOTER */
.cool-footer {
    background: #8B5A2B;       /* brown background */
    color: #fff;               /* white text */
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 1px solid #704214;  /* darker brown border */
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* BRAND / TITLE */
.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 22px;
}

.footer-brand p {
    color: #f3e8dc; 
    font-size: 14px;
    margin-bottom: 25px;
}

/* LINKS */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-links a {
    color: #f3e8dc;            /* light cream color for links */
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #fff;
}
.footer-social {
  text-align: center; /* center all icons */
  padding: 20px 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #555; /* default icon bg */
  color: white; /* icon color */
  border-radius: 50%; /* round icons */
  text-decoration: none;
  font-size: 18px;
  margin: 0 8px; /* spacing between icons */
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #28a745; /* hover color */
  transform: scale(1.1); /* small pop effect */
  color: white;
}

/* Tablets */
@media screen and (max-width: 768px) {
  .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 16px;
    margin: 0 6px;
  }
}

/* Mobile phones */
@media screen and (max-width: 480px) {
  .footer-social a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin: 0 5px;
  }
}



/* BOTTOM COPYRIGHT */
.footer-bottom {
    margin-top: 10px;
    border-top: 1px solid #704214;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #f3e8dc;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .footer-links {
        gap: 15px;
    }
}

.payment-methods ul {
    list-style-type: none !important; /* removes bullets */
    margin: 0;
    padding: 0;
}


/* Newsletter */
.newsletter-container {
    text-align: center;
    padding: 60px 20px;
    background-color: #007BFF;
    color: white;
    border-radius: 10px;
    margin: 40px 0;
}

.newsletter-form input[type="email"] {
    padding: 10px 15px;
    width: 250px;
    max-width: 80%;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.newsletter-form button {
    padding: 10px 20px;
    border: none;
    background-color: #0056b3;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #003f7f;
}

@media screen and (max-width: 768px) {
    .newsletter-container {
        padding: 50px 15px;
    }
    .newsletter-form input[type="email"],
    .newsletter-form button {
        width: 100%;
        margin: 5px 0;
    }
}

@media screen and (max-width: 480px) {
    .newsletter-container h2 {
        font-size: 1.5em;
    }
    .newsletter-container p {
        font-size: 1em;
    }
    .newsletter-form input[type="email"],
    .newsletter-form button {
        font-size: 1em;
    }
}

/* ==========================
   CART STYLES
========================== */
.hidden { display: none !important; }

#cart-container { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }

.cart-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.item-name { font-size: 1.1rem; font-weight: 600; color: #333; flex: 1; }

.item-details { display: flex; align-items: center; gap: 20px; }

.item-price, .item-total { font-weight: bold; min-width: 60px; text-align: right; }

.item-quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.item-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    padding: 5px 0;
    font-weight: 600;
}

.quantity-btn {
    background-color: #f0f0f0;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: background-color 0.2s;
}

.quantity-btn:hover { background-color: #e0e0e0; }

.remove-item-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.remove-item-btn:hover { background-color: #c82333; }

#cart-summary {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: right;
    max-width: 400px;
    margin-left: auto;
}

#cart-subtotal { font-size: 1.5rem; color: #007bff; }

#checkout-button {
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: background-color 0.2s;
    width: 100%;
}

#checkout-button:hover { background-color: #1e7e34; }

#empty-cart-message {
    text-align: center;
    padding: 50px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    margin-top: 30px;
}

.continue-shopping-btn {
    display: inline-block;
    background-color: #007bff;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.continue-shopping-btn:hover { background-color: #0056b3; }

/* ==========================
   RESPONSIVE FIXES
========================== */
@media (max-width: 768px) {
    nav ul { flex-direction: column; gap: 10px; }
}

@media (max-width: 600px) {
    .footer-links { gap: 15px; }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-details {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }
}

/* testimonials====================
.testimonials {
    margin: 120px auto 50px auto; /* margin-top accounts for fixed header */
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
}

.testimonial-card h4 {
    margin-top: 10px;
    color: #333;
    font-weight: 600;
}
/*==========phases
.phases-container {
    max-width: 1100px;
    margin: 80px auto 0; /* top margin changed to 80px */
    padding: 0 20px;
}

/*about us video part=========================================================
/* Video + Title row */

.video-text-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px; /* space below row */
}

/* Medium video size */
.video-box video {
    width: 100%;
    max-width: 400px;  /* medium size */
    height: auto;
    border-radius: 6px;
}

/* Title + Button */
.text-box h3 {
    font-size: 22px;
    margin: 0 0 15px 0; /* space below title for button */
    line-height: 1.4;
}

/* Button */
.get-in-touch-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.get-in-touch-btn:hover {
    background: #0056b3;
}

/* Paragraph below row */
.below-video-content p {
    font-size: 16px;
    margin-top: 25px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .video-text-row {
        flex-direction: column;
        align-items: center;

}
    
}

/*about tuzimbe box
.tuzimbe-box .about-highlights {
    display: flex;
    flex-wrap: wrap;       /* allow wrapping on smaller screens */
    gap: 20px;             /* spacing between boxes */
    margin-top: 25px;
}

.tuzimbe-box .highlight-box {
    flex: 1 1 calc(25% - 20px);   /* 4 boxes per row with gap */
    background-color: #fff; 
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;           /* center content */
}

.tuzimbe-box .highlight-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
}

.tuzimbe-box .highlight-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .tuzimbe-box .highlight-box {
        flex: 1 1 100%;   /* stack vertically */
    }
}


