/* ===== Base Styles & Animations ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-padding-top: 80px; /* Adjust to your navbar height */
}





.nav-container {
  border-radius: 8px;
 
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #164CA4 !important;
  border-bottom: 2px solid #164CA4;
  font-weight: bold;
  
}

.hero-section {
  padding: 50px 0;
  background: linear-gradient(90deg, rgb(213, 213, 252), rgb(193, 250, 193));
}

.img-fluids {
  margin-left: 50px;
}

.navbar-nav {
  margin-left: 150px;
}

.product-section {
  padding: 60px 0;
}

.navbar-brand img {
  width: 70px;
  height: 70px;
}

.navbar-nav .nav-item {
  padding: 0px 8px;
}

.navbar-nav a {
  text-transform: uppercase;
  font-size: 15px;
}

.whatsapp img {
  width: 30px;
  height: 30px;
}

.whatsapp {
  padding: 8px;
  padding-top: 10px;
}

.pip {
  border: 1px solid white;
  padding-top: 10px;
  border-radius: 10px;
}

.pip img {
  width: 100%;
  height: auto;
}

.pip h6 {
  text-align: center;
  font-weight: bold;
  padding-top: 10px;
}




    .custom-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      
    }

    .carousel-control-prev .custom-arrow {
      background-color: #b4b6ba; /* light gray */
      color: #1f2937; /* dark arrow */
    }

    .carousel-control-next .custom-arrow {
      background-color: #023dbb; /* Bootstrap blue */
      color: white;
    }

    .custom-arrow i {
      font-size: 28px;
      font-weight: bolder;
    }
  



    .grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    width: 100%;
    height: auto;
    gap: 20px;
    padding: 50px 50px;
    /* border:2px solid red; */
}


.card{
   border-radius: 25px;
   /* border: 2px solid red; */
}

.img1 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
}
.img2 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 3;
}
.img3 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 3;
    grid-column-end: 4;
}
.img4 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
}
.img5 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
}
.img6 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 3;
    grid-column-end: 4;

    
}

.img7 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
  
}

.img8 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 4;
}
.img9 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
}

.uniform-img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 12px;
}

.img10 {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 3;
    grid-column-end: 4;
}





.custom-carousel .carousel-control-prev,
    .custom-carousel .carousel-control-next {
      top: auto;
      bottom: -60px;
      width: auto;
      height: auto;
    }

    .carousel-control-prev,
    .carousel-control-next {
      bottom: -60px;
      top: auto;
      /* border: 2px solid red; */
      width: 90px ;
    }



     
    .carousel-control-prev{
       left: 43%;
       
    }
    
    .carousel-control-next {
      right: 43%;
    }
    
    .carousel-control-prev-icon{
    
      background-size: 70% 70%; 
      font-weight: bolder;
    }
    

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Classes */
.animate-fadeInUp {
  animation: fadeInUp 2s ease forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 2s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 2s ease forwards;
}

.animate-scaleIn {
  animation: scaleIn 2s ease forwards;
}

.animate-slideUp {
  animation: slideUp 2s ease forwards;
}

/* ===== General Styles ===== */
body {
  font-family: Arial, Helvetica;
  background-color: rgb(240, 238, 238);
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  --inter: "Inter", sans-serif;
  --roboto: "Roboto", sans-serif;
}

/* ===== Mobile Menu ===== */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  padding: 20px;
  transition: right 0.4s ease;
}

.mobile-nav-panel.active {
  right: 0;
  animation: fadeInRight 0.5s ease forwards;
}

.mobile-nav-close {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  text-align: right;
}

/* Hide mobile panel on large screens */
/* @media (min-width: 992px) {
  .mobile-nav-panel,
  .navbar-toggler {
    display: none !important;
  }
} */

