/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

/* Wrapper */
.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}


main{
  margin-top: 96px;
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* keep it above content */
  background: #fff; /* set background so content doesn’t show through */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optional nice shadow */
}


.section-heading h2{
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #F6A302;
}
/* nav */

.navbar{
  padding: 0;
}

.navbar-brand{
  padding: 0;
}
    .navbar-brand img {
      height:96px;
    }
    .navbar-nav .nav-link {
      font-weight: 600;
      margin-left: 20px;
      color: #333;
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover,
    .nav-contact-info a:hover{
      color: #F6A302;
    }
    .nav-contact-info {
      font-weight: 600;
    }
    .nav-contact-info a {
      color: #333;
      margin-left: 15px;
      text-decoration: none;
    }


    .nav-contact-info a:hover{
      color: #F6A302;
    }

    .nav-contact-info .contact-btn{
        background: #f9a825;
      border-radius: 4px;
      color: #fff;
      padding: 10px 20px;
    }

    .nav-contact-info .contact-btn:hover{
      color: white;
      background-color: #da9202;
    }

/* Show dropdown on hover */
@media (min-width: 992px) { /* only for large screens */
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

/* Smooth animation */
.dropdown-menu {
  background: #fff;          /* pure white */
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.25s ease;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-item {
  color: #000;
  font-weight: 500;
  padding: 8px 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover {
  background: #f6f6f6;
  color: #F6A302;
}


/* Hero Section */
#hero {
  position: relative;
}

/* Carousel Items */
#hero .carousel-item {
  height: calc(80vh);              /* full viewport height */
  min-height: 600px;  
  position: relative;
}

#hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* crop nicely without stretching */
}

/* Dark Overlay */
#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 18, 27, 0.468);
  z-index: 1;
}

/* Caption Styling */
#hero .carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
  max-width: 600px;
}

#hero .carousel-caption h1 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

#hero .carousel-caption p {
  font-size: 16px;
  margin: 15px 0 30px;
  color: #f1f1f1;
}

/* Explore Button */
#hero .btn-explore {
  display: inline-block;
  background: #f9a825;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 10px;
  font-weight: 500;
}

#hero .btn-explore:hover {
  background-color: #da9202;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: 10px;   /* space from left */
}

.carousel-control-next {
  right: 10px;  /* space from right */
}
.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #ccc; /* inactive */
  transition: background-color 0.3s ease;
}

.carousel-indicators .active {
  background-color: #f9a825; /* yellow active */
}
@media(max-width:575px){
  .carousel-control-prev {
  left: 0px;   /* space from left */
}

.carousel-control-next {
  right: 0px;  /* space from right */
}
/* .carousel-caption text-start{
text-align: center;
} */
}


/* Indicators */
.carousel-indicators {
  bottom: 20px;
  z-index: 3;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #f1f1f1;
}

.carousel-indicators .active{
background-color: #f8ca7f ;
}

/* Responsive Typography */
@media (min-width: 1200px) {
  #hero .carousel-caption h1 {
    font-size: 55px;
  }
  #hero .carousel-caption p {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  #hero .carousel-caption h1 {
    font-size: 28px;
  }
  #hero .carousel-caption p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  #hero .carousel-caption {
    left: 5%;
    right: 5%;
    text-align: center;
  }
  #hero .carousel-caption h1 {
    font-size: 24px;
  }
  #hero .carousel-caption p {
    font-size: 13px;
  }
  #hero .btn-explore {
    padding: 8px 16px;
    font-size: 14px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 50px;
    height: 50px;
  }
}


#hero .carousel-caption h1,
#hero .carousel-caption p,
#hero .carousel-caption .btn-explore {
  opacity: 0;
  animation: slideUp 1s ease forwards;
}


/* Delay for staggered effect */
#hero .carousel-caption h1 { animation-delay: 0.3s;text-transform: uppercase; }
#hero .carousel-caption p { animation-delay: 0.6s; }
#hero .carousel-caption .btn-explore { animation-delay: 0.9s; }


@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f9a825; /* yellow background */
  top: 50%;
  transform: translateY(-50%);
  opacity: 1; /* always visible */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background: none; /* remove default Bootstrap bg */
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: #fff; /* arrow color */
}

