﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ===============================
   CURVED TOP BAR (NEW SHAPE)
================================*/
.curved-topbar {
    width: 100%;
    background: linear-gradient(135deg, #00BCD4, #257d18);
    padding: 18px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.brand img {
    height: 45px;      /* adjust size */
    width: auto;
}

.top-icons .social i {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px;
}

.top-icons .social i:hover {
    opacity: 0.7;
    transform: scale(1.1);
}
/* Optional: Colorful hover */
.top-icons a:nth-child(1):hover i { color: #1877f2; } /* Facebook */
.top-icons a:nth-child(2):hover i { color: #e1306c; } /* Instagram */
.top-icons a:nth-child(3):hover i { color: #000; }    /* Twitter X */
.top-icons a:nth-child(4):hover i { color: #ff0000; } /* YouTube */
.top-icons a:nth-child(5):hover i { color: #25d366; } /* WhatsApp */
.top-icons a:nth-child(6):hover i { color: #0a66c2; } /* LinkedIn */
.profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #ffffffaa;
}


/* ========================================
   MOBILE & TABLET RESPONSIVE (MAX 768px)
======================================== */
@media (max-width: 768px) {

    .curved-topbar {
        flex-direction: column;
        text-align: center;
        padding: 0px 20px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        gap: 12px;
    }

    .brand img {
        height: 35px;     /* smaller logo for mobile */
    }

    .top-icons {
        display: flex;
        gap: 12px;
        margin-top: -13px;
    }

    .top-icons .social i {
        font-size: 16px;
        padding: 8px;
    }
}

/* ========================================
   SMALL MOBILE (MAX 480px)
======================================== */
@media (max-width: 480px) {

    .curved-topbar {
        padding: 15px 15px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .brand img {
        height: 30px;  /* small logo size */
    }

    .top-icons {
        gap: 8px;
    }

    .top-icons .social i {
        font-size: 14px;
        padding: 6px;
    }
}










/*nav bar*/
/* ===============================
   ROUND NAV BAR (DESKTOP DESIGN)
================================*/
.round-nav {
    width: fit-content;
    margin: -29px auto;                    /* FIXED — no gap */
    background: #D4AF37;
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    position: relative;
}
.round-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.round-nav ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    transition: all .3s ease;
}

.round-nav ul li:hover {
    background: #257d18;
    color: #fff;
    transform: translateY(-2px);
}

.round-nav ul li.active {
    background: #257d18;
    color: #fff;
}


/* ===============================
   HAMBURGER BUTTON (MOBILE ONLY)
================================*/
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    background: #ffffffdd;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: absolute;
    right: -5px;
    top: -10px;
}


/* ===============================
   MOBILE MENU (HIDE BY DEFAULT)
================================*/
.mobile-hidden {
    display: none;
}


/* ===============================
   RESPONSIVE SECTION
================================*/
@media (max-width: 768px) {

    .hamburger {
        display: block;
        top: -48px;
        margin-right: -145px;
    }
    
    .round-nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        display: none;
        width: 100%;
    }

    .round-nav ul.show {
        display: flex;
    }

    .round-nav ul li {
        padding: 12px 16px;
        justify-content: flex-start;
        font-size: 16px;
        border-radius: 12px;
    }
}
/* Mobile View - Reduce TOP */
@media (max-width: 768px) {
    .round-nav {
        top: 40px; /* Change as you want */
    }
}









/* ===============================
   FULL WIDTH SLIDER (UPDATED)
================================*/
/* FULL WIDTH SLIDER */
.glass-slider {
    width: 100%;
    height: 650px;
    margin-top: -15px !important;          /* FIXED — touches navbar */
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.round-nav {
    margin-bottom: 0;     /* Remove bottom gap */
    padding-bottom: 0;    /* Remove padding gap */
}

.glass-slider {
    margin-top: 10px;        /* Remove top gap */
}
/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .7s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* makes it look perfect */
}

/* CAPTION */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers horizontally & vertically */
    background: #00000070;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    width:500px;
    
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.slider-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.4;
    transition: .3s;
    cursor: pointer;
}

.slider-dots span.active {
    opacity: 1;
    transform: scale(1.3);
}

/* ============================
   RESPONSIVE (TABLET)
============================ */
@media (max-width: 992px) {
    .glass-slider {
        height: 350px;
    }
}

/* ============================
   RESPONSIVE (MOBILE)
============================ */
@media (max-width: 600px) {
    .glass-slider {
        height: 220px;
    }

    .caption {
        font-size: 14px;
        padding: 8px 12px;
        bottom: 15px;
        left: 15px;
    }

    .slider-dots span {
        width: 10px;
        height: 10px;
    }
}
.round-nav {
    position: absolute;
    top: 90px;     /* Adjust overlap height */
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding:10px;
}
.glass-slider {
    position: relative;
    margin-top: 0 !important;
}
/* SLIDER ARROWS */
.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none; /* arrows float over image */
}

.arrow {
    pointer-events: all;
    cursor: pointer;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    background: rgba(0,0,0,0.35);
    padding: 8px 14px;
    border-radius: 50%;
    transition: 0.3s;
}

.arrow:hover {
    background: rgba(0,0,0,0.6);
}

/* Mobile Size */
@media (max-width: 600px) {
    .arrow {
        font-size: 28px;
        padding: 6px 10px;
    }
}



/*About SECTION */
.about-section {
    padding: 80px 10%;
    background: #f4f6ff;
    font-family: "Poppins", sans-serif;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 34px;
    font-weight: 700;
    color: #257d18;
    margin-bottom: 15px;
}

.about-left p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* PRODUCT CARD SECTION */
.product-card-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1 1 30%;
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.12),
        0 4px 10px rgba(0,0,0,0.07);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 35px rgba(0,0,0,0.15),
        0 6px 14px rgba(0,0,0,0.1);
}

/* CARD ICONS */
.card-icon {
    font-size: 36px;
    color: #257d18;
    margin-bottom: 12px;
}

/* RIGHT 4 IMAGE GRID */
.about-right-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.about-right-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.about-right-images img:hover {
    transform: scale(1.05);
}
.product-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #208507;
    margin-bottom: 10px;
    text-transform: capitalize;
}
/* ===============================
   📱 1024px — Medium Screens
================================ */
@media (max-width: 1024px) {

    .about-section {
        padding: 60px 6%;
    }

    .about-left h2 {
        font-size: 30px;
    }

    .product-card {
        flex: 1 1 45%;
    }

    .about-right-images img {
        height: 160px;
    }
}