@media (max-width: 1290px) {
  .uniform-img {
    height: 330px;
  }
}

 @media (max-width: 1199.98px) {
  .navbar-nav {
      margin-left: 0;
  }

  .img-fluids {
      margin-left: 0;
  }

  .hero-section {
      text-align: center;
      padding: 30px 0;
  }

  .pip {
      margin-bottom: 20px;
  }
  .carousel-control-prev{
       left: 40%;
       
    }
    
    .carousel-control-next {
      right: 40%;
    }
    .uniform-img {
    height: 300px;
  }
}
@media (max-width: 1030px) {
  .uniform-img {
    height: 280px;
  }
}
@media (max-width: 900px) {
  .uniform-img {
    height: 240px;
  }
}

/* ===== Hero Slider ===== */
#hero-slider {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
}

#hero-slider .slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

#hero-slider .slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

#hero-slider .slide-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 700px;
  animation: fadeInLeft 1.5s ease forwards;
}

#hero-slider .hero-heading {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 60px;
  line-height: 78px;
  margin-bottom: 1.5rem;
}

#hero-slider .hero-text {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 2rem;
  animation: fadeInUp 1.8s ease forwards;
}

#hero-slider .WA-button {
  background: linear-gradient(180deg, #3871c7 0%, #1d5bbf 100%);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: var(--inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  padding: 20px 30px;
  animation: scaleIn 2s ease forwards;
}

#hero-slider .WA-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== Services Section ===== */
#services {
  background-color: rgb(240, 238, 238);
  padding: 50px 15px 25px 15px;
  position: relative;
}

#services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.02;
  background-image: url("./images/services bg.jpg");
  background-position: left top;
}

#services .section-heading {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 72px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  animation: fadeInUp 1s ease forwards;
}

.service-box {
  text-align: left;
  border: none;
  border-radius: 18px;
  padding: 30px;
  height: 300px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box img {
  height: 90px;
  width: 65px;
}

.service-box .card-body {
  padding: 0;
  padding-top: 25px;
}

.service-box i {
  font-size: 48px;
  color: #333;
  margin-bottom: 20px;
}

.service-box h3 {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 10px;
}

.service-box p {
  font-family: var(--roboto);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #888;
}

.button_container {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.services-wa-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  background: linear-gradient(180deg, #3871c7 0%, #1d5bbf 100%);
  padding: 10px 20px;
  color: #fff;
  border-radius: 11px;
  animation: scaleIn 1.5s ease forwards;
}

.services-wa-btn img {
  width: 35px;
  height: 35px;
}

/* ===== Products Section ===== */
#products {
  background-color: rgb(240, 238, 238);
  padding: 50px 15px 75px 15px;
  position: relative;
}

#products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background: url("./images/choose.png");
}

.product-container {
  position: relative;
  z-index: 1;
}

#products .section-heading {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 72px;
  text-align: center;
  text-transform: capitalize;
  animation: fadeInUp 1s ease forwards;
}

.product-box {
  background-color: #fff;
  border-radius: 15px;
  text-align: left;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease forwards;
  transition: transform 0.3s ease;
}

.product-box:hover {
  transform: translateY(-10px);
}

.product-box .image-wrapper {
  padding: 30px;
  border-bottom: 1px solid #d6d6d6;
}

.product-box .image-wrapper img {
  width: 100%;
}

.product-box .products-content-wrapper {
  padding: 30px;
}

.product-box .products-btn-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
}

.product-box .view-details {
  color: #3d3d3d;
  border: 1px solid #3d3d3d;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  padding: 20px;
  transition: all 0.3s ease;
}

.product-box .view-details:hover {
  background-color: #f5f5f5;
}

.product-box .chat-now {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  background: linear-gradient(180deg, #3871c7 0%, #1d5bbf 100%);
  padding: 10px 20px;
  color: #fff;
  border-radius: 11px;
  transition: all 0.3s ease;
}

.product-box .chat-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-box .chat-now img {
  width: 35px;
  height: 35px;
}

/* ===== About Us Section ===== */
#about_us {
  background-color: #1b1b1b;
  color: #fff;
  padding: 30px;
  border-bottom: 1px solid #3871c7;
}

#about_us .col-lg-6 {
  padding: 50px;
}

#about_us .aboutus-text h2 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 72px;
  color: #d9d9d9;
  animation: fadeInLeft 1s ease forwards;
}

#about_us .aboutus-text h5 {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #fff;
}