/* Left arrow */
.carousel-control-prev-icon {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M11 1 3 8l8 7'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M11 1 3 8l8 7'/%3E%3C/svg%3E") no-repeat center;
}

/* Right arrow */
.carousel-control-next-icon {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M5 1l8 7-8 7'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M5 1l8 7-8 7'/%3E%3C/svg%3E") no-repeat center;
}

@media (max-width: 786px) {
.carousel-control-prev,
.carousel-control-next {
  width: 20px;
  height: 20px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 10px;
  height: 10px;
}
}



    /* Section Spacing */
    .about-us,
    .products,
    .ind-we-support{
      padding: 60px 0;
    }

    .products{
      background: #fff7ec;
    }

    .our-mission{
      padding: 50px 0;
      background: #fff7ec;
    }

    .vision{
      padding:50px 0;
    }

        .reach {
          padding: 50px 0;
        }
    .our-mission h2,
    .vision h2,
    .reach h2,
    .ind-we-support h2{
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #F6A302;
    text-align: center;
    }


    /* About Us */
    .about-us img {
      width: 100%;
      border-radius: 8px;
    }

    .about-us h2,
    .products h2 {
      margin-bottom: 20px;
      font-size: 28px;
      font-weight: bold;
      color: #F6A302;
    }

    .about-us p,
    .products p,
    .vision p,
    .our-mission p{
      font-size: 18px;
      line-height: 1.6;
      color: #555;
    }


    .ind-we-support p{
      font-size: 14px;
    height: 100%;
    line-height: 1.4;
    color: #fff;
    }
    .about-us .col-md-4 {
      padding-right: 30px;
    }

    .btn-explore {
      display: inline-block;
      background: #f9a825;
      color: #fff;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 4px;
      margin-top: 10px;
      font-weight: 500;
    }

    .btn-explore:hover{
      background-color: #da9202;
    }
    /* Products */
    .see-all {
      display: inline-block;
      color: #f9a825;
      text-decoration: none;
      font-weight: bold;
      margin-top: 10px;
    }

    .product-card,
    .vision-card,
    .reach-card {
      padding: 15px;
      border-radius: 8px;
      height: 100%;
      /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
      transition: 600ms all;
    }

    .vision-card {
      padding: 20px;
    }
    .reach-card {
      padding: 20px
    }

       .reach-card:hover{
        transform: translateY(-10px);
       }

    .product-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .vision-card h3 {
      font-size: 24px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .reach-card h3 {
      font-size: 24px;
      margin-bottom: 10px;
      font-weight: 600;
    }
    .reach-card h3 span{
      font-size: 30px;
      font-weight: 800;
    }
    .product-card p,
    .vision-card p{
      font-size: 16px;
      line-height: 20px;
      color: #666;
    }
    /* .reach-card p{
      font-size: 20px;
      font-weight: bold;
      line-height: 20px;
      color: #000000;
    } */
    .product-card img {
      width: 100%;
      transition: 600ms all;
      margin-top: 10px;
    }


    .yellow-card {
      background: #f8ca7f;
      color: #fff;
    }


    .yellow-card p{
      color: white;
    }



    .product-card:hover{
        background-color:rgb(248, 202, 127);
      color: #fff;
      transition: 600ms all;
    }

        .product-card:hover img{border-radius: 10px;}

    .product-card:hover *{color: #fff !important;}
    .white-card {
      background: #fff;
      color: #000;
    }


    .vision-card:hover{
        background-color:rgb(248, 202, 127);
      color: #fff;
      transition: 600ms all;
    }

        .vision-card:hover img{border-radius: 10px;}

    .vision-card:hover *{color: #fff !important;}
    .white-card {
      background: #fff;
      color: #000;
    }
  
    .reach-card:hover{
        background-color:rgb(248, 202, 127);
      color: #000000;
      transition: 600ms all;
    }
        .reach-card:hover *{color: #000000 !important;}


.blog-section {
  background: #fff;
}
.blog-section .section-title {
  color: #f9a825;
  font-size: 32px;
  font-weight: 700;
}
.blog-section .section-subtitle {
  color: #333;
  font-size: 18px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  text-align: left;
}
.blog-card a {
  text-decoration: none;   
  color: inherit;
}
.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 15px;
}
.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #f9a825;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}



/* Swiper Arrows */
.swiper-button-next, 
.swiper-button-prev {
  color: #f9a825;
}



    .vendors {
      padding: 60px 0;
      text-align: center;
    }

    .vendors h2,
    .clients_sec h2 {
      margin-bottom: 20px;
      font-size: 28px;
      font-weight: bold;
      color: #F6A302;
    }


    .vendors p {
      color: #444;
      margin-bottom: 40px;
    }

    /* Vendor Cards */
    .vendor-card {
      background: #fff7ec;
      border-radius: 8px;
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* smaller box */
      box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
      transition: transform 0.3s ease;
    }

    .vendor-card:hover {
  transform: translateY(-8px); 
}

    .vendor-card img {
      max-height: 74px;
      max-width: 100%;
      object-fit: contain;
    }



/* Section Styling */
.blog-section {
  background: #fff;
}
.blog-section .section-title {
  color: #f7a600;
  font-size: 28px;
  font-weight: 700;
}
.blog-section .section-subtitle {
  color: #333;
  font-size: 18px;
}


.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  text-align: left;
}
.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 15px;
}
.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #f7a600;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}



/* Swiper Arrows */
.swiper-button-next, 
.swiper-button-prev {
  color: #f7a600;
}


/* contact section */
.contact-section {
  background: #fefaf3;
}

.contact-info {
  background: #f7a700;
  height: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info .info-box {
  background: #fff7ec;
  padding: 25px;
  width: 100%;
  height: 100%;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 20px 0;
}

.contact-info h3 {
  color: #f7a700;
  font-weight: 700;
}

.contact-info p {
  margin: 0;
  color: #333;
}

.contact-info ul li {
  margin: 12px 0;
  font-size: 15px;
  color: #333;
}

.contact-info ul li i {
  color: #f7a700;
  margin-right: 8px;
}

.contact-info .social a {
  color: #333;
  margin-right: 12px;
  font-size: 20px;
  transition: 0.3s;
}

.contact-info .social a:hover {
  color: #f7a700;
}

.contact-form {
  background: #fff;
  padding: 30px;
}

.contact-form .form-control {
  border-radius: 8px;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contact-form .form-control:focus {
  outline: none;
  box-shadow: 0 0 6px #f7a700;
}

.btn-submit {
  background: #f7a700;
  color: #fff;
  font-weight: 600;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-submit:hover {
    background-color: #da9202;
}

/* footer */

.footer {
  background: #fff;
  padding: 50px 0 20px;
  border-top: 1px solid #eee;
}

.footer-logo {
  max-width: 160px;
}

.footer-about p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.footer-about h6 {
  font-weight: 600;
  color: #f7a700;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 24px;
  color: #333;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f7a700;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer ul li a:hover {
  color: #f7a700;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

.footer-contact i {
  margin-right: 8px;
  color: #f7a700;
}

.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 30px;
  padding-top: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #555;
}


@media (max-width:786px) {
  .footer .info{
  padding-left: 10px;
}
}


  /* ISO Certification Section */
/* .footer-iso {
  border-top: 1px dashed #e5e5e5;
} */

.iso-title {
  font-weight: 600;
    color: #f7a700;
  /* margin-bottom: 20px; */
  letter-spacing: 0.5px;
}

.iso-logos {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.iso-logos img {
  max-height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.iso-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .iso-logos {
    gap: 20px;
  }

  .iso-logos img {
    max-height: 65px;
  }
}


.subscribe-box {
  background: #111;
  border-radius: 10px;
}
.subscribe-box h4{
    font-size: 28px;
    font-weight: 600;
    padding: 15px 0;
}
.subscribe-box input {
  padding: 12px;
  border: none;
  max-width: 350px;
  border-radius: 10px  0 0  10px !important;
}
.subscribe-box input:focus {
  outline: none;
  box-shadow: none;
}
.subscribe-box button {
  padding: 12px 20px;
  border: none;
  color: white;
  border-radius:0 10px 10px 0 !important;
}

@media (max-width:786px) {
 .subscribe-box form{
    align-self: start;
 }   
}
.products a,
.vision a {
  color: inherit;       /* or any color you want */
  text-decoration: none; /* removes underline */
}