/* ===============================
   📱 768px — Tablets
================================ */
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-left h2 {
        font-size: 28px;
    }

    .about-left p {
        font-size: 14px;
    }

    .product-card {
        max-width: 260px;
        margin: 0 auto;
    }

    .product-card-title {
        font-size: 20px;
    }

    .card-icon {
        font-size: 32px;
    }

    .about-right-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-right-images img {
        height: 150px;
    }
}


/* ===============================
   📱 576px — Mobile
================================ */
@media (max-width: 576px) {

    .about-section {
        padding: 50px 5%;
    }

    .product-card-row {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 290px;
    }

    .about-right-images img {
        height: 140px;
    }
}


/* ===============================
   📱 450px — Small Mobile
================================ */
@media (max-width: 450px) {

    .about-left h2 {
        font-size: 24px;
    }

    .product-card {
        padding: 18px;
    }

    .product-card-title {
        font-size: 18px;
    }

    .card-icon {
        font-size: 28px;
    }

    .about-right-images {
        gap: 10px;
    }

    .about-right-images img {
        height: 120px;
    }
}
/* ===========================
   📌 BACKGROUND VIDEO SETUP
=========================== */
.about-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* VIDEO LAYER */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Makes video cover full area */
    z-index: -1;             /* Behind content */
    opacity: 0.35;           /* Adjust brightness */
}

/* OPTIONAL DARK OVERLAY */
.about-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15); /* Light shading */
    z-index: -1;
}
@media (max-width: 600px) {
    .caption {
        font-size: 14px;
        padding: 8px 12px;
        bottom: 15px;
        left: 50%;               /* Move to 50% from left */
        transform: translateX(-50%);  /* Center it exactly */
        text-align: center;      /* optional: center text inside */
        width:135px;
    }
}



/* Product */
.product-section-2 {
  padding: 60px 10%;
  background: #f9fafb;
}

.product-section-2 h2 {
  text-align: center;
  font-size: 32px;
  color: #257d18;
  margin-bottom: 50px;
  position: relative;
}

.products-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Product Item */
.product-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 260px;
  transition: 0.4s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Product Image & Badge */
.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  display: block;
  transition: 0.4s;
}

.product-item:hover .product-img img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ffff66;
  color: #000;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.badge.sale { background: #ffff66; }
.badge.new { background: #ffff66; }

/* Product Info */
.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #208507;
}

.product-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Bottom Row */
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #257d18;
}

.btn {
  padding: 8px 16px;
  background: #257d18;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #3748b5;
}

.product-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: 260px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Hover Effect: slide down */
.product-item:hover {
    transform: translateY(15px); /* moves the card down */
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Optional: smooth image zoom inside hover */
.product-item:hover .product-img img {
    transform: scale(1.05);
}

.product-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #1e3a8a, 0 10px 30px rgba(0,0,0,0.2);
  animation: bounce 0.4s;
}

@keyframes bounce {
  0%   { transform: translateY(-8px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(-8px); }
}
/* Tablets & small laptops */
@media (max-width: 1024px) {
  .products-wrapper {
    gap: 20px;
    justify-content: center;
  }
  
  .product-item {
    width: 220px; /* slightly smaller */
  }
}

/* Tablets & large mobiles */
@media (max-width: 768px) {
  .products-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .product-item {
    width: 80%; /* occupy more horizontal space */
    max-width: 300px;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .product-section-2 {
    padding: 40px 5%;
  }

  .product-item {
    width: 100%;
  }

  .product-info h3 {
    font-size: 16px;
  }

  .product-info p {
    font-size: 13px;
  }

  .price {
    font-size: 16px;
  }

  .btn {
    padding: 6px 12px;
    font-size: 14px;
  }
}














/* ===========================
   FOOTER STYLES
=========================== */
.site-footer {
  background-color: #257d18;
  color: #fff;
  padding: 50px 10%;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #d1d5db;
  font-size: 16px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
}
.footer-link {
  color: #d1d5db;
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
/* ===========================
   FOOTER RESPONSIVE
=========================== */
 /* ===========================
   FOOTER RESPONSIVE
=========================== */
@media screen and (max-width: 1024px) {
  .footer-container {
    flex-direction: column; /* stack columns vertically */
    align-items: flex-start;
    gap: 30px; /* space between stacked columns */
  }

  .footer-col {
    width: 50%;
    min-width: unset; /* remove min-width restriction */
    margin-bottom: -90px;
  }

  .social-icons a {
    margin-right: 15px;
    font-size: 18px; /* slightly bigger for touch */
  }
}

@media screen and (max-width: 600px) {
  .site-footer {
    padding: 40px 5%; /* smaller padding on mobile */
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 13px; /* smaller font for mobile */
  }

  .footer-copy {
    font-size: 12px;
  }
}

#navMenu li a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 10px 15px;
}