#about_us .aboutus-text p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #d9d9d999;
}

#about_us .about-btn {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  animation: fadeInUp 1.5s ease forwards;
}

#about_us .about-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.aboutus-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeInRight 1s ease forwards;
}

.aboutus-image img {
  width: 100%;
  height: 348px;
  border-radius: 10px;
}

/* ===== Mission Vision Section ===== */
#mission-vision {
  background-color: #1b1b1b;
  color: #d9d9d9;
}

#mission-vision .mission,
#mission-vision .vision {
  padding: 50px;
  animation: fadeInUp 1s ease forwards;
}

#mission-vision .mission {
  border-right: 1px solid #3871c7;
}

#mission-vision h2 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 72px;
  color: #d9d9d9;
}

#mission-vision p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #d9d9d999;
}

/* ===== Why Choose Us ===== */
#why-choose-us {
  background-image: url("./images/pngwing.com\ \(21\)\ 1.png");
  background-color: rgb(240, 238, 238);
  padding: 75px 15px;
}

#why-choose-us .row {
  align-items: center;
}

#why-choose-us h3 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 72px;
  color: #1e1e1e;
  animation: fadeInLeft 1s ease forwards;
}

#why-choose-us .col-img {
  width: 85%;
  height: 100%;
  margin-top: 55px;
  animation: fadeInRight 1s ease forwards;
}

#why-choose-us p .number {
  height: 46px;
  width: 46px;
  background-color: #164ca4;
  color: #fff;
  font-family: var(--inter);
  font-weight: 600;
  font-size: 30px;
  line-height: 34px;
  border-radius: 50%;
  margin-right: 20px;
  padding: 0px 0px 0px 12px;
  display: flex;
  align-items: center;
}

#why-choose-us p {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 32px;
  line-height: 72px;
  display: flex;
  align-items: center;
  animation: fadeInUp 1s ease forwards;
}

#why-choose-us .chat-now {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  background: linear-gradient(180deg, #3871c7 0%, #1d5bbf 100%);
  padding: 10px 20px;
  border-radius: 11px;
  color: #ffffff;
  margin-top: 20px;
  animation: scaleIn 1.5s ease forwards;
}

#why-choose-us .btn-img {
  width: 35px;
  height: 35px;
}

/* ===== Products Gallery ===== */
/* #customCarousel .carousel-inner {
  min-height: 600px; 
}

@media (max-width: 768px) {
  #customCarousel .carousel-inner {
    min-height: auto;
  }
} */






.products-gallery {
  background-color: #f2f2f2;
  padding: 80px 60px;
}

.products-gallery h2 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 72px;
  text-align: center;
  text-transform: capitalize;
  animation: fadeInUp 1s ease forwards;
}
/* .img2{
  height: 110%;
  border: 2px solid red ;
  border-radius: 10px;
} */

/* ===== Stats Section ===== */
.stat-box {
  text-align: center;
  border-right: 1px solid #1e1e1e;
  padding: 50px 0px;
  animation: fadeInUp 1s ease forwards;
}

.stat-box img {
  height: 68px;
  width: 68px;
  color: #164ca4;
  margin-bottom: 20px;
}

.stat-box h2 {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 60px;
  line-height: 72px;
  margin-bottom: 10px;
}

.stat-box h6 {
  font-family: var(--inter) 0;
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
  padding-top: 10px;
  color: #1e1e1e;
}

#stats-section {
  background-color: #ffffff;
}

/* ===== Video Section ===== */
#how-we-work {
  padding: 50px 15px;
  position: relative;
  background: url("./images/pngwing.com\ \(20\)\ 1.png");
  background-color: #f2f2f2;
}

#how-we-work .content-col {
  padding-right: 100px;
}

#how-we-work h6 {
  color: #164ca4;
  font-family: var(--inter);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  animation: fadeInLeft 1s ease forwards;
}

#how-we-work h2 {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 72px;
  margin-bottom: 20px;
  animation: fadeInLeft 1s ease forwards;
}

#how-we-work p {
  font-family: var(--roboto);
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #5d5d5d;
  animation: fadeInUp 1s ease forwards;
}

