/* Base Styles */
* {
      box-sizing: border-box;
    }

      body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding-top: 100px; /* Adjust based on your header height */
  overflow-x: hidden;
}

   header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f8f8f8;
  padding: 10px 20px;
  z-index: 9999; /* Make sure it's above all content */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
}

    .logo-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo img {
      height: 80px;
    }

    nav {
      flex-grow: 1;
    }

    .menu {
      list-style: none;
      display: flex;
      gap: 15px;
      margin: 0;
      padding: 0;
      justify-content: flex-end;
    }

    .menu li {
      position: relative;
    }

    .menu a {
      text-decoration: none;
      color: #000;
      padding: 10px 15px;
      display: block;
      font-weight: bold;
    }

    .menu a:hover {
      background: rgb(216, 17, 17);
      color: white;
    }

    .dropdown, .submenu {
      display: none;
      position: absolute;
      background: #fff;
      min-width: 180px;
      top: 100%;
      left: 0;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 10;
    }

    .menu li:hover > .dropdown {
      display: block;
    }

    .dropdown li:hover > .submenu {
      display: block;
      left: 100%;
      top: 0;
    }

    .dropdown a, .submenu a {
      padding: 12px 15px;
      color: #333;
    }

    .dropdown a:hover, .submenu a:hover {
      background: #ec4836;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: #000;
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      nav {
        width: 100%;
      }

      .menu {
        flex-direction: column;
        display: none;
        width: 100%;
        background: #f8f8f8;
        padding: 10px 0;
      }

      .menu.active {
        display: flex;
      }

      .menu li {
        width: 100%;
      }

      .menu li:hover > .dropdown {
        position: static;
      }

      .dropdown, .submenu {
        position: static;
        box-shadow: none;
      }

      .submenu {
        padding-left: 20px;
      }
    }
    abbr {
      font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      margin: 40px;
      background-color: #f8f8f8;
      
    }
/* Heading */
h1 {
  text-align: center;
  margin: 40px 0 20px;
  color: #333;
  font-size: 45px;
}

