 body {
      background-color: #f8f9fa;
    }

    /* Navbar */
    .navbar {
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .navbar-brand {
      font-weight: 700;
      color: #0d6efd;
      width: 150px;
      height: 85px;
    }
    .navbar-brand img{
      width: 100%;
      height: 100%;
    }

    .nav-link {
      color: #495057 !important;
      margin-right: 15px;
    }

    .nav-link:hover {
      color: #0d6efd !important;
    }

    /* Hero */
    .hero {
      padding: 100px 0;
      background: linear-gradient(135deg, #f8f9fa, #ffffff);
    }

    .hero h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #212529;
    }

    .hero p {
      font-size: 1.1rem;
      color: #6c757d;
      margin-top: 15px;
    }

    .hero-buttons .btn {
      margin-right: 10px;
      margin-top: 15px;
    }

    .hero-img {
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .badge-custom {
      background-color: #e9f5ff;
      color: #0d6efd;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.85rem;
      margin-right: 8px;
    }

    @media (max-width: 768px) {
      .hero {
        text-align: center;
        padding: 60px 0;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
      }
    }
    /*about sectio */

    .about {
    background-color: #ffffff;
  }

  .about-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .stat-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
  }

  .stat-box h4 {
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 5px;
  }

  .stat-box p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
  }

  .stat-box:hover {
    transform: translateY(-5px);
    background: #e9f5ff;
  }

  @media (max-width: 768px) {
    .about {
      text-align: center;
    }
  }

  /*product*/

  .products {
    background-color: #f8f9fa;
  }

  .product-card {
    border: none;
    border-radius: 12px;
    transition: 0.3s;
    overflow: hidden;
  }

  .product-card img {
    height: 200px;
    object-fit: cover;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .hidden {
    display: none !important;
  }

  /*why us*/

   .why-us {
    background: linear-gradient(135deg, #f8f9fa, #eef6ff);
  }

  /* Glassmorphism Card */
  .usp-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
  }

  .usp-box .icon {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .usp-box h5 {
    font-weight: 600;
    margin-top: 10px;
  }

  .usp-box p {
    font-size: 0.95rem;
    color: #6c757d;
  }

  /* Hover Effect */
  .usp-box:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, #e9f5ff, #ffffff);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }

  @media (max-width: 768px) {
    .usp-box {
      text-align: center;
    }
  }

  /*process*/

  .process {
    background-color: #f8f9fa;
  }
 .step_five{
  margin-bottom: 30px;
 }
  .step {
    position: relative;
    margin-bottom: 30px;
  }

  .step-box {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .step-number {
    width: 50px;
    height: 50px;
    background: #0d6efd;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 18px;
  }

  .step-box h6 {
    font-weight: 600;
    margin-bottom: 8px;
  }

  .step-box p {
    font-size: 0.9rem;
    color: #6c757d;
  }

  /* Hover Effect */
  .step-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  /* Connecting Line (Desktop Only) */
  @media (min-width: 992px) {
    .step::after {
      content: "";
      position: absolute;
      top: 25px;
      right: -50%;
      width: 100%;
      height: 2px;
      background: #dee2e6;
      z-index: 0;
    }

    .step:last-child::after {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .step-box {
      text-align: center;
    }
  }
/*global*/
  .global {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
  }

  .map-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s ease;
  }

  .map-img:hover {
    transform: scale(1.03);
  }

  .global ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #495057;
  }

  @media (max-width: 768px) {
    .global {
      text-align: center;
    }

    .global ul {
      padding: 0;
    }
  }
/*certifications*/
   .certifications {
    background: linear-gradient(135deg, #f8f9fa, #eef6ff);
  }

  /* Glass Card */
  .cert-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
  }

  .cert-img {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.4s ease;
  }

  .cert-box h6 {
    font-weight: 600;
    margin-top: 10px;
  }

  .cert-box p {
    font-size: 0.9rem;
    color: #6c757d;
  }

  /* Hover Effects */
  .cert-box:hover {
    transform: translateY(-10px) scale(1.03);
    background: linear-gradient(135deg, #e9f5ff, #ffffff);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }

  .cert-box:hover .cert-img {
    filter: grayscale(0%);
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .cert-box {
      text-align: center;
    }
  }
/*testimonials*/
    .testimonials {
    background: linear-gradient(135deg, #ffffff, #eef6ff);
  }

  .testimonial-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0d6efd;
  }

  /* Stars */
  .stars i {
    color: #ffc107;
    margin: 0 2px;
    font-size: 14px;
  }

  .testimonial-box p {
    font-size: 0.95rem;
    color: #6c757d;
  }

  .testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }

  /* cta */
  .cta {
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
  }

  .cta-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
    opacity: 0.9;
  }

  .cta-buttons .btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
  }

  .cta-buttons .btn-light {
    color: #0d6efd;
  }

  .cta-buttons .btn-outline-light:hover {
    background-color: #ffffff;
    color: #0d6efd;
  }

  @media (max-width: 768px) {
    .cta-box {
      text-align: center;
    }

    .cta-buttons .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }

  /*Contact Section*/

  .contact {
    background: linear-gradient(135deg, #f8f9fa, #eef6ff);
  }

  /* Form Card */
  .contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  }

  .form-control, .form-select {
    border-radius: 8px;
    padding: 10px 30px;
    font-size: 0.95rem;
  }

  .form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: #0d6efd;
  }

  /* Info Box */
  .contact-info {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.3);
  }

  .contact-info ul li {
    font-size: 0.95rem;
    color: #495057;
  }

  .map iframe {
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .contact-form,
    .contact-info {
      text-align: center;
    }
  }

  /*Footer Section*/

  /* Background Gradient */
  .footer {
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    color: #ffffff;
  }

  /* Glass Box */
  .footer-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.2);
  }

  .footer p,
  .footer li {
    font-size: 0.95rem;
    opacity: 0.9;
  }

  .footer ul li {
    margin-bottom: 8px;
  }

  .footer ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
    opacity: 0.9;
  }

  .footer ul li a:hover {
    opacity: 1;
    padding-left: 5px;
  }

  /* Social Icons */
  .social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
    opacity: 0.9;
  }

  .social-icons a:hover {
    transform: translateY(-3px);
    opacity: 1;
  }

  .border-top {
    border-color: rgba(255,255,255,0.3) !important;
  }

  @media (max-width: 768px) {
    .footer {
      text-align: center;
    }
  }
 
/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  /*background: linear-gradient(135deg, #7b2ff7, #a044ff);*/
  background:blue;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
  transition: 0.3s;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
}
  .back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
}