body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Nav Section Starts */

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

/* Header styles */
header {
  position: flex;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logoo img {
  height: 60px;
  animation: logooFadeIn 1s ease-out forwards;
}

/* Logo animation */
@keyframes logooFadeIn {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

.logoo img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Desktop navigation */
.desktop-nav {
  display: none;
  align-items: center;
}

@media (min-width: 1024px) {
  .desktop-nav {
      display: flex;
      gap: 2.5rem;
  }
}

.nav-item {
  position: relative;
}

.nav-button {
  display: flex;
  align-items: center;
  color: #374151;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

/* Underline animation for nav items */
.nav-button::after,
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #821928;
  transition: width 0.3s ease;
}

.nav-button:hover::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-button:hover {
  color: #111827;
}

.nav-link {
  color: #374151;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #111827;
}

.chevron-icon {
  margin-left: 0.5rem;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.75rem;
  min-width: 14rem;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  animation: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: dropdownSlide 0.4s ease-out forwards;
}

/* Dropdown slide-in animation */
@keyframes dropdownSlide {
  0% {
      opacity: 0;
      transform: translateY(10px);
  }
  80% {
      opacity: 1;
      transform: translateY(-2px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: #1f2937;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #214150;
  color: white;
  border-radius: 4px;
  transform: translateX(5px);
}

/* Sub-dropdown styles */
.sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 14rem;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.sub-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  animation: dropdownSlide 0.4s ease-out forwards;
}

/* CTA buttons */
.cta-buttons {
  display: none;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-buttons {
      display: flex;
      gap: 1.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 1px solid #821928;
  color: #821928;
  background-color: white;
}

.btn-outline:hover {
  background-color: #821928;
  color: white;
  transform: scale(1.05);
}

.btn-primary {
  border: 1px solid transparent;
  color: white;
  background-color: #821928;
}

.btn-primary:hover {
  background-color: #214150;
  transform: scale(1.05);
}

/* Mobile menu button */
.mobile-menu-button {
  display: flex;
  padding: 0.75rem;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
      display: none;
  }
}

.mobile-menu-button:hover {
  color: #111827;
  background-color: #f3f4f6;
  transform: scale(1.1);
}

.mobile-menu-icon {
  width: 28px;
  height: 28px;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.5s ease-in-out;
}

.mobile-menu.active {
  max-height: 100vh;
  padding-bottom: 1rem;
  animation: mobileMenuSlide 0.5s ease-out forwards;
}

/* Mobile menu slide animation */
@keyframes mobileMenuSlide {
  0% {
      opacity: 0;
      transform: translateY(-10px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }

.mobile-nav-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-button:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-dropdown {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.mobile-dropdown.active {
  max-height: 1000px;
  animation: dropdownSlide 0.4s ease-out forwards;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #4b5563;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-sub-dropdown {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.mobile-sub-dropdown.active {
  max-height: 1000px;
  animation: dropdownSlide 0.4s ease-out forwards;
}

.mobile-cta {
  padding: 1.5rem 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.4s;
}

.mobile-menu.active .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta .btn {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .dropdown, .sub-dropdown {
      position: static;
      width: 100%;
      box-shadow: none;
      border: none;
      margin-top: 0;
      transform: none;
      opacity: 1;
      visibility: visible;
      display: none;
  }
  
  .dropdown.active, .sub-dropdown.active {
      display: block;
  }
  
  .sub-dropdown {
      padding-left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
      height: 64px;
  }
  
  .logoo img {
      height: 48px;
  }
  
  .header-container {
      padding: 0 1rem;
  }
}

  /*Nav Section Ends */

/* Main Section Starts */


        /* Main section styles */
        .main-section {
          background-color: #fff;
           color: #111;
           display: flex;
           flex-direction: column;
           align-items: center;
           justify-content: center;
           text-align: center;
           padding: 5rem 1.5rem;
           max-width: 1200px;
           margin: 0 auto;
       }

       /* Badge styles */
       .badge {
           display: inline-block;
           padding: 0.5rem 1.25rem;
           border-radius: 9999px;
           border: 1px solid rgba(0, 0, 0, 0.1);
           font-size: 2rem;
           margin-bottom: 2rem;
           color: #333;
       }

       /* Heading styles */
       .main-heading {
           font-size: 4rem;
           font-weight: 800;
           line-height: 1.2;
           margin-bottom: 1.5rem;
           max-width: 800px;
       }

       /* Description text styles */
       .mdescription {
           font-size: 1.1rem;
           color: #555;
           max-width: 600px;
           margin-bottom: 3rem;
       }

       /* Button styles */
       .mcta-button {
           background-color: #821928;
           color: white;
           font-weight: 600;
           padding: 1rem 2rem;
           border-radius: 0.5rem;
           border: none;
           font-size: 1rem;
           cursor: pointer;
           position: relative;
           transition: transform 0.2s;
       }

       .mcta-button:hover {
        background-color: #214150;
           transform: translateY(-2px);
       }

       /* Button glow effect */
       .button-container {
           position: relative;
           display: inline-block;
       }

       .button-container::after {
           content: "";
           position: absolute;
           top: 0;
           left: 0;
           right: 0;
           bottom: 0;
           background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
           filter: blur(20px);
           border-radius: 1rem;
           z-index: -1;
           opacity: 0.7;
       }

       /* Responsive styles */
       @media (max-width: 768px) {
           .main-heading {
               font-size: 2.5rem;
           }
           
           .mdescription {
               font-size: 1rem;
           }
           
           .mcta-button {
               padding: 0.9rem 1.8rem;
           }
       }

       @media (max-width: 480px) {
           .main-heading {
               font-size: 2rem;
           }
           
           .badge {
               font-size: 0.8rem;
               padding: 0.4rem 1rem;
           }
           
           .main-section {
               padding: 3rem 1rem;
           }
       }




/* Main Section End's */



  /* PROGUARD Sectios Start's */

        /* Hero section container */
        .hero-section {
          width: 100%;
      }

      .grid-container {
          display: grid;
          grid-template-columns: 1fr;
          align-items: stretch; /* Ensures both columns stretch to the same height */
      }

      /* Left content area */
      .content-area {
          display: flex;
          flex-direction: column;
          justify-content: center;
          padding: 3rem 1.5rem;
      }

      .hero-title {
          font-size: 2rem;
          font-weight: 700;
          line-height: 1.2;
          letter-spacing: -0.025em;
          color: #111827;
      }

      .hero-description {
          margin-top: 1.5rem;
          font-size: 1.125rem;
          color: #4b5563;
      }

      /* Form area */
      .form-container {
          margin-top: 2rem;
          display: flex;
          flex-direction: column;
          gap: 1rem;
          max-width: 28rem;
      }

      .email-input {
          height: 3rem;
          padding: 0 1rem;
          border: 1px solid #d1d5db;
          border-radius: 0.375rem;
          font-size: 1rem;
          width: 100%;
      }

      .cta-button {
          height: 3rem;
          background-color: #821928;
          color: white;
          border: none;
          border-radius: 0.375rem;
          padding: 0 1.5rem;
          font-weight: 500;
          font-size: 1rem;
          cursor: pointer;
          transition: background-color 0.2s;
      }

      .cta-button:hover {
          background-color: #214150;
      }

      /* Trust indicators */
      .trust-container {
          margin-top: 2rem;
      }

      .trust-text {
          font-weight: 500;
          color: #1f2937;
      }

      .rating-container {
          display: flex;
          align-items: center;
          margin-top: 0.5rem;
      }

      .stars {
          display: flex;
      }

      .star {
          width: 1.25rem;
          height: 1.25rem;
          fill: #ffd900;
          color: #4f46e5;
      }

      .rating-text {
          margin-left: 0.5rem;
          font-size: 0.875rem;
          color: #4b5563;
      }

      /* Right image area */
      .image-area {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          margin: 0;
          overflow: hidden;
          position: relative;
      }

      .hero-image {
          width: 100%;
          height: 100%;
          object-fit: cover; /* Maintains aspect ratio, covers container */
          display: block;
          max-height: 100%; /* Prevents overflow */
      }

      /* Ensure consistent height for image area */
      .image-area {
          aspect-ratio: 1 / 1; /* Forces a square aspect ratio, adjust as needed */
      }

      /* Responsive styles */
      @media (min-width: 640px) {
          .form-container {
              flex-direction: row;
          }

          .email-input {
              flex: 1;
          }
      }

      @media (min-width: 768px) {
          .grid-container {
              grid-template-columns: 1fr 1fr; /* Two equal columns */
          }

          .content-area {
              padding: 3rem 3rem;
          }

          .hero-title {
              font-size: 3rem;
          }

          .image-area {
              aspect-ratio: auto; /* Allow natural aspect ratio on larger screens */
              height: 100%; /* Match content area height */
          }

          .hero-image {
              height: 100%;
              width: 100%;
              object-fit: cover;
          }
      }

      @media (min-width: 1024px) {
          .content-area {
              padding: 3rem 4rem;
          }

          .hero-title {
              font-size: 3.75rem;
          }
      }

      /* Mobile-specific adjustments */
      @media (max-width: 767px) {
          .image-area {
              max-height: 50vh; /* Limit image height on mobile */
              aspect-ratio: 4 / 3; /* Adjust for mobile to avoid excessive height */
          }

          .hero-image {
              width: 100%;
              height: 100%;
              object-fit: cover;
          }
      }

/* PROGUARD Section End's*/

/* Sec0nd Hero Section Starts */

        /* Section styles */
        .doors-section {
            width: 100%;
            padding: 120px 20px;
            background-color: #faf9f6;
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .decorative-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, rgba(255,193,7,0.05) 100%);
            z-index: 0;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            left: -100px;
        }

        .circle-2 {
            width: 500px;
            height: 500px;
            bottom: -200px;
            right: -200px;
        }

        .decorative-line {
            position: absolute;
            width: 150px;
            height: 3px;
            background-color: #821928;
            top: 80px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
        }

        .store-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .store-section-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }

        /* Images container */
        .store-images-container {
            display: flex;
            gap: 20px;
            position: relative;
            height: 450px;
        }

        .store-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
            flex: 1;
        }

        .store-image-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .store-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .store-image-wrapper:hover img {
            transform: scale(1.08);
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            height: 50%;
            border-radius: 0 0 12px 12px;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .store-image-wrapper:hover .image-overlay {
            opacity: 1;
        }

        .image-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            font-size: 18px;
            font-weight: 500;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.1s;
        }

        .store-image-wrapper:hover .image-caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* Content styles */
        .content-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            max-width: 600px;
            position: relative;
        }

        .content-badge {
            position: absolute;
            top: -40px;
            left: 0;
            background-color: #821928;
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.1s forwards;
        }

        .store-subtitle {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #666;
            margin-bottom: 16px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.3s forwards;
            position: relative;
            display: inline-block;
        }

        .store-subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #821928;
            transition: width 0.5s ease;
        }

        .content-container:hover .store-subtitle::after {
            width: 100%;
        }

        .store-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.1;
            color: #222;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.5s forwards;
            position: relative;
        }

        .store-title span {
            color: #214150;
            position: relative;
            display: inline-block;
        }

        .store-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-color: #333b3f2a;
            z-index: -1;
        }

        .description {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.7s forwards;
            position: relative;
        }

        .ffeatures-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 0.9s forwards;
        }

        .ffeature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ffeature-icon {
            width: 30px;
            height: 30px;
            background-color: rgba(255, 193, 7, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #214150;
            font-size: 14px;
        }

        .store-cta-container {
            display: flex;
            gap: 20px;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease 1.1s forwards;
        }

        .store-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 54px;
            padding: 0 36px;
            background-color: #821928;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .store-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            z-index: -1;
        }

        .store-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
        }

        .store-cta-button:hover::before {
            transform: translateX(0);
        }

        .store-cta-secondary {
            color: #214150;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .store-cta-secondary:hover {
            color: #214150;
        }

        .store-cta-secondary i {
            transition: transform 0.3s ease;
        }

        .store-cta-secondary:hover i {
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        /* Media queries for responsiveness */
        @media (min-width: 992px) {
            .store-section-grid {
                grid-template-columns: 1fr 1fr;
                align-items: center;
                gap: 80px;
            }

            .store-images-container {
                height: 550px;
            }
        }

        @media (max-width: 991px) {
            .doors-section {
                padding: 80px 20px;
            }

            .store-images-container {
                height: 400px;
            }

            .store-title {
                font-size: 42px;
                margin-left: 20px;
            }
            .content-badge {
                margin-left: 10px;
            }
            .store-subtitle {
                margin-left: 20px;
            }
        }

        @media (max-width: 767px) {
            .doors-section {
                padding: 60px 20px;
            }

            .store-images-container {
                flex-direction: column;
                height: auto;
                gap: 30px;
                width: auto;
            }

            .store-image-wrapper {
                height: 300px;
            }

            .store-title {
                font-size: 36px;
            }
            .description {
                margin-left: 20px;
            }

            .ffeatures-list {
                grid-template-columns: 1fr;
                margin-left: 20px;
            }

            .store-cta-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-left: 20px;
            }
        }