.video-container iframe {
  border-radius: 12px;
  animation: fadeInRight 1s ease forwards;
}

/* ===== Testimonials ===== */
.slider {
  position: relative;
}

.slider .owl-item.active.center .slider-card {
  transform: scale(1);
  opacity: 1;
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
}

.slider-card .quote-img {
  width: 34px;
  height: 30px;
}

.slider-card {
  background: #fff;
  padding: 0px 0px;
  margin: 50px 15px 90px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: scale(0.9);
  transition: all 0.3s;
  animation: fadeInUp 1s ease forwards;
}

.slider-card img {
  border-radius: 5px 5px 0px 0px;
}

/* ===== FAQ Section ===== */
#ask_question {
  padding: 50px 15px;
  background-color: #f2f2f2;
}

#ask_question .faq-heading {
  font-family: var(--inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 62px;
  text-align: center;
  padding-bottom: 25px;
  animation: fadeInUp 1s ease forwards;
}

#ask_question #faqAccordion {
  width: 75%;
  margin: auto;
}

#ask_question .accordion-item {
  margin: 20px 0px;
  border-radius: 14px;
  animation: fadeInUp 1s ease forwards;
}



/* ===== Responsive Adjustments ===== */
@media (max-width: 1600px) {
  #hero-slider .hero-heading {
    font-size: 50px;
    line-height: 1.3;
  }
}

@media (max-width: 1400px) {
  #hero-slider .hero-heading {
    font-size: 45px;
  }
  #services .section-heading,
  #products .section-heading,
  #why-choose-us h3,
  .products-gallery h2,
  #about_us .aboutus-text h2,
  #mission-vision h2,
  #how-we-work h2 {
    font-size: 36px;
    line-height: 1.3;
  }
}

@media (max-width: 1200px) {
  .navbar-nav {
    margin-left: 80px;
  }
  .img-fluids {
    margin-left: 0px;
  }
  #hero-slider .hero-heading {
    font-size: 40px;
  }
  #why-choose-us p {
    font-size: 28px;
    line-height: 1.4;
  }
  .grid-container {
    gap: 10px;
    padding: 0px 0px;
}
}

@media (max-width: 992px) {
  /* General Adjustments */
  #hero-slider .hero-heading {
    font-size: 36px;
    line-height: 1.3;
  }
  #hero-slider .hero-text {
    font-size: 16px;
  }
  
  /* Services */
  .service-box {
    height: auto;
    padding: 20px;
  }
  
  /* Products */
  .product-box {
    margin-bottom: 20px;
  }
  
  /* About Us */
  #about_us .col-lg-6 {
    padding: 30px;
  }
  
  /* Mission/Vision */
  #mission-vision .mission,
  #mission-vision .vision {
    padding: 30px;
  }
  
  /* Why Choose Us */
  #why-choose-us p {
    font-size: 24px;
    line-height: 1.4;
  }
  
  /* Stats */
  .stat-box h2 {
    font-size: 48px;
  }
  
  .stat-box h6 {
    font-size: 24px;
  }
  
  /* Footer */
  .footer-column3 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px;
  }
  
  .footer-center3 {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
  }
   .carousel-control-prev{
       left: 38%;
       
    }
    
    .carousel-control-next {
      right: 38%;
    }
    .grid-container {
    gap: 10px;
    padding: 0px 0px;
}
}

