    .navbar {
    background-color: #fad624; /* Yellow navbar */
    padding-top: 0.-0rem;
    padding-bottom: 0.3rem;
}
.navbar-brand img {
  max-height: 120px;  /* jitna chhota/bada chahiye */
     /*height: 250px;      */
    width: 300px;  
     
}

/* Mobile view adjustments */
@media (max-width: 767px) {
  .navbar-brand img {
    height: 100px; /* Adjust the height for mobile */
    width: 200px;  /* Adjust the width for mobile */
  }
}

.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo-img {
  width: 280px; /* px me do, percentage mat do */
  height: auto;
}
.tm {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 10px; /* slightly smaller */
  font-weight: normal; /* less bold */
  color: #bfa866; /* subtle gold */
  opacity: 0.15;  /* even fainter */
  text-shadow: none; /* remove extra glow */
  pointer-events: none;
}

/**/

        
        .navbar-nav .nav-link {
            color: #489745ff !important;
            font-weight: 700;
            transition: 0.3s;
        }
        .navbar-nav .nav-link:hover {
            color: #000 !important; /* Gold hover */
        }
        .navbar-toggler {
            border: none;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        /* Gold hamburger icon */
       .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.hero-carousel {
        height: 90vh;
    }
    .hero-carousel .carousel-item {
        height: 90vh;
        background-size: cover;
        background-position: center;
        position: relative;
    }
.carousel-control-prev,
.carousel-control-next {
  top: 50% !important;                /* vertically center */
/* vertically center */
  height: 45px;                      /* size of control */
  width: 45px;
  border-radius: 50%;                /* circle shape */
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid #FFD700;         /* gold border */
 
  display: flex;                    /* center arrow inside */
  align-items: center;
  justify-content: center;
}

/* Make sure specific left/right positioning applies correctly */




    /* Overlay */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(27,94,32,0.55); /* Green transparent overlay */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        padding: 0 20px;
    }

    /* Headings */
    .hero-overlay h1 {
        font-size: 3rem;
        font-weight: 700;
        animation: fadeInDown 1s ease-in-out;
    }
    .hero-overlay p {
        font-size: 1.25rem;
        margin-top: 15px;
        animation: fadeInUp 1.2s ease-in-out;
    }

    /* Buttons */
    .hero-overlay .btn-warning {
        background-color: #FFD700;
        border: none;
        font-weight: 600;
        margin-top: 20px;
        animation: fadeInUp 1.4s ease-in-out;
    }
    .hero-overlay .btn-outline-light {
        border: 2px solid white;
        font-weight: 600;
        margin-top: 20px;
        animation: fadeInUp 1.4s ease-in-out;
    }

    /* Keyframe animations */
    @keyframes fadeInDown {
        from {opacity: 0; transform: translateY(-30px);}
        to {opacity: 1; transform: translateY(0);}
    }
    @keyframes fadeInUp {
        from {opacity: 0; transform: translateY(30px);}
        to {opacity: 1; transform: translateY(0);}
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .hero-overlay h1 {
            font-size: 2rem;
        }
        .hero-overlay p {
            font-size: 1rem;
        }
    }

      

/* about-us css*/
.about-us {
  background-color: #f8f9fa; /* Light background for contrast */
}

.about-us img {
  border: 5px solid white;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.about-us img:hover {
  transform: scale(1.03);
}


/* Product Categories */
/* Product Categories */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.category-card:hover img {
  transform: scale(1.08);
}

/* Overlay with gradient */
.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,94,32,0.85), rgba(27,94,32,0.3));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  padding-bottom: 20px;
  transition: opacity 0.4s ease;
}

.category-card:hover .overlay {
  opacity: 1;
}

/* Text animation */
.category-card .overlay h3 {
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.category-card:hover .overlay h3 {
  transform: translateY(0);
  opacity: 1;
}

/* Why Choose Us Cards */
.choose-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.choose-card .icon {
  font-size: 2.5rem;
  color: #FFD700; /* Gold icon */
}

.choose-card h5 {
  color: #1b5e20;
}

.choose-card p {
  color: #555;
  font-size: 0.95rem;
}
/* Global Reach */
.country-flag {
  background: white;
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color:#000;
}

.country-flag:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.tilt-map {
    display: inline-block;
    transform-style: preserve-3d;
    cursor: grab;
}
.tilt-map img {
    border-radius: 10px;
}


.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
    color: white;
}

/* Icon styling */
.whatsapp-float i {
    line-height: 0;
}


.contact-section input,
.contact-section textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-section button:hover {
  background-color: #145c14 !important;
}