/* Second Hero Section End's */

/* Quality Section Starts */

.quality-section-windows {
    width: 100%;
    position: relative;
    padding: 5rem 2rem;
    width: auto;
    background: linear-gradient(135deg, #214150 0%, #821928 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .decorative-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(50px);
  }
  
  .blob-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
  }
  
  .blob-2 {
    bottom: 15%;
    right: 5%;
    width: 400px;
    height: 400px;
  }
  
  .quality-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  
  .quality-header {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }
  
  .quality-header h3 {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
  }
  
  .quality-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px;
    width: 100%;
    background: linear-gradient(to right, rgba(130, 25, 40, 0.5), transparent);
  }
  
  .quality-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  
  .quality-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .quality-title span {
    position: relative;
    display: inline-block;
  }
  
  .quality-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #821928;
  }
  
  .description p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
  }
  
  .quality-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-box {
    padding: 2rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .icon-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .feature-box:hover .icon-glow {
    opacity: 1;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .feature-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }
  
  .arrow {
    margin-top: auto;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover .arrow {
    transform: translateX(4px);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes slideLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes slideRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  .animate-quality-header {
    animation: fadeIn 0.8s ease forwards;
  }
  
  .animate-title {
    animation: slideLeft 0.8s ease 0.2s forwards;
    opacity: 0;
  }
  
  .animate-description {
    animation: slideRight 0.8s ease 0.4s forwards;
    opacity: 0;
  }
  
  .animate-feature {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
  }
  
  .feature-1 { animation-delay: 0.6s; }
  .feature-2 { animation-delay: 0.8s; }
  .feature-3 { animation-delay: 1.0s; }
  .feature-4 { animation-delay: 1.2s; }
  
  /* Responsive */
  @media (min-width: 768px) {
    .quality-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .quality-features {
      grid-template-columns: repeat(2, 2fr);
    }
    
    .quality-title h2 {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .quality-features {
      grid-template-columns: repeat(4, 2fr);
    }
    
    .quality-title h2 {
      font-size: 3.5rem;
    }
  }

/* Quality Sectyion End's */

/* Status Section Starts*/

.stats-section {
    padding: 80px 20px;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.stats-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.stats-heading span {
    color: #3f0c07;
    position: relative;
}

.stats-heading span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #2c3e50;
    transition: width 0.5s ease;
    animation: underline 1s ease-in 0.5s forwards;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeIn 1s ease-in 0.3s forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    position: relative;
    padding: 20px;
    text-align: center;
    opacity: 0;
    animation: fadeInScale 0.8s ease-in forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.6s; }
.stat-item:nth-child(2) { animation-delay: 0.8s; }
.stat-item:nth-child(3) { animation-delay: 1s; }
.stat-item:nth-child(4) { animation-delay: 1.2s; }

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #e6f0fa, #fff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #214150;
    border-right-color: #821928;
    opacity: 0.3;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.stat-item:hover .stat-circle {
    transform: scale(1.1);
    background: linear-gradient(135deg, #214150, #821928);
}

.stat-item:hover .stat-circle::before {
    opacity: 1;
    transform: rotate(360deg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #fff;
}

.stat-item p {
    font-size: 1rem;
    color: #214150;
    position: relative;
}

.stat-item p::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #214150;
    transition: width 0.3s ease;
}

.stat-item:hover p::after {
    width: 50%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes underline {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-heading {
        font-size: 2.5rem;
    }

    .stats-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-heading {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Status Section end's */

/* Light Section Starts */

        .light-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .light-hero-section {
            display: flex;
            flex-direction: column;
            padding: 60px 0;
            opacity: 0;
            animation: fadeIn 1s ease-in forwards;
        }

        .robot-container {
            border-radius: 8px;
            padding: 40px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        .robot-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 8px;
        }

        .light-content-container {
            padding: 0 10px;
        }

        .light-container h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #214150;
        }

        .light-container p {
            font-size: 16px;
            color: #666666;
            margin-bottom: 20px;
        }

        .light-cta-button {
            display: inline-block;
            height: 54px;
            background-color: #821928;
            color: white;
            font-weight: 500;
            font-size: 16px;
            padding: 12px 24px;
            border-radius: 10px;
            text-decoration: none;
            margin-top: 10px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
        }

        .light-cta-button:hover {
            background-color: #214150;
            transform: scale(1.05);
        }

        /* Fade-in animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Media queries for responsive design */
        @media (min-width: 768px) {
            .light-hero-section {
                flex-direction: row;
                align-items: center;
                gap: 60px;
            }

            .robot-container {
                flex: 1;
                margin-bottom: 0;
            }

            .light-content-container {
                flex: 1;
                padding: 0;
            }

            .light-container h1 {
                font-size: 36px;
            }
        }

        @media (min-width: 1024px) {
            .light-container h1 {
                font-size: 42px;
            }

            .light-container p {
                font-size: 18px;
            }
        }
/* Light Section End's */

/* Knock Knock Doors Section Starts */

.knock-container {
  background-color: var(--primary-color);
color: var(--text-color);
line-height: 1.6;
overflow-x: hidden;
max-width: 1500px;
margin: 0 auto;
padding: 2rem;
}

.knock-header {
margin-bottom: 2rem;
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}

.header-text {
max-width: 70%;
}

@media (max-width: 768px) {
.header-text {
max-width: 100%;
margin-bottom: 1.5rem;
}

.knock-header {
flex-direction: column;
}
}

.knock-container h1 {
font-size: 3rem;
line-height: 1.2;
margin-bottom: 1rem;
color: #000;
}

@media (max-width: 768px) {
.knock-container h1 {
font-size: 2.2rem;
}
}

.knock-container p.subtitle {
font-size: 1.1rem;
margin-bottom: 2rem;
max-width: 600px;
color: #000;
}

.btnk {
display: inline-block;
background-color: #ff3366;
color: #fff;
padding: 0.8rem 1.5rem;
text-decoration: none;
font-weight: bold;
border: none;
cursor: pointer;
transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.btnk:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.jokes-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 2rem;
margin-top: 3rem;
}

.joke-card {
aspect-ratio: 4/4;
position: relative;
overflow: hidden;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.5s, box-shadow 0.5s;
}

.joke-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
z-index: 2;
}

.joke-image {
width: 100%;
height: 100%;
overflow: hidden;
}

.joke-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
}

.joke-card:hover .joke-image img {
transform: scale(1.1);
}


.joke-number {
position: absolute;
top: 15px;
left: 15px;
font-size: 2.5rem;
font-weight: bold;
color: white;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
z-index: 1;
}

.random-joke-section {
margin-top: 3rem;
text-align: center;
padding: 2rem;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 8px;
display: none;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s, transform 0.5s;
}

.random-joke-section.visible {
display: block;
opacity: 1;
transform: translateY(0);
}

.joke-dialog {
margin-top: 1.5rem;
min-height: 150px;
}

.joke-text {
font-size: 1.2rem;
margin-bottom: 1rem;
color: white;
}

.joke-punchline {
font-size: 1.5rem;
font-weight: bold;
margin-top: 1rem;
color: var(--secondary-color);
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s, transform 0.5s;
}

.joke-punchline.visible {
opacity: 1;
transform: translateY(0);
}

@media (max-width: 768px) {
.knock-container {
padding: 1rem;
}

.jokes-container {
grid-template-columns: 1fr;
gap: 1rem;
}
}

/* Floating animation for cards */
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-10px);
}
100% {
transform: translateY(0px);
}
}

.joke-card:nth-child(odd) {
animation: float 6s ease-in-out infinite;
}

.joke-card:nth-child(even) {
animation: float 7s ease-in-out infinite;
animation-delay: 1s;
}

/* Pulse animation for buttons */
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(243, 245, 166, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(243, 245, 166, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(243, 245, 166, 0);
}
}

.btnk {
animation: pulse 2s infinite;
}

/* Rotating animation for joke numbers */
@keyframes rotate {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(5deg);
}
75% {
transform: rotate(-5deg);
}
100% {
transform: rotate(0deg);
}
}

.joke-number {
animation: rotate 3s ease-in-out infinite;
}


/* Knock Knock Doors Section Ends */

/* Wipro Section Starts */

.wipro-section {
    width: 100%;
    max-width: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.wipro-image {
    width: 1900px;
    max-width: 2000px;
    height: 400px;
    display: block;
}

/* Mobile-specific styles to maintain image size */
@media (max-width: 768px) {
    .wipro-image {
        width: 100%;
        /* Fixed height to maintain aspect ratio on mobile */
        max-height: 200px;
        object-fit: contain;
    }
}

/* Wipro Section End's */

/* Request Section Starts */

.request-section {
    background-color: #FFC107; /* Yellow background */
    padding: 20px;
    width: 100%;
    height: 120px;
    
}

.request-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 15px;
    
    
}

.request-content h2 {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-right: 10px;
    text-align: left;
}

.request-buttons {
    display: flex;
    gap: 15px;
    
}

.request-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Ensure the link behaves like a button */
    text-decoration: none !important; /* Remove underline with higher priority */
    color: inherit; /* Ensure text color is inherited from specific classes */
}