@media (max-width: 768px) {
  /* Hero Slider */
  #hero-slider {
    height: auto;
    min-height: auto;
  }
  
  #hero-slider .slide {
    height: 500px;
    min-height: auto;
  }
  
  #hero-slider .hero-heading {
    font-size: 32px !important;
    line-height: 1.3;
  }
  
  #hero-slider .hero-text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  #hero-slider .WA-button {
    padding: 15px 25px;
  }
  
  /* Services */
  #services .section-heading,
  #products .section-heading,
  #why-choose-us h3,
  .products-gallery h2,
  #about_us .aboutus-text h2,
  #mission-vision h2,
  #how-we-work h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  .service-box h3 {
    font-size: 20px;
  }
  
  .service-box p {
    font-size: 16px;
  }
  
  /* Products */
  .product-box .products-btn-wrapper {
    flex-direction: column;
  }
  
  .product-box .view-details,
  .product-box .chat-now {
    width: 100%;
    text-align: center;
  }
  
  /* About Us */
  #about_us .aboutus-text h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  #about_us .aboutus-text h5 {
    font-size: 20px;
  }
  
  /* Mission/Vision */
  #mission-vision .mission {
    border-right: none;
    border-bottom: 1px solid #3871c7;
    padding-bottom: 30px;
  }
  
  #mission-vision .vision {
    padding-top: 30px;
  }
  
  /* Why Choose Us */
  #why-choose-us p {
    font-size: 20px;
    line-height: 1.5;
  }
  
  #why-choose-us p .number {
    height: 36px;
    width: 36px;
    font-size: 24px;
    margin-right: 15px;
  }
  
  /* Stats */
  .stat-box {
    border-right: none;
    border-bottom: 1px solid #1e1e1e;
    padding: 30px 0;
  }
  
  .stat-box h2 {
    font-size: 36px;
  }
  
  .stat-box h6 {
    font-size: 20px;
  }
  
  /* Video Section */
  #how-we-work .content-col {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  /* FAQ */
  #ask_question #faqAccordion {
    width: 100%;
  }
  
  #ask_question .accordion-header button {
    font-size: 18px;
  }

   .carousel-control-prev{
       left: 35%;
       
    }
    
    .carousel-control-next {
      right: 35%;
    }
    .grid-container {
    gap: 10px;
    padding: 0px 0px;
}

.custom-carousel .carousel-control-prev,
    .custom-carousel .carousel-control-next {
      top: auto;
      bottom: -40px;
      width: auto;
      height: auto;
    }
    .uniform-img {
    height: 230px;
  }
}

@media (max-width: 576px) {
  /* Hero Slider */
  #hero-slider .hero-heading {
    font-size: 28px !important;
  }
  
  #hero-slider .WA-button {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  /* Services */
  #services .section-heading,
  #products .section-heading,
  #why-choose-us h3,
  .products-gallery h2,
  #about_us .aboutus-text h2,
  #mission-vision h2,
  #how-we-work h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .service-box {
    padding: 15px;
  }
  
  .service-box img {
    height: 70px;
    width: 50px;
  }
  
  .service-box i {
    font-size: 36px;
  }
  
  /* Products */
  .product-box .image-wrapper {
    padding: 15px;
  }
  
  .product-box .products-content-wrapper {
    padding: 15px;
  }
  
  /* About Us */
  #about_us {
    padding: 15px;
  }
  
  #about_us .col-lg-6 {
    padding: 15px;
  }
  
  #about_us .aboutus-text h2 {
    font-size: 28px;
  }
  
  #about_us .aboutus-text h5 {
    font-size: 18px;
  }
  
  /* Why Choose Us */
  #why-choose-us p {
    font-size: 18px;
    line-height: 1.5;
    flex-direction: column;
    align-items: flex-start;
  }
  
  #why-choose-us p .number {
    margin-bottom: 10px;
    margin-right: 0;
  }
  
  /* Stats */
  .stat-box h2 {
    font-size: 32px;
  }
  
  .stat-box h6 {
    font-size: 18px;
  }
  
  /* Video Section */
  .video-container iframe {
    height: 250px;
  }
  
  /* FAQ */
  #ask_question .accordion-header button {
    font-size: 16px;
  }
  
  #ask_question .accordion-body {
    font-size: 14px;
  }
  
  /* Footer */
  .footer-column3 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

   .carousel-control-prev{
       left: 30%;
       
    }
    
    .carousel-control-next {
      right: 30%;
    }
    .grid-container {
    gap: 5px;
    padding: 0px 0px;
}

.quick-links{
  /* border: 2px solid red; */
  /* width: 200px; */
  margin: 5px 30px;
}
.footer-logo{
  margin-bottom: 30px;
}
 .uniform-img {
    height: 170px;
  }
}





