
            /* ==========================================
   GLOBAL VARIABLES
========================================== */
:root{
    --glass-bg: rgba(255,255,255,.45);
    --glass-bg-strong: rgba(255,255,255,.65);
    --glass-border: rgba(255,255,255,.40);
    --glass-shadow: rgba(31,38,135,.08);

    --blur-strength: 12px;

    --accent-gold: #8B5A2B;
    --accent-green: #28a745;

    --text-main: #2b2b2b;
    --text-light: #666;
}

/* ==========================================
   RESET
========================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:var(--text-main);

    background:
    radial-gradient(
        circle at 10% 20%,
        rgba(243,241,238,1) 0%,
        rgba(226,218,206,1) 90%
    );

    min-height:100vh;
}

/* ==========================================
   REUSABLE GLASS PANEL
========================================== */
.glass-panel{
    background:var(--glass-bg);
    border:1px solid var(--glass-border);

    backdrop-filter:blur(var(--blur-strength));
    -webkit-backdrop-filter:blur(var(--blur-strength));

    box-shadow:0 8px 32px var(--glass-shadow);

    border-radius:16px;
}

/* ==========================================
   HEADER
========================================== */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:12px 40px;

    background:var(--glass-bg-strong);

    border-bottom:1px solid var(--glass-border);

    backdrop-filter:blur(var(--blur-strength));
    -webkit-backdrop-filter:blur(var(--blur-strength));

    box-shadow:0 4px 30px var(--glass-shadow);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    height:55px;
    object-fit:contain;
}

/* ==========================================
   NAVIGATION
========================================== */
nav ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:10px;
}

nav ul li{
    position:relative;
}

nav a{
    text-decoration:none;
    color:var(--text-main);

    font-weight:600;

    padding:10px 15px;

    border-radius:10px;

    transition:.3s;
}

nav a:hover{
    background:rgba(255,255,255,.5);
    color:var(--accent-gold);
}

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

.dropdown-menu{
    position:absolute;

    top:100%;
    left:0;

    min-width:240px;

    padding:15px 0;

    list-style:none;

    background:rgba(255,255,255,.95);

    border:1px solid var(--glass-border);

    border-radius:14px;

    backdrop-filter:blur(20px);

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

    z-index:10000;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    color:var(--text-main);
}

.dropdown-menu li a:hover{
    background:rgba(139,90,43,.10);
    color:var(--accent-gold);
}

/* ==========================================
   MEGA MENU
========================================== */
.dropdown-menu.large{
    width:max-content;
    max-width:900px;

    padding:25px;

    left:50%;
    transform:translateX(-50%) translateY(10px);
}

.dropdown:hover .dropdown-menu.large{
    transform:translateX(-50%) translateY(0);
}

.multi-column{
    display:flex;
    gap:30px;
}

.dropdown-section{
    min-width:200px;
}

.dropdown-section h4{
    color:var(--accent-gold);

    margin-bottom:12px;

    font-size:.95rem;

    border-bottom:1px solid rgba(139,90,43,.15);

    padding-bottom:8px;
}

.dropdown-section a{
    display:block;
    padding:6px 0;
    text-decoration:none;
    color:var(--text-main);
}

.dropdown-section a:hover{
    color:var(--accent-gold);
}

/* ==========================================
   MOBILE MENU
========================================== */
.hamburger{
    display:none;

    font-size:30px;
    cursor:pointer;

    background:none;
    border:none;
}

@media(max-width:768px){

    .hamburger{
        display:block;
    }

    nav#navbar{
        display:none;

        position:absolute;

        top:100%;
        left:0;
        right:0;

        background:rgba(255,255,255,.96);

        backdrop-filter:blur(20px);

        flex-direction:column;

        box-shadow:0 10px 30px rgba(0,0,0,.12);
    }

    nav#navbar.active{
        display:flex;
    }

    nav ul{
        flex-direction:column;
        width:100%;
    }

    nav ul li{
        width:100%;
    }

    nav ul li a{
        display:block;
        width:100%;
        padding:15px 20px;
    }

    .dropdown-menu,
    .dropdown-menu.large{
        position:static;

        width:100%;
        max-width:100%;

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        background:#f9f9f9;

        box-shadow:none;
    }

    .dropdown.open > .dropdown-menu{
        display:block;
    }

    .multi-column{
        flex-direction:column;
    }
}