.request-btn-primary {
    background-color: #821928;
    color: #fff;
}

.request-btn-primary:hover {
    background-color: #214150;
}

.request-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #821928;
}

.request-btn-secondary:hover {
    background-color: #214150;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .request-section {
      height: 220px;
    }
    .request-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .request-content h2 {
        font-size: 18px;
    }

    .request-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .request-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .request-content h2 {
        font-size: 16px;
    }

    .request-btn {
        font-size: 12px;
        padding: 10px;
    }
}

/* Request Section Ends */

/* Products Section Starts */

.Product-container {
  max-width: 1500px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-titlee {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-left: 100px;
}

.view-all {
  color: #333;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-right: 100px;
}

.view-all i {
  margin-left: 5px;
}

.product-slider {
  position: relative;
  overflow: hidden;
}

.product-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  gap: 20px;
  padding: 10px 0;
}

.product-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.product-card {
  flex: 0 0 auto;
  width: calc(20% - 16px);
  background: white;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #ddd;
  z-index: 2;
}

.wishlist-btn.active {
  color: #ff4d6d;
}

.product-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brand {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
  height: 40px;
  overflow: hidden;
}

.rating {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  margin-right: 5px;
}

.review-count {
  font-size: 12px;
  color: #777;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.add-to-cart {
  width: 100%;
  padding: 10px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.add-to-cart i {
  margin-right: 8px;
}

.add-to-cart:hover {
  background-color: #000;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: #f8f8f8;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .product-card {
      width: calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  .product-card {
      width: calc(50% - 10px);
  }
  .section-titlee {
    font-size: 15px;
    margin-right: 100px;
  }
  .view-all {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .product-card {
      width: calc(100% - 10px);
  }
  
  .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }
}
/* Products Section End's */


/* quotation Section Starts */

.contact-container {
  font-family: 'Inter', sans-serif;
  display: flex;
  min-height: calc(100vh - 45px);
}

.left-section {
  flex: 1;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.logo-icon {
  width: 250px;
  height: 90px;
  margin-right: 10px;
}

.heading {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.subheading {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.benefits {
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.check-icon {
  background-color: #0000ff;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 16px;
  line-height: 1.5;
}

.right-section {
  flex: 1;
  background: linear-gradient(to right, #0000ff 0%, #0000ff 60%, #00ffff 60%, #00ffff 70%, #7fffd4 70%, #7fffd4 80%, #ff4500 80%, #ff4500 90%, #ff69b4 90%, #ff69b4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.form-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.form-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.form-input, 
.form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin: 25px 0;
}

.checkbox-input {
  margin-right: 10px;
  margin-top: 3px;
}

.checkbox-label {
  font-size: 14px;
  line-height: 1.5;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background-color: #0000ff;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #0000cc;
}

@media (max-width: 992px) {
  .contact-container {
      flex-direction: column;
  }

  .left-section, 
  .right-section {
      padding: 40px 20px;
  }

  .right-section {
      background: linear-gradient(to bottom, #821928   0%, #821928   60%, #821928   60%, #214150   70%, #214150   70%, #214150   80%, #214150 80%, #214150 90%, #214150 90%, #214150 100%);
  }

  .form-card {
      max-width: 100%;
  }

  .form-row {
      flex-direction: column;
      gap: 20px;
  }

  .heading {
      font-size: 36px;
  }
}

/* quotation Section End's */

/* CATEGORIES Section Start's */


.categories-container {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  color: #1a202c;
  padding: 20px;
}

.categories-header {
  color: #4a5568;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.categories-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 30px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.category-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.category-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #fff;
}

.category-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
}

.arrow-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.arrow-button:hover {
  background-color: #f7fafc;
}

.arrow-icon {
  width: 18px;
  height: 18px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .categories-title {
      font-size: 36px;
  }

  .categories-grid {
      grid-template-columns: 1fr;
  }

  .category-image {
      height: 250px;
  }
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .categories-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}


/* CATEGORIES Section End's */


/* FAQ Section Start's */

    /* Container styles */
    .faq-section {
        max-width: 1000px;
        margin: 4rem auto;
        padding: 0 1.5rem;
        position: relative;
      }
      
      /* Decorative leaves */
      .leaf-left {
        position: absolute;
        left: -30px;
        top: 0;
        width: 120px;
        z-index: -1;
      }
      
      .leaf-right {
        position: absolute;
        right: -30px;
        top: 0;
        width: 120px;
        z-index: -1;
      }
      
      /* Header styles */
      .faq-header {
        text-align: center;
        margin-bottom: 3rem;
        padding-top: 1rem;
      }
      
      .faq-subtitle {
        font-size: 1rem;
        font-weight: 400;
        color: #555;
        margin-bottom: 0.5rem;
      }
      
      .faq-title {
        font-size: 2.25rem;
        font-weight: 700;
        color: #222;
      }
      
      /* FAQ items container */
      .faq-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }
      
      /* Individual FAQ item */
      .faq-item {
        border: 1px solid #e2e8f0;
        border-radius: 0.5rem;
        overflow: hidden;
        transition: all 0.3s ease;
      }
      
      /* Active (expanded) FAQ item */
      .faq-item.active {
        background-color: #f0f7f4; /* Light mint green background */
      }
      
      /* Question button */
      .faq-question {
        width: 100%;
        padding: 1.5rem;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.125rem;
        font-weight: 500;
        color: #222;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      
      .faq-question:hover {
        color: #000;
      }
      
      .faq-question:focus {
        outline: none;
      }
      
      /* Expanded question container */
      .faq-expanded {
        padding: 0 1.5rem 1.5rem;
        display: none;
      }
      
      .faq-item.active .faq-expanded {
        display: block;
        animation: fadeIn 0.3s ease;
      }
      
      /* Question header with close button */
      .faq-question-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 0.75rem;
      }
      
      .faq-question-text {
        font-size: 1.125rem;
        font-weight: 500;
        color: #222;
      }
      
      /* Close button */
      .faq-close {
        background: none;
        border: none;
        cursor: pointer;
        color: #666;
        padding: 0.25rem;
        line-height: 0;
      }
      
      .faq-close:hover {
        color: #000;
      }
      
      /* Answer text */
      .faq-answer {
        color: #555;
        line-height: 1.6;
      }
      
      /* Icons */
      .icon {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      
      /* Animations */
      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }
      
      /* Responsive styles */
      @media (max-width: 768px) {
        .faq-section {
          margin: 3rem auto;
          padding: 0 1rem;
        }
        
        .leaf-left {
          width: 80px;
          left: -10px;
        }
        
        .leaf-right {
          width: 80px;
          right: -10px;
        }
        
        .faq-title {
          font-size: 1.75rem;
        }
        
        .faq-subtitle {
          font-size: 0.875rem;
        }
        
        .faq-question, .faq-question-text {
          font-size: 1rem;
        }
      }
      
      @media (max-width: 480px) {
        .faq-section {
          margin: 2rem auto;
        }
        
        .leaf-left, .leaf-right {
          width: 60px;
        }
        
        .faq-title {
          font-size: 1.5rem;
        }
        
        .faq-question {
          padding: 1.25rem;
        }
      }

/* FAQ Section End's */

/* Scroll Section Starts */

/* Main container */
.scroll-container {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    padding: 20px;
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 
        Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f8f7f2; /* Light beige background matching the image */
    color: #222222; /* Dark text color matching the image */
    line-height: 1.6;
}


/* Scrolling text container with borders */
.scrolling-text-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* Hide text that scrolls outside the container */
    border-top: 1px solid #e0dfd7; /* Top border matching the image */
    border-bottom: 1px solid #e0dfd7; /* Bottom border matching the image */
    background-color: #f8f7f2; /* Ensure background color is consistent */
}

/* Scrolling text element */
.scrolling-text {
    display: inline-block;
    white-space: nowrap; /* Prevent text from wrapping */
    padding: 24px 0; /* Vertical padding to match the image */
    font-size: clamp(1.25rem, 3vw, 2.5rem); /* Responsive font size */
    font-weight: 500; /* Medium font weight to match the image */
    animation: scrollText 30s linear infinite; /* Smooth scrolling animation */
    will-change: transform; /* Optimize for animation performance */
}

/* Each text span element */
.scrolling-text span {
    display: inline-block;
    padding-right: 50px; /* Space between repeated text */
}

/* Scrolling animation */
@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%); /* Move text completely to the left */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scrolling-text {
        padding: 16px 0; /* Smaller padding on mobile */
    }
}

/* Prevent animation during page load for better performance */
.no-animation {
    animation: none !important;
}

/* Scroll Section Starts */

/* Footer Section Starts */

.footer {
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: #821928;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
  position: relative;
}

.footer-column ul li a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #214150;
}

/* Dropdown Styles */
.ddropdown {
  position: relative;
}

.ddropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ddropdown-toggle .fa {
  font-size: 10px;
  color: #555;
  transition: transform 0.3s ease, color 0.2s ease;
}

.ddropdown:hover .ddropdown-toggle {
  color: #214150;
}

.ddropdown:hover .ddropdown-toggle .fa {
  transform: rotate(180deg);
  color: #214150;
}

.ddropdown-menu {
  display: none;
  position: relative;
  left: 0;
  background-color: #fff;
  min-width: 100%;
  border-radius: 6px;
  z-index: 10;
  padding: 8px 0;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ddropdown:hover .ddropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ddropdown-menu li {
  margin-bottom: 0;
  padding: 0;
}

.ddropdown-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ddropdown-menu li a:hover {
  background-color: #f5f9ff;
  color: #214150;
}

.newsletter {
  max-width: 400px;
}

.newsletter h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-form {
  display: flex;
  position: relative;
  margin-bottom: 30px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  background-color: #f5f9ff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.05);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 24px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-button:hover {
  background-color: #333;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.contact-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-column p {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin-right: 50px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.copyright {
  color: #555;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #111;
  font-size: 18px;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #555;
}

@media (max-width: 992px) {
  .footer-content {
      gap: 40px;
  }
  
  .footer-column {
      flex: 0 0 calc(50% - 20px);
  }
  
  .newsletter {
      flex: 0 0 100%;
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
  }
  
  .footer-column {
      flex: 0 0 100%;
  }
  
  .contact-info {
      flex-direction: column;
      gap: 20px;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
  
  .social-icons {
      justify-content: center;
  }

  .ddropdown-menu {
      position: static;
      background-color: #fafafa;
      min-width: 100%;
      border-radius: 4px;
      margin-top: 0;
      padding: 8px 0;
      opacity: 1;
      transform: none;
  }

  .ddropdown:hover .ddropdown-menu {
      display: block;
  }
}

/* Footer Section End's */