*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.top-bar {
  background: #1e3a8a; /* Blue background */
  height: 100px;
  width: 100%;
}

.navbar {
  background-color: #fbbf24; /* Yellow background */
  display: flex;
  align-items: center;
  padding: 0px 40px;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
  gap: 20px;
}
.active {
  background-color: #055285; /* Blue color for active link */
  color: rgb(255, 255, 255);
  padding: 20px 20px;
}
.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo img {
  object-fit: contain;
  margin-right: 10px;
  position: absolute!important;
  content: "";
  top: 50%;
  left: 80px;
  height: 180px;
  transform: translate(-50%, -50%);
  width: 180px;
  z-index: 20;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}

.logo-text {
  color: white;
  font-weight: bold;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
/* ============================================================ */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 20px 10px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0003a5; /* Blue hover color */
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10001;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #fdfdfd;
  border-radius: 2px;
  transition: 0.4s;
}

.nav-close {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10002;
  position: fixed;
  top: 20px;
  right: 20px;
}

.nav-close span {
  font-size: 32px;
  color: #001381;
  font-weight: bold;
  line-height: 1;
}


/* ========================================================================== */
/*.company-title {*/
/*  flex: 1;*/
/*  text-align: center;*/
/*  margin: 0 20px;*/
}
    .company-title {
        position:relative;
        
       height: 100%; 
        width: 500px!important;
      
       
    }
.company-title img {
  position: absolute;
  height: 100%;
  width:362px!important;
  content: "";
  left: 30%;
  right: 50%;
  transform: translate(-50%, -50%);
}


.content-1 {
            background-color: rgba(214, 214, 214, 0.548);
        }
       .content-para p{
         margin:0px;
        padding: 20px;
        font-weight: 800;
        font-size: 1.9rem;
        text-align: center;
         animation: blinkColor 1s infinite alternate;
       }
       @keyframes blinkColor {
  0% {
    color: #fbbf24; /* yellow */
  }
  100% {
    color: #0442ee; /* blue */
  }
}


/* Services Section Styles */
.services-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  clip-path: polygon(0 0, 100% 0, 100% 2%, 0 100%);
}