.contact-section .shadow-sm {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .shadow-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.testimonial-card3d {
  perspective: 1000px;
}
.testimonial-card3d .front, 
.testimonial-card3d .back {
  min-height: 230px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.testimonial-card3d .back {
  transform: rotateY(180deg);
}
.testimonial-card3d:hover .front {
  transform: rotateY(180deg);
}
.testimonial-card3d:hover .back {
  transform: rotateY(0deg);
}
.border-4 {
  border-width: 4px !important;
}
   footer {
    margin: 0;
    padding: 30px 0; /* Ya jitna tumhe chahiye */
}
footer p {
    margin: 0;
}

    .footer-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #FFD700;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #FFD700;
  color: #0b2709;
}
footer p {
    margin: 0;
    text-align: center;
    color: #fff; /* ya footer theme ka text color */
    font-size: 0.9rem;
}
 .central-image {
        position: relative;
        width: 300px;
        height: 300px;
    }

    .central-image img {
        width: 100%;
        height: auto;
        border: 5px solid #f8cb02ff;
    }

    .circle-info {
        position: absolute;
        background: #fff;
        border: 2px solid #0b5f20ff;
        border-radius: 50%;
        padding: 15px;
        width: 120px;
        height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        animation: float 4s ease-in-out infinite;
    }

    .circle-info h4 {
        color: #1b5e20;
        font-weight: 700;
        margin: 0;
    }

    .circle-info p {
        font-size: 0.85rem;
        color: #555;
        margin: 0;
    }

    /* Circle Positions */
    .top-left {
        top: -50px;
        left: -50px;
    }

    .top-right {
        top: -50px;
        right: -50px;
    }

    .bottom-left {
        bottom: -50px;
        left: -50px;
    }

    .bottom-right {
        bottom: -50px;
        right: -50px;
    }

    /* Floating Animation */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @media (max-width: 768px) {
        .circle-info {
            width: 90px;
            height: 90px;
            padding: 10px;
        }

        .circle-info h4 {
            font-size: 1rem;
        }

        .circle-info p {
            font-size: 0.7rem;
        }
    }

    .tilt-card {
        border-radius: 12px;
        background: #fff;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .tilt-card:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .tilt-card h4 {
        font-weight: bold;
    }

    .tilt-card p {
        font-size: 0.95rem;
        color: #555;
    }

    /*globe decoration  */

    .info-circles-custom {
        position: relative;
        background: url('asstes/img/pexels-pixabay-533982.jpg') center/cover fixed no-repeat;
        color: #fff;
    }

    .info-circles-custom::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        /* Dark overlay */
    }

    .info-circles-custom .container {
        position: relative;
        z-index: 1;
    }

    .info-circles-custom h1.bg-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 6rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.05);
        z-index: 0;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .info-circles-custom {
        position: relative;
        background: url('https://www.localhost/global-garnia/image/upload/2025/08/HrVlb-pexelspixabay533982.webp') center/cover fixed no-repeat;
        color: #fff;
    }

    .info-circles-custom::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .info-circles-custom .container {
        position: relative;
        z-index: 1;
    }

    .info-circles-custom h1.bg-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 6rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.05);
        z-index: 0;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .commitment-card {
        background: #fff;
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .commitment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .commitment-card .icon {
        font-size: 2.5rem;
        color: #FFD700;
        /* Gold */
    }

    .stat-card {
        border-radius: 10px;
        background: white;
        transition: transform .3s, box-shadow .3s;
    }

    .stat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .stat-card h3 {
        color: #1b5e20;
        font-size: 2.2rem;
    }

    .stat-card p {
        color: #555;
        font-size: .9rem;
    }

    .cta-section {
        background: linear-gradient(rgba(27, 94, 32, 0.85), rgba(27, 94, 32, 0.85)),
            url('images/wheat-field-bg.jpg') center/cover no-repeat;
    }

    .cta-section .btn-warning {
        background-color: #FFD700;
        border: none;
        color: #1b5e20;
    }

    .cta-section .btn-warning:hover {
        background-color: #e6c200;
    }
    
@media (min-width: 768px) {
  .mt-md-1 {
    margin-top: 16.25rem !important;
  }
}


.contact-hero {
   
    color: white;
    padding: 80px 0;
    text-align: center;
}
.contact-info {
    background: #1b5e20;
    color: white;
    padding: 30px;
    border-radius: 10px;
    
}
.contact-info h5 {
    font-weight: bold;
}
.contact-card {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.contact-card h3 {
    color: #1b5e20;
    font-weight: bold;
}
.contact-card .btn-success {
    background-color: #1b5e20;
    border: none;
}
.contact-card .btn-success:hover {
    background-color: #145a18;
}
.map-container {
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}
.product-images {
      max-width: 100%;
      border-radius: 10px;
    }

    .thumbnail-img {
      height: 70px;
      width: 70px;
      object-fit: cover;
      border: 2px solid #ccc;
      cursor: pointer;
    }

    .spec-table th,
    .spec-table td {
      padding: 10px;
    }

    .bg-light-green {
      background-color: #f4fbf4;
    }

    .price-box {
      font-size: 1.6rem;
      color: #1b5e20;
    }

    .add-btn {
      background-color:#06402B;
     
      color: #fff;
    }

    .add-btn:hover {
      background-color: green;
    }