/* ==========================================
   MAIN
========================================== */
main{
    max-width:1200px;

    margin:auto;

    padding-top:120px;
    padding-left:20px;
    padding-right:20px;
}

/* ==========================================
   SEARCH BAR
========================================== */
.search-section{
    display:flex;
    justify-content:center;
    margin:40px 0;
}

.search-container{
    width:500px;
    max-width:95%;

    display:flex;

    background:var(--glass-bg);

    border:1px solid var(--glass-border);

    border-radius:50px;

    overflow:hidden;

    backdrop-filter:blur(var(--blur-strength));
}

.search-container input{
    flex:1;

    border:none;
    background:transparent;

    padding:15px 25px;

    outline:none;
}

.search-container button{
    border:none;

    padding:0 25px;

    background:var(--accent-green);

    color:#fff;

    cursor:pointer;
}

/* ==========================================
   PRODUCT GRID
========================================== */
.product-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(240px,1fr));

    gap:25px;

    margin-bottom:40px;
}

.product-card{
    background:rgba(255,255,255,.40);

    border:1px solid var(--glass-border);

    border-radius:18px;

    padding:20px;

    text-align:center;

    backdrop-filter:blur(var(--blur-strength));

    box-shadow:0 8px 32px var(--glass-shadow);

    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);

    background:rgba(255,255,255,.60);

    box-shadow:
    0 12px 40px rgba(139,90,43,.15);
}

.product-img{
    width:100%;
    height:220px;

    object-fit:cover;

    border-radius:12px;

    margin-bottom:15px;
}

.product-card h3{
    margin-bottom:10px;
}

.product-card .desc{
    color:var(--text-light);
    margin-bottom:15px;
}

.product-card .price{
    color:var(--accent-gold);

    font-weight:700;

    margin-bottom:15px;
}

.add-cart-btn{
    width:100%;

    padding:12px;

    border:none;

    border-radius:10px;

    color:#fff;

    cursor:pointer;

    font-weight:600;

    background:
    linear-gradient(
        135deg,
        #28a745,
        #1e7e34
    );

    transition:.3s;
}

.add-cart-btn:hover{
    transform:translateY(-2px);
}

/* ==========================================
   CATEGORY PILLS
========================================== */
.category-list{
    list-style:none;

    display:flex;
    flex-wrap:wrap;

    justify-content:center;

    gap:12px;

    margin-bottom:30px;
}

.category-list a{
    text-decoration:none;

    color:var(--text-main);

    padding:10px 22px;

    border-radius:30px;

    background:rgba(255,255,255,.35);

    border:1px solid var(--glass-border);

    transition:.3s;
}

.category-list a:hover{
    color:var(--accent-gold);
}

.active-category{
    background:
    linear-gradient(
        135deg,
        var(--accent-gold),
        #6f4521
    ) !important;

    color:#fff !important;
}

/* ==========================================
   SECTION TITLES
========================================== */
section h2{
    text-align:center;

    color:var(--accent-gold);

    font-size:2.2rem;

    margin-bottom:35px;
}

/* ==========================================
   STATS
========================================== */
.stats{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin:60px 0;
}

.stat-card{
    padding:30px;

    text-align:center;

    background:rgba(255,255,255,.4);

    border:1px solid var(--glass-border);

    border-radius:16px;

    backdrop-filter:blur(var(--blur-strength));
}

.stat-card h2{
    margin:0;

    color:var(--accent-gold);
}

/* ==========================================
   PAGINATION
========================================== */
.pagination{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:40px 0;
}

.pagination a{
    text-decoration:none;

    padding:10px 18px;

    border-radius:10px;

    color:var(--text-main);

    background:rgba(255,255,255,.35);

    border:1px solid var(--glass-border);
}

.pagination a:hover{
    color:var(--accent-gold);
}


/*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);
    }
}






/* ==========================================
   FOOTER
========================================== */
.cool-footer{
    margin-top:60px;

    background:rgba(43,43,43,.85);

    color:#fff;

    backdrop-filter:blur(var(--blur-strength));

    padding:60px 20px 20px;
}

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

.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;

    margin:25px 0;
}

.footer-links a{
    color:#f5f5f5;
    text-decoration:none;
}

.footer-links a:hover{
    color:#fff;
}

.footer-social{
    margin:20px 0;
}

.footer-social a{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    width:42px;
    height:42px;

    margin:0 5px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{
    background:var(--accent-green);
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:25px;
    padding-top:15px;

    border-top:1px solid rgba(255,255,255,.15);
}