.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(30, 58, 138, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(251, 191, 36, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(30, 58, 138, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.services-title {
  text-align: center;
  color: #1e3a8a;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 80px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 30px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.15);
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(30, 58, 138, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-title::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #1e3a8a, #fbbf24);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.1;
}
 

.services-row {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  }

.service-card {
  width: 200px;
  height: 200px;
  border: 2px solid black;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-icon {
  margin-bottom: 8px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.service-card h3 {
  font-size: 14px;
  margin: 0;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #1e3a8a;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e3a8a, #fbbf24);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.05) 0%,
    rgba(251, 191, 36, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
  border-color: #fbbf24;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1e3a8a, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  padding: 50px;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 50%
  );
  border-radius: 50%;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

.service-card:hover .service-icon::before {
  transform: translateY(0);
}

.service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.1);
}

.service-card h3 {
  color: #1e3a8a;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover h3 {
  color: #fbbf24;
  transform: scale(1.05);
}

.other-solutions {
  margin-top: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 60px 50px;
  border-radius: 25px;
  box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
  text-align: center;
  border: 2px solid #1e3a8a;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.other-solutions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.05) 0%,
    rgba(251, 191, 36, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.other-solutions:hover::before {
  opacity: 1;
}

.solutions-title {
  color: #1e3a8a;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
  position: relative;
}

.solutions-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: #666;
}

.solutions-list span {
  font-weight: 600;
  color: #1e3a8a;
}

.separator {
  color: #fbbf24;
  font-weight: bold;
}

.pickup-btn-solutions {
  background: linear-gradient(135deg, #1e3a8a, #fbbf24);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.pickup-btn-solutions:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}
.pickup-btn {
  position: relative;
  top: 100px;
}
 .web-wash-exp-section img{
    height: 700px;
    width: 100%;
  }


/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-title {
    font-size: 2rem;
    padding: 15px 30px;
  }

  .solutions-list {
    flex-direction: column;
    gap: 10px;
  }

  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 1.5rem;
    padding: 10px 20px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-icon img {
    width: 30px;
    height: 30px;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  /* background: white; */
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><defs><pattern id="cleaning-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23cccccc" opacity="0.3"/><rect x="25" y="25" width="10" height="10" fill="none" stroke="%23cccccc" stroke-width="1" opacity="0.3"/><path d="M20 20 L40 40 M40 20 L20 40" stroke="%23cccccc" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="60" height="60" fill="url(%23cleaning-pattern)"/></svg>'); */
  opacity: 0.5;
  z-index: 1;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.testimonials-title {
  text-align: center;
  color: white;
  font-size: 3rem;
  /* font-weight: 700; */
  font-style: italic;
  margin-bottom: 60px;
  text-transform: uppercase;
  position: relative;
  top: 38px;
  z-index: 4;
}

.testimonials-carousel {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 4;
  overflow: hidden;
  height: 300px;
  gap: 40px;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  gap: 40px;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide.prev {
  transform: translateX(-100%);
}

.testimonial-card {
  background: transparent;
  padding: 40px 30px;
  text-align: center;
  max-width: 350px;
  position: relative;
  flex: 1;
}

.quote-icon {
  font-size: 4rem;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1;
}

.client-name {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.testimonial-text {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 4;
}

.carousel-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: white;
  color: #1e3a8a;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
  .testimonials-carousel {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .testimonial-slide {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    top: 0;
    left: 0;
    gap: 40px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 30px 20px;
  }

  .testimonials-title {
    font-size: 2.5rem;
  }

  .quote-icon {
    font-size: 3rem;
  }

  .client-name {
    font-size: 1.3rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonials-title {
    font-size: 2rem;
  }

  .carousel-controls {
    gap: 20px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
  }
}
/* ============================= */
.service-staic-img img {
  width: 100%;
  height: 800px;
}

/* Footer Section Styles */
.footer-section {
  position: relative;
  background: linear-gradient(135deg, #423333 0%, #2d2d2d 100%);
  color: white;
  /* clip-path: polygon(0 0, 160% 20%, 100% 100%, 0 100%); */

  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("img1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 1;
}

.footer-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #ea4da7 0%, #ff69b4 100%); */

  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 25px;
  position: relative;
  z-index: 2;
  /* clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%); */
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 25px;
}

.footer-column {
  position: relative;
  z-index: 3;
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-circle {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}

.logo-text {
  color: #1e3a8a;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.logo-subtitle {
  color: #333;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 5px;
}

.hanger-icon {
  font-size: 1.5rem;
  margin-top: 5px;
}

.company-description p {
  color: #cccccc;
  line-height: 1.4;
  font-size: 1rem;
}

.footer-heading {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fbbf24;
}

.operating-hours p {
  color: #cccccc;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.social-media {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #fbbf24;
  transform: translateY(-2px);
}

.contact-info p {
  color: #cccccc;
  margin-bottom: 6px;
  font-size: 0.85rem;
  line-height: 1.3;
}

.contact-info strong {
  color: white;
}

.floating-contact-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1e3a8a;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

#lottie-contact {
  width: 30px;
  height: 30px;
}

.contact-text {
  font-weight: 600;
}

.footer-bottom {
  background: #000000;
  padding: 15px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer-column-2 {
  margin-left: 95px !important;
}

.footer-bottom p  {
  color: #cccccc;
  margin: 0;
  font-size: 0.85rem;
}.footer-bottom p span >a {
  text-decoration: none;
  color: #cccccc;
}
.footer-bottom p span >a:hover {
  color: #fbbf24;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
  .footer-section {
    height: auto;
  }
  .footer-column-2 {
    margin-left: 5px !important;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    padding: 35px 20px 15px;
  }

  .logo-circle {
    width: 100px;
    height: 100px;
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 25px;
  }

  .footer-container {
    padding: 35px 15px 20px;
  }

  .logo-circle {
    width: 70px;
    height: 70px;
  }

  .logo-text {
    font-size: 0.8rem;
  }

  .footer-heading {
    font-size: 1rem;
  }
}

/* Why Washing Xpress Section Styles */
.why-washing-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-washing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="clouds" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="8" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="12" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="10" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="6" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23clouds)"/></svg>');
  opacity: 0.3;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.why-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.why-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

/* Central Logo Styles */
.central-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.logo-circle {
  width: 200px;
  height: 200px;
  background: #1e3a8a;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.t-shirt-icon {
  position: relative;
  width: 120px;
  height: 120px;
}

.shirt-left {
  position: absolute;
  left: 0;
  top: 20px;
  width: 60px;
  height: 80px;
  background: #fbbf24;
  border-radius: 30px 30px 0 0;
}

.shirt-right {
  position: absolute;
  right: 0;
  top: 20px;
  width: 60px;
  height: 80px;
  background: #1e3a8a;
  border-radius: 30px 30px 0 0;
}

.clean-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 60px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Benefit Spokes Styles */
.benefit-spokes {
  position: relative;
  width: 100%;
  height: 100%;
}

.benefit-spoke {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.benefit-spoke:hover {
  transform: scale(1.1);
}
.gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
.spoke-icon {
  width: 60px;
  height: 60px;
  background: #fbbf24;
  border: 3px solid #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.spoke-icon svg {
  width: 30px;
  height: 30px;
  color: #1e3a8a;
}

.spoke-text {
  background: #ffffff;
  color: #1e3a8a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  max-width: 150px;
}

/* Position the spokes in a circle */
.benefit-spoke.top {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.benefit-spoke.top-right {
  top: 20%;
  right: 20%;
}

.benefit-spoke.right {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.benefit-spoke.bottom-right {
  bottom: 20%;
  right: 20%;
}

.benefit-spoke.bottom {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.benefit-spoke.bottom-left {
  bottom: 20%;
  left: 20%;
}

.benefit-spoke.left {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.benefit-spoke.top-left {
  top: 20%;
  left: 20%;
}

/* Responsive Design for Why Section */
@media (max-width: 1024px) {
  .why-content {
    min-height: 500px;
  }

  .logo-circle {
    width: 150px;
    height: 150px;
  }

  .t-shirt-icon {
    width: 90px;
    height: 90px;
  }

  .shirt-left,
  .shirt-right {
    width: 45px;
    height: 60px;
  }

  .spoke-icon {
    width: 50px;
    height: 50px;
  }

  .spoke-icon svg {
    width: 25px;
    height: 25px;
  }

  .spoke-text {
    font-size: 0.8rem;
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .why-content {
    min-height: 400px;
  }

  .logo-circle {
    width: 120px;
    height: 120px;
  }

  .t-shirt-icon {
    width: 70px;
    height: 70px;
  }

  .shirt-left,
  .shirt-right {
    width: 35px;
    height: 45px;
  }

  .spoke-icon {
    width: 40px;
    height: 40px;
  }

  .spoke-icon svg {
    width: 20px;
    height: 20px;
  }

  .spoke-text {
    font-size: 0.7rem;
    max-width: 100px;
    padding: 6px 12px;
  }

  /* Adjust spoke positions for mobile */
  .benefit-spoke.top {
    top: 5%;
  }

  .benefit-spoke.top-right {
    top: 15%;
    right: 15%;
  }

  .benefit-spoke.right {
    right: 5%;
  }

  .benefit-spoke.bottom-right {
    bottom: 15%;
    right: 15%;
  }

  .benefit-spoke.bottom {
    bottom: 5%;
  }

  .benefit-spoke.bottom-left {
    bottom: 15%;
    left: 15%;
  }

  .benefit-spoke.left {
    left: 5%;
  }

  .benefit-spoke.top-left {
    top: 15%;
    left: 15%;
  }
}

@media (max-width: 480px) {
  .why-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .why-content {
    min-height: 350px;
  }

  .logo-circle {
    width: 100px;
    height: 100px;
  }

  .t-shirt-icon {
    width: 60px;
    height: 60px;
  }

  .shirt-left,
  .shirt-right {
    width: 30px;
    height: 40px;
  }

  .spoke-icon {
    width: 35px;
    height: 35px;
  }

  .spoke-icon svg {
    width: 18px;
    height: 18px;
  }

  .spoke-text {
    font-size: 0.6rem;
    max-width: 80px;
    padding: 4px 8px;
  }
}

/* Advanced Contact System Styles */
.contact-container {
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 1000;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-lottie {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  transition: all 0.3s ease;
}

.contact-lottie:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}
