@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif !important;
}
body{
    font-family: 'Georgia', serif !important;


}

/* ==================Main Header======================== */

a{
  text-decoration:none;
  color:inherit;
}

/* ================= HEADER ================= */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  padding:18px 60px !important;
  background:#f0a729;
  box-shadow:0 6px 20px rgba(0,0,0,0.05);
  
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width:50px;
}

.logo h4{
  color:#000;
  font-size: 20px;
  font-weight:bold;
 
}

.logo span{
  color:#158054;
  font-size: 20px;
  font-weight: bold;
}

/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:auto; /* ✅ FIX */
}

.nav a{
  font-weight:500;
  color:#333;
}

/* DROPDOWN */
.nav-item{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:40px;
  left:0;
  background:#fff;
  list-style:none;
  min-width:180px;
  border-radius:10px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:0.3s ease;
}

.dropdown-menu li a{
  display:block;
  padding:12px 18px;
  font-size:14px;
}

.dropdown-menu li a:hover{
  background:#f3f4f6;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* LOGIN BUTTON */
.login-btn{
  background:#158054;
  color:#fff;
  padding:10px 22px;
  border-radius:8px;
  font-weight:600;
}

.login-btn:hover{
  background:#0f6b44;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 900px){

  .header{
    padding:16px 30px;
  }

  .hamburger{
    display:block;
  }

  .nav{
    position:absolute;
    top:80px;
    right:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px 30px;
    gap:16px;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
  }

  .nav.active{
    display:flex;
  }

  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    display:none;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }

  .desktop-login{
    display:none;
  }
}

/* ================= MOBILE 360px ================= */
@media (max-width: 480px){

  .header{
    padding:14px 20px;
  }

  .logo h4{
    font-size:16px;
  }

  .nav a{
    font-size:15px;
  }

  .login-btn{
    width:100%;
    text-align:center;
  }
}

/* Hide mobile login on desktop */
.mobile-login{
  display:none;
}

@media(max-width:900px){
  .mobile-login{
    display:inline-block;
    margin-top:10px;
  }
}

/* =====================Index Home Page========================= */

/* --------------home 1 st section--------------- */
/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  background: url("../asset/images/bg_2.jpg") no-repeat center / cover;
  overflow: hidden;
  /* margin-top: -10px; */
}

/* Desktop zoom animation only */
@media (min-width: 993px) {
  .hero {
    animation: bgZoom 18s ease-in-out infinite alternate;
  }
}

/* Background zoom */
@keyframes bgZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  color: #fff;
}

/* Badge */
.badge-hero{
  display: inline-block;
  background: #068d49;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite, fadeUp 1s ease forwards;
}

/* Float */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Title */
.title {
  font-size: 64px;
  font-weight: 800;
  color: #f0a729;
  line-height: 1.1;
  position: relative;
  animation: fadeUp 1.2s ease forwards;
}

.title span {
  color: #fff;
}

/* Shine */
.title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: shine 4s infinite;
}

@keyframes shine {
  to { left: 150%; }
}

/* Text */
.description {
  margin: 22px 0 35px;
  font-size: 17px;
  line-height: 1.7;
  color: #eaeaea !important;
  animation: fadeUp 1.4s ease forwards;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 15px;
  animation: fadeUp 1.6s ease forwards;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Primary */
.primary {
  background: #068d49;
  color: #fff;
  animation: pulse 2s infinite;
}

.primary:hover {
  background: #158054;
  transform: translateY(-4px);
}

/* Secondary */
.secondary {
  background: #f0a729;
  color: #000;
}

.secondary:hover {
  background: #ffcb6b;
  transform: translateY(-4px);
}

/* Pulse */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,107,69,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(31,107,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,107,69,0); }
}

/* Fade up */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================= TABLET ================= */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding: 0 6%;
    background-position: center top;
  }

  .title {
    font-size: 40px;
  }

  .description {
    font-size: 16px;
  }

  .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ================= MOBILE (360px) ================= */
@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
    padding: 0 5%;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .title {
    font-size: 32px;
    line-height: 1.2;
  }

  .description {
    font-size: 15px;
  }

  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  .buttons {
    justify-content: center;
  }
}


/* --------------home 2 nd section--------------- */

  .agri-underline {
            position: relative;
            display: inline-block;
        }

        .agri-underline::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 8px;
            width: 100%;
            height: 4px;
            background-color:  #ffffff; /* amber-600 */
            opacity: 0.3;
            z-index: -1;
            margin-bottom: -15px;
        }

        #button{
          background-color: #f0a729;
          color: #000;
        }

        #button:hover{
            background-color: #068d49;
             color: #eaeaea;
        }
        #our-about-head{
          font-size: 38px;
        }
        
        #our-about-para{
          text-align: justify;
        }
        #our-list{
          margin-left: -40px;
        }
    /* --------------home 3 rd section--------------- */

    /* --- MAIN SECTION --- */
        .agri-section {
            background-color: #f0a729; /* Ochre color from image */
            padding: 80px 10%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 50px;
            align-items: center;
        }

        /* --- LEFT CONTENT --- */
        .content-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .header-top {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 14px;
        }

        .title-area h2 {
            font-size: clamp(32px, 5vw, 56px);
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .underline {
            text-decoration: underline;
            text-underline-offset: 10px;
            text-decoration-thickness: 2px;
        }

        .description-agri {
            font-size: 18px;
            color: rgba(19, 18, 18, 0.9);
            max-width: 500px;
            margin-bottom: 15px;
        }

        /* --- IMAGES --- */
        .image-box-small {
            width: 100%;
            height: 450px;
            max-width: 300px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .image-box-small img {
            width: 100%;
            display: block;
        }

        .image-right-wrapper {
            position: relative;
        }

        .outline-frame {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(22, 21, 21, 0.4);
            border-radius: 30px;
            z-index: 1;
        }

        .image-box-large {
            position: relative;
            z-index: 2;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .image-box-large img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-box-large:hover img {
            transform: scale(1.05);
        }

        /* --- STATS --- */
        .stats-grid {
            display: flex;
            gap: 150px;
            border-top: 1px solid rgba(255,255,255,0.3);
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding: 30px 0;
            margin-top: 20px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 700;
        }

        .stat-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
        }

        /* --- BUTTON --- */
        .read-more-btn {
            background: #ffffff;
            color: #f0a729;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            width: fit-content;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            background: #2d2d2d;
            color: #ffffff;
            transform: translateY(-3px);
        }

        /* --- ANIMATIONS --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            .agri-section {
                padding: 60px 5%;
            }
            .outline-frame {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .stats-grid {
                flex-direction: column;
                gap: 20px;
            }
            .image-box-large img {
                height: 400px;
            }
        }


        
        /* -------------home 4 th section------------- */
          
.farming-process {
    padding: 100px 20px;
    overflow: hidden;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* Header Styles */
.header-content {
    text-align: center;
    margin-bottom: 60px;
}

.badge-farming {
    color: #068d49;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    background-color:#f0a729 ;
    padding: 5px 8px;
}

.header-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #068d49;
    margin-top: 15px;
}

.header-content h1 span {
    color: #068d49;
    /* text-decoration: underline;
    text-underline-offset: 10px; */
}

/* 4-Column Responsive Grid */
.steps-grid {
    display: grid;
    width: 1300px;
    padding: 10px 50px;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 30px;
}

/* Card & Animation Styles */
.step-card {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    opacity: 0; /* Hidden initially for animation */
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--delay) * 0.2s);
}