ul {
  list-style: disc;
  padding-left: 20px;
  margin: 15px 0 0 0;
}

li {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 1199.98px) {
  .navbar-nav {
      margin-left: 0;
  }
}


@media (max-width: 767.98px) {
  .navbar-brand img {
      width: 50px;
      height: 50px;
  }
  .products-gallery {
  padding: 70px 10px;
}
}
@media (max-width: 575.98px) {

  
  .navbar-nav a {
      font-size: 14px;
      padding: 5px 8px;
  }
  .custom-arrow {
      width: 30px;
      height: 30px;
      
    }
     .custom-arrow i {
      font-size: 15px;
      font-weight: bolder;
    }
    .card{
   border-radius: 5px;
}
.carousel-control-prev{
       left: 10%;
       
    }
    
    .carousel-control-next {
      right: 10%;
    }
    .products-gallery {
  padding: 70px 10px;
}

}
@media (max-width: 400px) {
  /* Hero Slider */
  #hero-slider .hero-heading {
    font-size: 24px !important;
    line-height: 1.3;
  }
  
  #hero-slider .hero-text {
    font-size: 13px;
  }
  
  #hero-slider .WA-button {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  /* Services */
  #services .section-heading,
  #products .section-heading,
  #why-choose-us h3,
  .products-gallery h2,
  #about_us .aboutus-text h2,
  #mission-vision h2,
  #how-we-work h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  
  /* Products */
  .product-box .view-details,
  .product-box .chat-now {
    padding: 15px;
    font-size: 14px;
  }
  
  /* Why Choose Us */
  #why-choose-us .chat-now {
    padding: 8px 15px;
    font-size: 14px;
  }
  
  /* Stats */
  .stat-box h2 {
    font-size: 28px;
  }
  
  .stat-box h6 {
    font-size: 16px;
  }
  .custom-arrow {
      width: 20px;
      height: 20px;
      
    }
     .custom-arrow i {
      font-size: 15px;
      font-weight: bolder;
    }
    .card{
   border-radius: 5px;
}
.carousel-control-prev{
       left: 20%;
       
    }
    
    .carousel-control-next {
      right: 20%;
    }
    .products-gallery {
  padding: 70px 10px;
}
.img8 img{
  /* border: 2px solid blue; */
  height: 100%;
  object-fit: cover;
}
.img9 img{
  /* border: 2px solid blue; */
  /* height: auto; */
  object-fit: cover;

}
.footer-links{
    margin-left: 10px;

}
.uniform-img {
    height: 110px;
  }
}



a, button, .btn {
  transition: all 0.3s ease;
}

/* Button animations */
.whatsapp, .btn {
  animation: scaleIn 2s ease forwards;
  transform-origin: center;
}

.whatsapp:hover, .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Navbar animation */
.navbar {
  animation: slideUp 1s ease forwards;
}

.navbar-nav .nav-item {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.navbar-nav .nav-item:nth-child(1) { animation-delay: 0.2s; }
.navbar-nav .nav-item:nth-child(2) { animation-delay: 0.3s; }
.navbar-nav .nav-item:nth-child(3) { animation-delay: 0.4s; }
.navbar-nav .nav-item:nth-child(4) { animation-delay: 0.5s; }
.navbar-nav .nav-item:nth-child(5) { animation-delay: 0.6s; }






.foot{
    padding-top: 90px;
    padding-bottom: 60px !important;
    
}
.footer {
    background: white;
}
.footer-row{
  display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 180px;
    height: 100px;
    margin: 0px 10px;
}
.footer-links{
    margin-left: 20px;

}
.footer-links a {
    color: #6c757d;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    width: auto;
}
.footer-links a:hover {
    color:#3b82f6;
}
.social-icons a {
    color: #3b82f6;
    font-size: 20px;
    margin: 0 8px;
}

.social-icons a:hover{
    color: #074fb3;
}











.fixed{
    width:50px;
    height: 50px;
    box-shadow: 0px 0px 10px gray;
    background-color: white;
    color: #074fb3;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    padding-top: 10px;
    position: fixed;
    z-index: 4;
    top:600px;
    right: 30px;
    display: none;
}