/* Floating Icons */
.floating-icons {
  position: fixed;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.icon-btn {
  display: flex;
  align-items: center;
  padding: 10px;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: black;
  font-weight: bold;
  width: 40px;
  height: 40px;
  justify-content: center;
  position: relative;
  transition: background 0.3s;
}

.icon-btn:hover {
  background: rgb(78, 212, 78);
  color: white;
}

.icon-btn span {
  display: none;
  position: absolute;
  right: 50px;
  background: white;
  color: black;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-btn:hover span {
  display: block;
}

/* Phone dropdown hidden by default */
.phone-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 45px;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  min-width: 180px;
  z-index: 10000;
  padding: 5px 0;
}

.phone-dropdown a {
  padding: 8px 12px;
  color: black;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
}

.phone-dropdown a:hover {
  background: rgb(78, 212, 78);
  color: white;
}

/*corousel*/
.carousel-container {
  width: 100vw;
  height: 500px;
  overflow: hidden;
}


.carousel {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
  width: 400vw;
}

.carousel-item {
  position: relative;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.carousel-bg {
  width: 100vw;
  height: 100%;
  object-fit: cover;      /* fills width, keeps aspect */
  object-position: top;   /* show top, don't crop sparks */
  display: block;
}



.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 40px;
  color: white;
  text-align: center;
  border-radius: 10px;
  max-width: 600px;
}

.carousel-content h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.carousel-content p {
  font-size: 16px;
  margin-bottom: 10px;
}

.new-badge {
  background: red;
  color: white;
  padding: 6px 10px;;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.new-badge:hover {
  background: darkred;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  color: white;
  z-index: 2;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

/* Footer */
.footer {
  background: #dbd9d9;
  text-align: center;
  padding: 30px 20px;
  color: #000;
  margin-top: 50px;
  width: 1300px;
  margin-left: 40px;
  border-radius: 10px; /* Added this line for curved corners */
}

.footer a {
  color: #c00;
}

.icons a {
  color: #000;
  margin: 0 10px;
  font-size: 26px;
}

.icons a:hover {
  color: #000;
}
.footer-phone-wrapper {
  position: relative;
  display: inline-block;
  font-size: 26px;
  color: black;
}

.footer-phone-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 35px; /* 🡅 appears above the icon */
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.15);
  padding: 5px 0;
  min-width: 180px;
  z-index: 9999;
}

.footer-phone-dropdown a {
  padding: 4px 10px;         /* 🔽 less padding */
  font-size: 10px;           /* 🔽 smaller text */
  line-height: 1.4;          /* 🧱 better spacing */
  display: block;
  color: black;
  text-decoration: none;
  white-space: nowrap;
}
.footer-phone-dropdown {
  min-width: 150px; /* default was 180px */
}


.footer-phone-dropdown a:hover {
  background: rgb(78, 212, 78);;
  color: white;
}





/* ✅ Responsive adjustments for smaller devices */
@media (max-width: 768px) {
  .carousel-container {
    height: 300px;
  }

  .carousel-content {
    padding: 20px;
    width: 80%;
  }

  .carousel-content h2 {
    font-size: 20px;
  }

  .carousel-content p {
    font-size: 14px;
  }

  .new-badge {
    font-size: 10px;
    padding: 6px 10px;
  }
}



/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.product-card {
  background: #dbd9d9;
  display: flex;
  align-items: center;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  text-decoration: none;
  color: #000;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-image {
  width: 100px;
  margin-right: 20px;
  border-radius: 6px;
}

.product-info {
  flex: 1;
  color: #000;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.product-info h2 {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.product-info p {
  margin: 5px 0;
  color: #0000;
 font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.arrow {
  font-size: 20px;
  color: red;
}

/* Solutions */
.solutions {
  padding: 50px 20px;
  background: #dbd9d9;
  text-align: center;
}

.solutions-title {
  font-size: 36px;
  margin-bottom: 10px;
   font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.solutions-description {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #444;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.solution-card {
  width: 350px;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
}

.solution-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.solution-info {
  padding: 20px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.solution-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.solution-info h3 span {
  color: red;
  font-size: 22px;
   font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.solution-info p {
  font-size: 15px;
  color: #666;
   font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Services */
.services {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.services-title {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
 font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-items: center;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 300px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  background: #f1f1f1;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 24px;
  color: #555;
}

.service-info h3 {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
   font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Testimonial 2 Carousel */
.testimonial2-carousel-container {
  position: relative;
  overflow: hidden;
  width: 80vw;
  margin: 40px auto;
  background: #dbd9d9;
  border-radius: 16px;
  box-shadow: 0 4px 10px #dbd9d9;
}

.testimonial2-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial2-carousel-item {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  min-height: 200px;
}

.testimonial2-icon {
  font-size: 60px;
  min-width: 60px;
}

.testimonial2-text h2, .testimonial2-text p {
  margin: 0;
  color: #444;
 font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.testimonial2-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #c0392b;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

 .about-container {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      flex-wrap: wrap;
    }

    .about-image {
      flex: 1;
      max-width: 45%;
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: cover;
    }

    .about-text {
      flex: 1;
      max-width: 55%;
      text-align: justify;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .about-text p {
      margin-bottom: 15px;
      line-height: 1.6;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .about-text ul {
      margin-top: 0;
      margin-bottom: 20px;
      padding-left: 20px;
      list-style-type: disc;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .about-text li {
      margin-bottom: 8px;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .know-more-button {
      display: inline-block;
      background-color: #c00;
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      
    }

    /* Responsive Styling */
    @media (max-width: 768px) {
      .about-container {
        flex-direction: column;
      }

      .about-image,
      .about-text {
        max-width: 100% !important;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      }

      .about-image {
        margin-bottom: 20px;
      }
      .know-more-button{
        margin-left: 150px;
      }
      .footer{
        width: 90%;
        margin-left: 10px;
      }
      .h1{
        font-size: 35px;
      }
    }
 

/* Responsive Media Queries */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    flex-direction: column;
    display: none;
    width: 100%;
    background: #f8f8f8;
    padding: 10px 0;
  }

  .menu.active {
    display: flex;
  }

  .carousel-item {
    flex-direction: column;
    text-align: center;
  }

  .carousel-item img {
    width: 110%;
  }

  .carousel-text {
    width: 100%;
  }

  .floating-icons {
    right: 10px;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .testimonial2-carousel-item {
    flex: 0 0 100%;
  }
}

@media (max-width: 412px) {
  .logo img {
    height: 60px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    width: 100%;
  }

  .menu {
    flex-direction: column;
    display: none;
    width: 100%;
    background: #f8f8f8;
    padding: 10px 0;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .menu li:hover > .dropdown {
    position: static;
  }

  .dropdown, .submenu {
    position: static;
    box-shadow: none;
  }

  .submenu {
    padding-left: 20px;
  }
}

/* 2. Products: smaller images and text */
.product-card {
  padding: 20px; /* reduced from 50px */
}
.product-image {
  width: 80px; /* reduced from 100px */
}
.product-info h2 {
  font-size: 16px; /* smaller heading */
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.product-info p {
  font-size: 14px; /* smaller description */
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* 3. Carousel smaller size on smaller screens */
@media (max-width: 768px) {
  .carousel-item {
    padding: 10px;
  }
  .carousel-item img {
    width: 110%; /* reduce image size */
  }
  .carousel-text {
    font-size: 14px; /* smaller text */
    padding: 10px;
  }
}

/* 4. About Us mobile responsive layout */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  .section.reverse {
    flex-direction: column;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  .text {
    font-size: 14px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  .img-container {
    order: -1; /* Move image before text */
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .counsel-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .counsel-text {
    font-size: 14px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }


  .testimonial2-carousel-item {
    flex: 0 0 100%; 
    padding: 20px;
  }

  .testimonial2-icon {
    font-size: 50px;
    margin-bottom: 10px;
  }

  .testimonial2-text h2 {
    font-size: 18px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  .testimonial2-text p {
    font-size: 14px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }

  .testimonial2-arrow {
    right: 5px;
  }
}