.number-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.big-num {
    font-size: 5rem;
    color: #f0a729 !important;
    font-weight: 200;
    line-height: 1;
    /* color: var(--gold); */
    /* opacity: 0.5; */
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    font-weight: bold;
    color: var(--dark);
    margin-left: 5px;
}

.step-card h3 {
    font-size: 1.4rem;
    margin: 15px 0;
    color: var(--dark);
}

.step-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets */
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr; /* 1 column on phones */
    }
    .header-content h1 { font-size: 2.2rem; }
}

 /* -------------home 5 th section------------- */
.products{
    background-color: #f0a729;
    padding: 70px 30px;
}
 .products h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #111111;
  font-size: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
   padding-left: 50px;
    padding-right: 50px;
    margin-top: 20px;
  
}

.card {
  background: #fff;
  align-items: center;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.info {
  flex: 1;
}

.info h3{
  align-items: center;
  margin-top: 40px !important;
}
 
.price {
  font-weight: bold;
  margin-top: 40px !important;
  align-items: center;
}

button {
  padding: 8px 17px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: #6fa21d;
  color: #fff;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

.card.sold button {
  background: #c1d3a1;
  cursor: not-allowed;
}
.add-btn{
  background-color: #068d49;
  padding: 2px 15px;
}
/* Added animation */
button.added {
  background: #4caf50;
  animation: pop 0.4s ease;
}



@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* -----------home 6th section-------------- */

        /* -----------home 7th section-------------- */

        /* SECTION */
.reviews-section{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

/* TITLE */
.review-title{
  text-align:center;
  margin-bottom:60px;
}

.review-title small{
  color:var(--gold);
  letter-spacing:2px;
  font-size:13px;
}

.review-title h2{
  margin-top:10px;
  font-size:38px;
  color:var(--green);
}

.review-title span{
  color:var(--gold);
  /* text-decoration:underline; */
}

/* WRAPPER */
.review-wrapper{
  display:flex;
  align-items:center;
  gap:40px;
  position:relative;
}

/* IMAGE */
.review-img{
  flex:1;
  animation:slideLeft .7s ease;
}

.review-img img{
  width:100%;
  height: 400px;
  border-radius:22px;
}

/* CONTENT */
.review-content{
  flex:1.2;
  background:#f0a729;
  padding:40px;
  border-radius:22px;
  animation:slideRight .7s ease;
}

.review-content p{
  color:#111111;
  font-size:16px;
  line-height:1.8;
}

.review-content h4{
  margin-top:25px;
  color:var(--green);
}

.review-content span{
  color:var(--gold);
  font-size:14px;
}

/* ARROWS */
.arrow{
  position:absolute;
  top:50%;
  /* transform:translateY(-50%); */
  width:46px;
  height:46px;
  border-radius:50%;
  border:none;
  background:green;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  z-index:10;
  transition:.3s;
  margin-top: -13px;
}

.arrow:hover{
  background:#f0a729;
  
}

.arrow.left{
  left:-15px;
  
  
}

.arrow.right{
  right:-15px;
}

/* ANIMATIONS */
@keyframes slideLeft{
  from{opacity:0; transform:translateX(-40px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes slideRight{
  from{opacity:0; transform:translateX(40px);}
  to{opacity:1; transform:translateX(0);}
}

/* RESPONSIVE */
@media(max-width:900px){
  .review-wrapper{
    flex-direction:column;
  }

  .arrow{
    top:auto;
    bottom:-60px;
    transform:none;
  }

  .arrow.left{
    left:40%;
  }

  .arrow.right{
    right:40%;
  }
}

/* =============================Index2 Home Page============================= */

/* ===== BANNER ===== */
.farm-banner{
  background: url("../asset/images/bg_1.png") no-repeat center / cover;
  padding:220px 20px;
}
.farm-banner-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:50px;
}

/* Content */
.farm-banner-tag{
  color:#068d49;
  font-weight:600;
  margin-bottom:12px;
}
.farm-banner-title{
  font-size:48px;
  font-weight:800;
  color:#134e4a;
  margin-bottom:20px;
}
.farm-banner-text{
  font-size:17px;
  color:#475569;
  line-height:25px;
  margin-bottom:30px;
}
.farm-banner-btn{
  display:inline-block;
  padding:14px 36px;
  background:#068d49;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.4s ease;
}
.farm-banner-btn:hover{
  background:#f0a729;
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* Image */
.farm-banner-img{
  position:relative;
}
.farm-banner-img img{
  width:100%;
  border-radius:30px;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .farm-banner-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }
}
@media(max-width:576px){
  .farm-banner-title{
    font-size:34px;
  }
}


/* ----------about section------------- */
  .index-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- About Section & New Sub-sections --- */
        .index-about-section {
            padding: 100px 0;
        }

        .index-about-main {
            display: flex;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .index-about-image {
            flex: 1;
            min-width: 350px;
            height: 500px;
            border-radius: 30px 100px 30px 30px; /* Stylized organic corners */
            overflow: hidden;
            box-shadow: 20px 20px 0px #f0a729;
        }

        .index-about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .index-about-content {
            flex: 1;
            min-width: 300px;
        }
        .index-about-content p{
          text-align: justify;
          line-height: 25px;
        }

        .index-about-content h2 {
            font-size: 2.8rem;
            color: #1b200d;
            margin-bottom: 25px;
        }

        /* --- New Stats Bar Section --- */
        .index-stats-bar {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            background: #068d49; /* Earthy Green */
            padding: 40px;
            border-radius: 20px;
            color: #fff;
            text-align: center;
            margin-top: 40px;
        }

        .index-stat-item h4 {
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        .index-stat-item p {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
            color:#fff ;
        }

        /* --- New Philosophy Text Block --- */
        .philosophy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 80px;
            padding: 60px;
            background-color: #f0a72915;
            border-radius: 20px;
        }

        .philosophy-item h3 {
            color: #f0a729;
            margin-bottom: 15px;
        }
        .philosophy-item p{
          line-height: 25px;
        }

        @media (max-width: 768px) {
            .index-about-main { flex-direction: column; }
            .stats-bar { grid-template-columns: 1fr; }
            .philosophy-grid { grid-template-columns: 1fr; padding: 30px; }
            .about-image { width: 100%; height: 350px; box-shadow: none; }
        }




        /* --- 3. SERVICES SECTION --- */
        .index-services-section { padding: 80px 0; background: #f0a729; }
        .index-services-header { text-align: center; margin-bottom: 50px; }
        .index-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .index-service-card { padding: 40px; border: 1px white; border-radius: 20px; transition: 0.3s; background-color: #fffffffd; }
        .index-service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .index-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
        .index-service-container{ padding: 10px 70px; }
       .index-service-card h3{margin-bottom: 15px;}
       .index-service-card p{line-height: 25px;}
        /* --- 4. HARVEST GALLERY SECTION --- */
        .harvest-container{
            padding:10px 70px;
            background-color: #f0a72915;
        }
        .harvest-section { padding: 70px 0;  }
        .harvest-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
        .harvest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
        .harvest-item { position: relative; height: 350px; border-radius: 15px; overflow: hidden; }
        .harvest-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .harvest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: 0.3s; }
        .harvest-overlay span{ color: #ccd1ce !important;}
        .harvest-item:hover img { transform: scale(1.1); }
        .harvest-item:hover .harvest-overlay { opacity: 1; }
        .harvest-overlay h4 { color: white; }
        .harvest-overlay span { color: var(--tan); font-size: 0.8rem; }

        /* --- 5. INTERACTIVE CALENDAR SECTION (The "Worked" part) --- */
        #calendar-display {
            display: none; /* Hidden by default */
            padding: 60px 0;
            background: #fff;
            border: 2px solid var(--tan);
            border-radius: 20px;
            margin-bottom: 100px;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .calendar-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .calendar-table th {
            background: var(--moss);
            color: var(--white);
            padding: 15px;
            text-align: left;
        }

        .calendar-table td {
            padding: 15px;
            border-bottom: 1px solid var(--tan);
        }

        .calendar-table tr:hover { background-color: var(--cream); }

        .status-peak { color: #166534; font-weight: bold; background: #dcfce7; padding: 4px 10px; border-radius: 10px; font-size: 0.8rem; }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .index-about-main, .philosophy-grid { flex-direction: column; grid-template-columns: 1fr; }
            h2 { font-size: 2rem; }
            .harvest-header { flex-direction: column; align-items: flex-start; gap: 20px; }
        }


/* =======================About Page============================= */

/* ===== ABOUT BANNER ===== */
.about-banner{
  height:540px;
  width:100%;
  background:url('../asset/images/banner.jpg')
  center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Overlay */
.about-banner::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

/* Content */
.about-banner-content{
  position:relative;
  color:#fff ;
  text-align:center;
}
.about-banner-title{
  font-size:48px;
  font-weight:800;
  letter-spacing:1px;
  color: white;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .about-banner{
    height:260px;
  }
  .about-banner-title{
    font-size:34px;
  }
}
@media(max-width:480px){
  .about-banner-title{
    font-size:28px;
  }
}

/* -------------- 1st section--------------- */

  /* ================= ABOUT SECTION ================= */
.fmx-about{
  max-width:1200px;
  margin:auto;
  padding:100px 20px 70px;
}
.fmx-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.fmx-images{
  display:flex;
  gap:30px;
}
.fmx-img{
  width:50%;
  height:400px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
}
.fmx-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}
.fmx-img:hover img{transform:scale(1.08);}
.fmx-img.one{margin-top:60px;}

.fmx-tag{
  font-size:13px;
  font-weight:700;
  letter-spacing:2px;
  color:#f0a729;
  text-transform:uppercase;
}
.fmx-title{
  font-size:36px;
  font-weight:800;
  margin:18px 0;

}
.fmx-title span{
  color:#f0a729;
  position:relative;
}
.fmx-title span::after{
  content:'';
  position:absolute;
  left:0;
  bottom:8px;
  width:100%;
  height:4px;
  background:#f1860b;
  opacity:.3;
  z-index:-1;
  margin-bottom: -10px;
}
.fmx-text{
  font-size:17px;
  color:#0c0c0c;
  max-width:500px;
  margin-bottom:25px;
  line-height: 25px;
}
.fmx-list li{
  list-style:none;
  margin-bottom:12px;
  font-weight:300;
  display:flex;
  gap:12px;
  font-size:17px;
}
.fmx-list span{color:#d97706}

/* ================= LOGO CAROUSEL ================= */
.fmx-brands{
  margin-top:80px;
  border-top:1px solid #e5e7eb;
  padding-top:35px;
}
.fmx-brand-title{
  text-align:center;
  font-size:20px;
  letter-spacing:1px;
  margin-bottom:30px;
  color: #f0a729;
}

.fmx-carousel{
  overflow:hidden;
  position:relative;
}
.fmx-carousel-track{
  display:flex;
  width:calc(200px * 10);
  animation:logoScroll 30s linear infinite;
}
.fmx-carousel:hover .fmx-carousel-track{
  animation-play-state:paused;
}

.fmx-carousel-item{
  width:200px;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:0 25px;
}
.fmx-carousel-item img{
  max-height:45px;
  filter:grayscale(100%);
  opacity:.8;
  transition:.3s;
}
.fmx-carousel-item img:hover{
  filter:none;
  opacity:1;
}

@keyframes logoScroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .fmx-grid{grid-template-columns:1fr;}
}
@media(max-width:576px){
  .fmx-images{flex-direction:column;}
  .fmx-img{width:100%;margin-top:0!important;}
  .fmx-title{font-size:34px;}
}
/* ----------2nd section------------- */

/* ================= SECTION ================= */
.projects-section{
  /* max-width:1200px; */
  margin:auto;
  padding:90px 90px;
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:60px;
  background-color: #f0a729;
}

/* ================= LEFT ================= */
.projects-left{
  animation:slideLeft 1s ease;
}

.projects-left small{
  color:black;
  letter-spacing:2px;
  font-size:13px;
}

.projects-left h2{
  margin-top:18px;
  font-size:42px;
  color:#068d49;
  line-height:1.2;
}

.projects-left span{
  color:#068d49;
  /* text-decoration:underline; */
}

/* ================= STATS ================= */
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-top:55px;
}

.stat{
  border-top:1px solid #080808;
  padding-top:20px;
  animation:fadeUp .8s ease;
}

.stat h3{
  font-size:30px;
}

.stat p{
  font-size:12px;
  color:#666;
  margin-top:6px;
}

/* ================= RIGHT GRID ================= */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:180px;
  gap:20px;
  animation:fadeUp 1s ease;
}

.project-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
}

.project-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

.project-card:hover img{
  transform:scale(1.12);
}

.project-card.tall{
  grid-row:span 2;
}

/* ================= CIRCLE ANIMATION ================= */
.circle-wrapper{
  position:relative;
  width:160px;
  height:160px;
  border-radius:50%;
  background:#068d49 ;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
}

.circle-text{
  position:absolute;
  width:100%;
  height:100%;
  animation:rotateText 12s linear infinite;
}

.circle-wrapper:hover .circle-text{
  animation-play-state:paused;
}

.circle-text span{
  position:absolute;
  left:50%;
  top:0;
  transform-origin:0 80px;
  color:#fff;
  font-size:11px;
  letter-spacing:2px;
}

.circle-center{
  width:65px;
  height:65px;
  background:var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  z-index:2;
  transition:.4s;
}

.circle-wrapper:hover .circle-center{
  transform:rotate(45deg) scale(1.05);
}

/* ================= ANIMATIONS ================= */
@keyframes rotateText{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@keyframes slideLeft{
  from{opacity:0; transform:translateX(-60px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes fadeUp{
  from{opacity:0; transform:translateY(60px);}
  to{opacity:1; transform:translateY(0);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){
  .projects-section{
    grid-template-columns:1fr;
  }

  .projects-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .stats{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .projects-grid{
    grid-template-columns:1fr;
  }

  .projects-left h2{
    font-size:32px;
  }

  .circle-wrapper{
    width:130px;
    height:130px;
  }

  .circle-center{
    width:55px;
    height:55px;
  }

  .circle-text span{
    transform-origin:0 65px;
  }
}

/* -----------form section------------ */
/* SECTION */
.contact-section{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
  display:flex;
  gap:60px;
  align-items:center;
}

/* LEFT */
.contact-left{
  flex:1;
  animation:fadeLeft 1s ease;
}

.contact-left small{
  color:#f0a729;
  letter-spacing:2px;
  font-size:13px;
}

.contact-left h2{
  margin:15px 0 40px;
  font-size:40px;
  color:var(--green);
  line-height:1.2;
}

.contact-left span{
  color:#f0a729;
  /* text-decoration:underline; */
}

/* INFO BOX */
.info{
  display:flex;
  gap:20px;
  margin-bottom:30px;
}

.info-icon{
  width:55px;
  height:55px;
  border-radius:50%;
  background:#f0a729;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  flex-shrink:0;
}

.info h4{
  font-size:15px;
  color:#f0a729;
}

.info p{
  font-size:16px;
  color:#000;
  margin-top:5px;
}

/* RIGHT FORM */
.contact-form{
  flex:1.1;
  background:#c2903386;
  padding:40px;
  border-radius:22px;
  animation:fadeRight 1s ease;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:15px 18px;
  border:none;
  border-radius:30px;
  outline:none;
  font-size:14px;
}

.contact-form textarea{
  grid-column:1 / -1;
  resize:none;
  height:120px;
  border-radius:18px;
}

.contact-form button{
  margin-top:25px;
  padding:14px 35px;
  border:none;
  background:#f0a729;
  color:#fff;
  border-radius:30px;
  font-size:14px;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  background:#c28a2e;
}

/* ANIMATIONS */
@keyframes fadeLeft{
  from{opacity:0; transform:translateX(-50px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes fadeRight{
  from{opacity:0; transform:translateX(50px);}
  to{opacity:1; transform:translateX(0);}
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-section{
    flex-direction:column;
  }

  .contact-left h2{
    font-size:32px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }
}

/* ----------about section----------- */

/* ===== TEAM SECTION ===== */
.team-wrap{
  /* max-width:1200px; */
  margin:auto;
  padding:90px 90px;
  text-align:center;
  background-color: rgba(243, 242, 240, 0.562);
}
.team-tag{
  color:#84cc16;
  font-weight:600;
  margin-bottom:10px;
}
.team-title{
  font-size:42px;
  font-weight:800;
  margin-bottom:60px;
  color:#134e4a;
}

/* Team Grid */
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* Card */
.team-card{
  transition:.4s ease;
}
.team-img{
  width:220px;
  height:220px;
  margin:0 auto 20px;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 20px 35px rgba(0,0,0,.15);
}
.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}
.team-card:hover img{
  transform:scale(1.08);
}

.team-name{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
}
.team-role{
  font-size:14px;
  color:#f59e0b;
  font-weight:600;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .team-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .team-title{
    font-size:32px;
  }
  .team-grid{
    grid-template-columns:1fr;
  }
  .team-img{
    width:200px;
    height:200px;
  }
}



/* =======================Service Page====================== */

/* =====1 st SERVICES SECTION ===== */
.farm-services{
  padding:100px 20px;
  background:linear-gradient(180deg,#f0fdf4,#ffffff);
}
.farm-services-container{
  max-width:1200px;
  margin:auto;
}

/* Header */
.farm-services-header{
  text-align:center;
  margin-bottom:70px;
}
.farm-services-header span{
  color:#16a34a;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:14px;
}
.farm-services-header h2{
  font-size:44px;
  font-weight:800;
  margin:14px 0;
}
.farm-services-header p{
  max-width:620px;
  margin:auto;
  color:#6b7280;
  font-size:16px;
  line-height: 25px;
}

/* Grid */
.farm-services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* Card */
.farm-service-card{
  position:relative;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  padding:45px 30px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  transition:.45s ease;
  overflow:hidden;
}
.farm-service-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  opacity:0;
  transition:.45s ease;
  z-index:-1;
}
.farm-service-card:hover::before{
  opacity:1;
}
.farm-service-card:hover{
  transform:translateY(-15px);
  box-shadow:0 30px 70px rgba(34,197,94,.35);
  color:#fff;
}

/* Icon */
.farm-service-icon{
  width:75px;
  height:75px;
  margin:0 auto 25px;
  border-radius:50%;
  background:#dcfce7;
  color:#16a34a;
  font-size:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.45s ease;
}
.farm-service-card:hover .farm-service-icon{
  background:#ffffff;
  color:#16a34a;
  transform:rotate(10deg) scale(1.15);
}

/* Text */
.farm-service-card h4{
  font-size:21px;
  font-weight:700;
  margin-bottom:14px;
  transition:.3s;
}
.farm-service-card p{
  font-size:15px;
  color:#6b7280;
  transition:.3s;
  line-height: 25px;
}
.farm-service-card:hover p{
  color:#ecfdf5;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .farm-services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:576px){
  .farm-services-header h2{
    font-size:32px;
  }
  .farm-services-grid{
    grid-template-columns:1fr;
  }
}

/* -----------why choose-------------- */
/* ===== SECTION ===== */
.farm-why{
  padding:110px 20px;
  background:#f0a729;
}
.farm-why-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* IMAGE */
.farm-why-img{
  position:relative;
  animation:float 6s ease-in-out infinite;
}
.farm-why-img img{
  width:100%;
  height: 650px;
  border-radius:26px;
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* FLOAT ANIMATION */
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-18px); }
}

/* BADGE */
.farm-why-badge{
  position:absolute;
  bottom:-25px;
  left:25px;
  background:#16a34a;
  color:#fff;
  padding:16px 22px;
  border-radius:18px;
  font-weight:700;
  box-shadow:0 15px 35px rgba(22,163,74,.4);
  animation:pulse 2.5s infinite;
}

/* BADGE PULSE */
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(22,163,74,.6); }
  70%{ box-shadow:0 0 0 18px rgba(22,163,74,0); }
  100%{ box-shadow:0 0 0 0 rgba(22,163,74,0); }
}

/* CONTENT */
.farm-why-tag{
  color:#16a34a;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:12px;
}
.farm-why h2{
  font-size:42px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:18px;
}
.farm-why p{
  font-size:16px;
  color:#1f1f20;
  max-width:520px;
  margin-bottom:35px;
  line-height: 25px;
}

/* FEATURES */
.farm-why-list{
  display:grid;
  gap:22px;
}
.farm-why-item{
  display:flex;
  gap:18px;
  background:#fff;
  padding:22px;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transition:.4s ease;
}
.farm-why-item:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 30px 65px rgba(22,163,74,.35);
}

/* ICON */
.farm-why-icon{
  min-width:54px;
  height:54px;
  border-radius:50%;
  background:#dcfce7;
  color:#16a34a;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.4s ease;
}
.farm-why-item:hover .farm-why-icon{
  background:#16a34a;
  color:#fff;
  transform:rotate(12deg) scale(1.15);
}

/* TEXT */
.farm-why-item h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
}
.farm-why-item p{
  font-size:14px;
  color:#6b7280;
  
}

/* RESPONSIVE */
@media(max-width:992px){
  .farm-why-wrap{
    grid-template-columns:1fr;
  }
  .farm-why-img{
    order:2;
  }
}
@media(max-width:576px){
  .farm-why h2{
    font-size:32px;
  }
  .farm-why-badge{
    font-size:14px;
  }
}

/* ------------our promise---------- */
/* ===== SECTION ===== */
.farm-feature{
  padding:120px 20px;
  background:linear-gradient(135deg,#ecfdf5,#ffffff);
}
.farm-feature-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:80px;
  align-items:center;
}

/* LEFT CONTENT */
.farm-feature-tag{
  color:#16a34a;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:14px;
}
.farm-feature h2{
  font-size:44px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:22px;
}
.farm-feature p{
  font-size:16px;
  color:#6b7280;
  max-width:520px;
  margin-bottom:40px;
  line-height: 25px;
}

/* FEATURE LIST */
.farm-feature-list{
  display:grid;
  gap:18px;
}
.farm-feature-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
  background:#ffffff;
  padding:22px 26px;
  border-radius:18px;
  border-left:6px solid #16a34a;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s ease;
}
.farm-feature-item:hover{
  transform:translateX(12px);
  box-shadow:0 25px 60px rgba(22,163,74,.35);
}

/* ICON */
.farm-feature-icon{
  font-size:28px;
  color:#16a34a;
  transition:.4s ease;
}
.farm-feature-item:hover .farm-feature-icon{
  transform:scale(1.2) rotate(8deg);
}

/* TEXT */
.farm-feature-item h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
}
.farm-feature-item p{
  font-size:14px;
  color:#6b7280;
}

/* RIGHT IMAGE */
.farm-feature-img{
  position:relative;
}
.farm-feature-img img{
  width:100%;
  height: 700px;
  border-radius:28px;
  box-shadow:0 35px 80px rgba(0,0,0,.18);
}
.farm-feature-badge{
  position:absolute;
  top:25px;
  right:25px;
  background:#16a34a;
  color:#fff;
  padding:14px 20px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 18px 40px rgba(22,163,74,.4);
  animation:float 5s ease-in-out infinite;
}

/* FLOAT */
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .farm-feature-wrap{
    grid-template-columns:1fr;
  }
}
@media(max-width:576px){
  .farm-feature h2{
    font-size:32px;
  }
  .farm-feature-item{
    flex-direction:column;
  }
}


/* =====================Stock Page=========================== */

/* ===== LAYOUT ===== */
.layout {
  display: flex;
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
  padding: 0 20px;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 250px;
    background:#fff;
    border:1px solid #e0e0e0;
    border-radius:8px;
    display:flex;
    flex-direction:column;
    padding:20px;
    position: sticky;
    top: 20px; /* sticks to top after scrolling */
    height: fit-content;
}
.sidebar h2 { color:#068d49; margin-bottom:20px; text-align:left; }
.sidebar ul { list-style:none; flex-grow:1; }
.sidebar ul li {
    padding:12px 15px;
    cursor:pointer;
    border-radius:8px;
    margin-bottom:5px;
    transition:0.3s;
}
.sidebar ul li:hover, .sidebar ul li.active { background:#eafaf1; color:#f0a729; font-weight:bold; }
.sidebar .home-btn {
    margin-top:auto;
    padding:12px;
    text-align:center;
    background:#068d49;
    color:white;
    border-radius:8px;
    cursor:pointer;
    transition:0.3s;
}
.sidebar .home-btn:hover { background:#219150; }

/* ===== MAIN CONTENT ===== */
.main-content {
    flex:1;
}

.main-content h1{
  margin-bottom: 20px;
  color:#f0a729;
  font-size: 25px;
}

/* PRODUCT GRID */
.product-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:40px;
}
.product-card {
    background:white;
    border:1px solid #e0e0e0;
    border-radius:12px;
    padding:15px;
    display:flex;
    flex-direction:column;
    transition:0.3s;
}
.product-card:hover {
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.05);
}
.product-card img {
    width:100%; height:150px; object-fit:cover; border-radius:8px; margin-bottom:10px;
}
.product-name { font-weight:bold; font-size:1.1rem; margin-bottom:5px; }
.price { color:#f0a729; font-weight:800; margin-bottom:10px; }
.btn-add {
    background:#068d49; color:white; border:none; padding:10px; border-radius:6px;
    cursor:pointer; font-weight:bold;
}
.btn-add:hover { background:#219150; }

/* CART SECTION */
.cart-section {
    background:white;
    padding:20px;
    border-radius:12px;
    border:1px solid #e0e0e0;
    margin-bottom:50px;
}
.cart-section h3 { margin-bottom:15px; color:#068d49; }
.cart-item {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid #eee;
}
.cart-item img { width:50px; height:50px; object-fit:cover; border-radius:5px; margin-right:10px; }
.cart-item span { font-weight:bold; }
#totalAmount { font-size:1.2rem; color:#f0a729; font-weight:bold; }
.order-btn {
    width:100%;
    padding:12px;
    margin-top:15px;
    background:#068d49;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}
.order-btn:hover { background:#219150; }

/* RESPONSIVE */
@media(max-width:1280px){.product-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:768px){
    .layout { flex-direction: column; }
    .sidebar { width: 100%; position: static; top:auto; margin-bottom:20px; }
    .main-content { margin-left:0; }
    .product-grid { grid-template-columns:1fr; }
}
@media(max-width:480px){
    .about-banner{height:250px;}
    .about-banner-title{font-size:28px;}
}


/* =========================Blog Page================================= */

/* ================= BLOG SECTION ================= */
.blog-section{
  padding:80px 20px;
}

.blog-container-main{
  max-width:1200px;
  margin:auto;
}

.blog-title{
  text-align:center;
  font-size:2.4rem;
  font-weight:700;
  margin-bottom:60px;
  color:#14532d;
}

/* Grid */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Card */
.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  transform:translateY(40px);
  opacity:0;
  transition:all .7s ease;
}

.blog-card.show{
  transform:translateY(0);
  opacity:1;
}

.blog-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .5s ease;
}

.blog-card:hover img{
  transform:scale(1.1);
}

/* Content */
.blog-content{
  padding:24px;
}

.blog-tag{
  display:inline-block;
  background:#dcfce7;
  color:#15803d;
  font-size:12px;
  padding:4px 14px;
  border-radius:20px;
  font-weight:600;
  margin-bottom:10px;
}

.blog-content h3{
  font-size:1.3rem;
  margin:12px 0;
}

.blog-content p{
  font-size:.95rem;
  color:#4b5563;
  line-height:1.7;
  margin-bottom:20px;
}

.blog-content a{
  text-decoration:none;
  font-weight:600;
  color:#166534;
  transition:.3s;
}

.blog-content a:hover{
  color:#065f46;
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .blog-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .blog-grid{
    grid-template-columns:1fr;
  }

  .blog-title{
    font-size:1.9rem;
  }
}


/* ==========================Blog Inner Page================================= */

/* ================= LAYOUT ================= */
.blog-container{
  max-width:1200px;
  margin:90px auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:2.5fr 1fr;
  gap:50px;
}

/* ================= ARTICLE ================= */
.blog-article{
  background:#fff;
  padding:50px;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* Meta */
.blog-meta{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
  font-size:.9rem;
  color:#6b7280;
  margin-bottom:30px;
}

/* Content */
.blog-article h2{
  margin:45px 0 15px;
  color:#14532d;
}

.blog-article p{
  margin-bottom:22px;
  line-height:1.9;
  opacity:0;
  transform:translateY(30px);
  transition:.7s ease;
}

.blog-article p.show{
  opacity:1;
  transform:translateY(0);
}

/* Quote */
.blog-quote{
  background:#ecfdf5;
  border-left:6px solid #22c55e;
  padding:25px 30px;
  margin:45px 0;
  font-size:1.05rem;
  color:#065f46;
  border-radius:12px;
}

/* Tags */
.blog-tags{
  margin-top:40px;
}
.blog-tags span{
  display:inline-block;
  background:#dcfce7;
  color:#166534;
  padding:6px 18px;
  border-radius:999px;
  margin:6px;
  font-size:.85rem;
  font-weight:600;
}

/* ================= SIDEBAR ================= */
.blog-sidebar{
  position:sticky;
  top:120px;
}

/* Author Card */
.author-card{
  background:#fff;
  padding:30px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  text-align:center;
  margin-bottom:40px;
}

.author-card img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
}

.author-card h4{
  margin-bottom:6px;
}
.author-card p{
  font-size:.85rem;
  color:#6b7280;
}

/* Related Posts */
.related-box{
  background:#fff;
  padding:30px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.related-box h3{
  margin-bottom:20px;
  color:#14532d;
}

.related-item{
  display:flex;
  gap:15px;
  margin-bottom:18px;
  cursor:pointer;
}

.related-item img{
  width:70px;
  height:70px;
  object-fit:cover;
  border-radius:10px;
}

.related-item h5{
  font-size:.95rem;
}

/* ================= ANIMATION ================= */
@keyframes fadeDown{
  from{opacity:0;transform:translateY(-30px);}
  to{opacity:1;transform:translateY(0);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px){
  .blog-container{
    grid-template-columns:1fr;
  }
  .blog-sidebar{
    position:relative;
    top:0;
  }
}

@media(max-width:600px){
  .blog-hero{
    height:280px;
  }
  .blog-hero h1{
    font-size:1.9rem;
  }
  .blog-article{
    padding:30px 22px;
  }
}

/* ==========================Contact page======================== */

   .real-contact-section {
            padding: 80px 10px;
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: auto;
        }

        /* --- Left Side: Form --- */
        .contact-header h2 {
            font-size: 24px;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
            color: #068d49;
        }

        .contact-header p {
            color: #777;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .form-grid input, .full-width input, textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #e1e1e1;
            border-radius: 4px;
            font-size: 12px;
            box-sizing: border-box;
            outline: none;
            transition: border-color 0.3s;
        }

        .full-width { margin-top: 15px; }

        textarea { height: 180px; resize: none; }

        input:focus, textarea:focus { border-color: #068d49; }

        /* Button Animation */
        .submit-btn {
            margin-top: 25px;
            background: #068d49;
            color: #fff;
            padding: 15px 40px;
            border: none;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: background 0.3s;
        }

        .submit-btn:hover { background: #f0a729; }

        /* --- Right Side: Info --- */
        .info-col { font-size: 14px; line-height: 1.8; color: #333; margin-top: 30px; }
        .info-col p { margin-bottom: 20px; }
        .info-col strong { color: #000; }

        /* Social Icons & Hover */
        /* Social Icons Container */
.social-row {
    display: flex;
    gap: 15px;
}

/* Social Icon Style */
.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Circular */
    overflow: hidden;
    background: #f0a729; /* fallback background */
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon img {
    width: 50%; /* scale icon */
    height: 50%;
    object-fit: contain;
}

/* Hover effect */
.social-icon:hover {
    transform: translateY(-5px);
    background: #f0a729;
}

        /* --- Responsive Logic --- */
        @media (max-width: 992px) {
            .real-contact-section { grid-template-columns: 1fr; gap: 40px; padding: 50px 5%; }
        }

        @media (max-width: 480px) {
            .form-grid { grid-template-columns: 1fr; }
        }

        /* --------------map section --------------*/

        /* Map Section Styling */
    .map-section {
        width: 100%;
        overflow: hidden;
        line-height: 0; /* Removes white space below iframe */
        margin-bottom: 70px;
    }

    .map-container {
        width: 100%;
        height: 450px;
        position: relative;
    }

    /* Optional: Grayscale filter for a modern look */
    .map-container iframe {
        filter: grayscale(10%) contrast(1.1);
        transition: filter 0.5s ease;
    }

    .map-container iframe:hover {
        filter: grayscale(0%);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .map-container {
            height: 350px;
        }
    }
    

    /* =========================Login Page============================== */
    /* ================== LOGIN CARD ================== */
.login-body{
  font-family: 'Georgia', serif !important;

  min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: #f7f7f7; 
}    
.login-card {
  display: flex;
  width: 850px;
  height: 550px;
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
  
}

/* Left Side */
.visual-panel {
  flex: 1;
  background: #068d49;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  color: white;
}

.visual-panel h2 { font-size: 32px; font-weight: 300; }
.visual-panel h1 { font-size: 52px; font-weight: 800; }

/* Right Side */
.form-panel {
  flex: 1.2;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================== LOGO ================== */
.logo-login {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  text-decoration: none;
  margin-top: 40px;
}

.logo-login img {
  width: 50px;
}

.logo-login h4 {
  font-size: 22px;
  font-weight: 700;
  color: #2e1a47;
}

.logo-login span {
  color: #158054;
}

/* Headings */
.form-panel h2 {
  font-size: 32px;
  color: #f0a729 ;
  margin-bottom: 35px;
}

/* Form */
.field-group { margin-bottom: 25px; width: 100%; }

.field-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #161515;
}

.field-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
}

.field-group input:focus {
  border-color: #282628;
  outline: none;
}

.forgot-password {
  display: block;
  text-align: right;
  font-size: 11px;
  color: #068d49;
  text-decoration: none;
  margin-top: 6px;
}

.login-submit {
  width: 100%;
  padding: 14px;
  background: #f0a729;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 25px;
}

.login-submit:hover {
  background: #068d49;
}

.signup-footer {
  margin-top: 30px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

.signup-footer a {
  color: #068d49;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 800px) {
  .login-card { flex-direction: column; width: 90%; height: auto; }
}

/* =================Register Page====================== */

/* Body */
.register-page { 
  font-family: 'Georgia', serif !important;
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background-color: #f7f7f7; 
}

/* Card */
.login-card {
  display: flex;
  width: 850px;
  height: 600px;
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
 
}

/* Left Panel */
.visual-panel {
  flex: 1;
  background: #068d49;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  color: white;
}

.visual-panel h2 {
  font-size: 32px;
  font-weight: 300;
}

.visual-panel h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

/* Right Panel */
.form-panel {
  flex: 1.2;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
}

/* Logo */
.register-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  text-decoration: none;
}

.register-logo img {
  width: 50px;
}

.register-logo h4 {
  font-size: 22px;
  font-weight: 700;
  color: #2e1a47;
}

.register-logo span {
  color: #158054;
}

/* Headings */
.form-panel h2 {
  font-size: 32px;
  color: #f0a729;
  margin-bottom: 20px;
}

/* Form */
.field-group {
  width: 100%;
  margin-bottom: 15px;
}

.field-group label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
}

.field-group input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
}

.field-group input:focus {
  border-color: #191819;
}

/* Button */
.login-submit {
  width: 100%;
  padding: 14px;
  background: #f0a729;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
}

.login-submit:hover {
  background: #068d49;
}

/* Footer */
.signup-footer {
  margin-top: 25px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}

.signup-footer a {
  color: #068d49;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 800px) {
  .login-card {
      flex-direction: column;
      width: 90%;
      height: auto;
      margin: 20px 0;
  }

  .visual-panel {
      padding: 40px 20px;
      text-align: center;
  }

  .form-panel {
      padding: 30px 20px;
  }
}

/* =============================Admin Page=============================== */

/* ===== SIDEBAR ===== */
.admin-sidebar{
  position:fixed;
  left:0;top:0;
  width:260px;height:100vh;
  background:#f0a729;
  padding:24px;
  color:#fff;
}

.admin-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:30px;
  text-decoration:none;
  color:#fff;
  transition:.3s;
}
.admin-logo:hover{
  transform:translateX(4px);
}

.admin-logo img{
  width:42px;
  height:42px;
  border-radius:10px;
}

.admin-logo h3{
  font-size:20px;
  font-weight:700;
  color:black;
}
.admin-logo span{
    color:#068d49;
}

.admin-sidebar a{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:10px;
  text-decoration:none;
  color:#fff;
  margin-bottom:6px;
  opacity:.9;
  transition:.3s;
}

.admin-sidebar a:hover,
.admin-sidebar a.active{
  background:rgba(255,255,255,.2);
  opacity:1;
  transform:translateX(6px);
}

/* ===== MAIN ===== */
.admin-main{
  margin-left:260px;
  min-height:100vh;
}

/* ===== HEADER ===== */
.admin-header{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid #e5e7eb;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 30px;
  z-index:10;
}

.admin-header-left small{color:#6b7280;}

.admin-header-right{
  display:flex;
  align-items:center;
  gap:18px;
}

.admin-search{
  padding:8px 14px;
  border-radius:8px;
  border:1px solid #e5e7eb;
}

.admin-back-btn{
  background:#f0a729 ;
  border:none;
  color:#fff;
  padding:8px 14px;
  border-radius:8px;
  cursor:pointer;
  transition:.3s;
}
.admin-back-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,.15);
}

/* ===== PROFILE ===== */
.admin-profile{
  position:relative;
  cursor:pointer;
}

.admin-profile-box{
  display:flex;
  align-items:center;
  gap:10px;
}

.admin-profile img{
  width:36px;
  height:36px;
  border-radius:50%;
}

.admin-dropdown{
  position:absolute;
  right:0;
  top:48px;
  background:#fff;
  width:180px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  display:none;
}

.admin-dropdown a{
  display:block;
  padding:12px 16px;
  text-decoration:none;
  color:#111827;
  transition:.3s;
}

.admin-dropdown a:hover{
  background:#f3f4f6;
  transform:translateX(4px);
}

/* ===== CONTENT ===== */
.admin-container{padding:30px;}

/* ===== STATS CARDS ===== */
.admin-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-bottom:30px;
}

.admin-card{
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.35s ease;
}

.admin-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 32px rgba(0,0,0,.15);
}

.admin-card h3{font-size:28px;margin:10px 0;}
.trend-up{color:#22c55e;}
.trend-down{color:#ef4444;}

/* ===== SECTIONS ===== */
.admin-sections{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:20px;
  margin-bottom:30px;
}

.admin-section{
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.35s ease;
}

.admin-section:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.admin-row{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid #e5e7eb;
  transition:.3s;
}

.admin-row:hover{
  background:#f9fafb;
  padding-left:6px;
}

.admin-badge{
  padding:4px 12px;
  border-radius:999px;
  font-size:12px;
}

.badge-completed{background:#dcfce7;color:#166534;}
.badge-processing{background:#fef3c7;color:#92400e;}
.badge-active{background:#dcfce7;color:#166534;}
.badge-low{background:#fef3c7;color:#92400e;}

/* ===== GRAPH ===== */
.admin-graph{
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  margin-bottom:30px;
  transition:.3s;
}
.admin-graph:hover{
  transform:translateY(-4px);
}

/* ===== PRODUCT TABLE ===== */
.admin-table-card{
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.admin-table-card h3{
  margin-bottom:15px;
}

.admin-table-card table{
  width:100%;
  border-collapse:collapse;
}

.admin-table-card th,
.admin-table-card td{
  padding:14px 12px;
  border-bottom:1px solid #e5e7eb;
  text-align:left;
  vertical-align:middle;
}

.admin-table-card th{
  font-size:13px;
  text-transform:uppercase;
  color:#6b7280;
  letter-spacing:0.5px;
}

.admin-product{
  display:flex;
  align-items:center;
  gap:12px;
}

.admin-product img{
  width:44px;
  height:44px;
  border-radius:10px;
}

/* Table row hover */
.admin-table-card tbody tr{
  transition:.3s;
}
.admin-table-card tbody tr:hover{
  background:#f9fafb;
  transform:translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .admin-cards{grid-template-columns:repeat(2,1fr);}
  .admin-sections{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .admin-sidebar{position:relative;width:100%;height:auto;}
  .admin-main{margin-left:0;}
  .admin-cards{grid-template-columns:1fr;}
}
/* ====================User Page======================== */

/* SIDEBAR */
.user-sidebar {
  position: fixed; left: 0; top: 0; width: 260px; height: 100vh;
  background: #f0a729;
  color: #fff; padding: 24px; animation: user-slideIn 0.6s ease;
  z-index: 100;
}

/* UPDATED LOGO STYLING */
.user-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 35px; /* Spacing before menu items */
  padding-left: 5px;
}

.user-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px; /* Optional: gives logo a clean look */
}

.user-logo h3 {
  color: #131212;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.user-logo h3 span {
  font-weight: 300; /* Makes "Farm" thinner for a modern look */
  opacity: 0.9;
  color: #068d49;
}

.user-sidebar a {
  display: flex; align-items: center; padding: 12px 14px; border-radius: 10px; margin-bottom: 6px; 
  text-decoration: none; color: #fff; opacity: .9; transition: 0.3s; cursor: pointer;
}
.user-sidebar a.user-active, .user-sidebar a:hover { background: rgba(255, 255, 255, .18); opacity: 1; }
.user-sidebar a .user-icon { margin-right: 12px; font-size: 18px; }

/* MAIN CONTENT */
.user-main { margin-left: 260px; min-height: 100vh; transition: 0.3s; }
.user-header {
  position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between; 
  align-items: center; padding: 18px 30px; background: #fff; border-bottom: 1px solid #e5e7eb;
}
.user-header-left h2 { margin: 0; }
.user-header-left small { color: #6b7280; }
.user-header-right { display: flex; align-items: center; gap: 18px; }
.user-search { padding: 8px 14px; border-radius: 8px; border: 1px solid #e5e7eb; }
.user-back-btn {
  background: #f0a729; border: none; color: #fff; padding: 8px 14px; border-radius: 8px; 
  cursor: pointer; transition: 0.3s;
}
.user-back-btn:hover { background: #f0a729; }

/* PROFILE DROPDOWN */
.user-profile { position: relative; cursor: pointer; }
.user-profile-box { display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.user-profile-box:hover { opacity: 0.8; }
.user-profile img { width: 36px; height: 36px; border-radius: 50%; }
.user-dropdown {
  position: absolute; right: 0; top: 48px; background: #fff; border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,.12); width: 180px; display: none; animation: user-fadeUp 0.3s ease;
}
.user-dropdown a { display: block; padding: 12px 16px; text-decoration: none; color: #111827; }
.user-dropdown a:hover { background: #f3f4f6; }

/* DASHBOARD GRID */
.user-container { padding: 30px; }
.user-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.user-card {
  background: #fff; padding: 20px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,.06);
  animation: user-fadeUp 0.5s ease; transition: 0.3s; cursor: pointer;
}
.user-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,.12); }
.user-card small { color: #6b7280; }
.user-card h3 { margin: 10px 0; font-size: 28px; }

.user-sections { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin-bottom: 40px; }
.user-section { 
  background: #fff; padding: 20px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,.06); 
  animation: user-fadeUp 0.6s ease; transition: 0.3s; 
}
.user-section:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,.1); }
.user-section-header { display: flex; justify-content: space-between; margin-bottom: 15px; font-weight: bold; }

.user-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #e5e7eb; transition: 0.3s; }
.user-row:hover { background: #f9fafb; padding-left: 5px; }

/* BADGES */
.user-badge { padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 500; }
.user-status-active { background: #dcfce7; color: #166534; }
.user-status-processing { background: #fef3c7; color: #92400e; }
.user-status-placed { background: #facc15; color: #92400e; }
.user-status-completed { background: #22c55e; color: #fff; }

/* TABLES */
.user-table-card { 
  background: #fff; padding: 20px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,.06); 
  animation: user-fadeUp 0.6s ease; margin-bottom: 30px; 
}
.user-table { width: 100%; border-collapse: collapse; }
.user-table th, .user-table td { padding: 16px 10px; border-bottom: 1px solid #e5e7eb; text-align: left; }

.user-animate-row { opacity: 0; transform: translateY(20px); animation: user-fadeUpRow 0.5s forwards; animation-delay: var(--delay); }

/* TRACKING STEPS */
.user-track-container { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.user-track-step { flex: 1; position: relative; text-align: center; font-size: 10px; color: #6b7280; }
.user-track-step::before {
  content: ""; position: absolute; top: 8px; left: 0; width: 100%; height: 3px; background: #e5e7eb; z-index: 1;
}
.user-track-step.user-step-active::before { background: #ff6a00; }
.user-track-step span {
  display: block; width: 12px; height: 12px; border-radius: 50%; background: #e5e7eb; 
  margin: 0 auto 4px; position: relative; z-index: 2; transition: 0.3s;
}
.user-track-step.user-step-active span { background: #ff6a00; border: 2px solid #fff; outline: 1px solid #ff6a00; }
.user-track-step:last-child::before { display: none; }

.user-graph { background: #fff; padding: 20px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,.06); animation: user-fadeUp 0.6s ease; }

/* ANIMATIONS */
@keyframes user-slideIn { from { transform: translateX(-100px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes user-fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes user-fadeUpRow { to { opacity: 1; transform: translateY(0); } }

/* RESPONSIVE */
@media(max-width: 1024px) { 
  .user-cards { grid-template-columns: repeat(2, 1fr); }
  .user-sections { grid-template-columns: 1fr; }
}
@media(max-width: 640px) {
  .user-sidebar { width: 100%; height: auto; position: relative; padding: 15px; }
  .user-main { margin-left: 0; }
  .user-cards { grid-template-columns: 1fr; }
  .user-search { display: none; }
}

/* ===================404 Error Page========================== */

.error-body{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background: #f0a729 ;
  overflow:hidden;
}

.error-container{
  text-align:center;
  animation:fadeIn 1s ease forwards;
}

h1{
  font-size:clamp(6rem, 15vw, 12rem);
  color:#fff;
  /* animation: bounce 1.5s infinite; */
}

h2{
  font-size:1.8rem;
  color:#fff;
  margin-bottom:25px;
}

p{
  color:#f0f0f0;
  font-size:1rem;
  margin-bottom:30px;
}

.error-button{
  padding:12px 35px;
  background:#fff;
  color:#f0a729 ;
  font-weight:600;
  border-radius:30px;
  text-decoration:none;
  display:inline-block;
  transition:all 0.3s ease;
}

.button:hover{
  background:#f0a729;
  color:#fff;
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* Floating shapes */
.shape{
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  animation: float 6s ease-in-out infinite;
}

.shape1{
  width:100px;
  height:100px;
  top:10%;
  left:5%;
  animation-delay:0s;
}

.shape2{
  width:150px;
  height:150px;
  bottom:15%;
  right:10%;
  animation-delay:2s;
}

.shape3{
  width:80px;
  height:80px;
  top:50%;
  left:80%;
  animation-delay:4s;
}

/* Animations */
@keyframes bounce{
  0%,100%{ transform: translateY(0);}
  50%{ transform: translateY(-25px);}
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes float{
  0%{ transform: translateY(0) translateX(0);}
  50%{ transform: translateY(-20px) translateX(15px);}
  100%{ transform: translateY(0) translateX(0);}
}

/* Responsive */
@media(max-width:600px){
  h1{
      font-size:clamp(4rem, 20vw, 8rem);
  }
  h2{
      font-size:1.4rem;
  }
  p{
      font-size:0.9rem;
  }
}


/* =====================Coming Soon Page======================== */

.coming-soon{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background: #f0a729;
  overflow:hidden;
}

/* CONTAINER */
.soon-container{
  text-align:center;
  animation:fadeIn 1s ease forwards;
}

h1{
  font-size:clamp(4rem, 15vw, 8rem);
  color:#151515;
  margin-bottom:15px;
  /* animation:bounce 1.5s infinite; */
}

h2{
  font-size:1.8rem;
  color:#333;
  margin-bottom:20px;
}

p{
  color:#555;
  font-size:1rem;
  margin-bottom:30px;
}

/* EMAIL SUBSCRIBE */
.soon-subscribe input{
  padding:12px 15px;
  border-radius:25px;
  border:1px solid #ccc;
  outline:none;
  font-size:0.95rem;
  width:220px;
  margin-right:10px;
  transition:0.3s;
}

.soon-subscribe input:focus{
  border-color:#f0a729;
}

.soon-subscribe button{
  padding:12px 25px;
  border:none;
  border-radius:25px;
  background:#1b1b1b;
  color:#fff;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.soon-subscribe button:hover{
  background:#0d0d0d;
}

/* Floating shapes */
.shape{
  position:absolute;
  border-radius:50%;
  background:rgba(74,144,226,0.15);
  animation: float 6s ease-in-out infinite;
}

.shape1{
  width:120px;
  height:120px;
  top:10%;
  left:5%;
  animation-delay:0s;
}

.shape2{
  width:200px;
  height:200px;
  bottom:15%;
  right:10%;
  animation-delay:2s;
}

.shape3{
  width:80px;
  height:80px;
  top:50%;
  left:80%;
  animation-delay:4s;
}

/* Animations */
@keyframes bounce{
  0%,100%{ transform: translateY(0);}
  50%{ transform: translateY(-20px);}
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes float{
  0%{ transform: translateY(0) translateX(0);}
  50%{ transform: translateY(-20px) translateX(15px);}
  100%{ transform: translateY(0) translateX(0);}
}

/* Responsive */
@media(max-width:600px){
  h1{
      font-size:clamp(3rem, 20vw, 6rem);
  }
  h2{
      font-size:1.4rem;
  }
  .subscribe input{
      width:150px;
      margin-bottom:10px;
  }
  .subscribe button{
      width:100%;
  }
  .subscribe{
      display:flex;
      flex-direction:column;
      align-items:center;
  }
}

/* ==========================Main Footer=============================== */

.main-footer {
  background-color: #f0a729;
  color: #333;
  padding: 80px 8% 60px;

  /* GRID LAYOUT */
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  /* Increase gap between columns */
  gap: 60px; /* <-- Increased gap */
}

/* Footer Columns */
.footer-col h3 {
  color: #161515;
  font-family: 'Georgia', serif;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: normal;
}

/* ================= LOGO COLUMN ================= */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Row 1: Logo + Name */
.logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -10px;
}

.logo-row img {
  width: 50px;
}

.logo-row h4 {
  margin: 0;
  font-size: 18px;
  color: #000;
}

.logo-row h4 span {
  color: #158054;
}

/* Row 2: Paragraph */
.footer-logo p {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  max-width: 280px;
  text-align: justify;
}

/* ================= LISTS ================= */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col ul li:hover {
  color: #fff;
}

/* Social Icons */
.footer-col ul li i {
  width: 25px;
  font-size: 14px;
  color: #333;
}

/* ================= NEWSLETTER ================= */
.newsletter-box {
  display: flex;
  margin-bottom: 25px;
  height: 45px;
  
}

.foot-input {
  background: #f2f2f2;
  border: none;
  padding: 0 15px;
  width: 100%;
  font-size: 13px;
  outline: none;
}

.foot-btn {
  background: #5eb4a5;
  color: #fff;
  border: none ;
  padding: 15px 25px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  cursor: pointer;

}



/* Signup Text */
.signup-text {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Payment */
.payment-methods {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-methods img {
  height: 22px;
  border-radius: 2px;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  background-color: #0a0a0a;
  color: #555;
  text-align: center;
  padding: 40px 0;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .main-footer {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .main-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .logo-row {
    justify-content: center;
  }

  .footer-logo p {
    margin: auto;
  }

  .payment-methods {
    justify-content: center;
  }
}
