 /* Section padding */
.professional_builder {
    padding: 50px 0;
}

/* Flexbox row for equal height */
.builder_all {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* equal spacing between cards */
}

/* Card styling */
.builder {
    flex: 1 1 calc(25% - 20px); /* 4 cards in a row */
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes text evenly */
}

/* Hover effect */
.builder:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Icon styling */
.builder i {
    font-size: 40px;
    color: red;
    margin-bottom: 15px;
}

/* Responsive - 2 cards per row */
@media (max-width: 991px) {
    .builder {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Responsive - 1 card per row */
@media (max-width: 576px) {
    .builder {
        flex: 1 1 100%;
    }
}
.about-section {
    padding: 60px 20px;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left text */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: red;
}
.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}
.about-text p {
    font-size: 16px;
    line-height: 1.7;
    /* margin-bottom: 15px; */
    color: #555;
}

/* Vision and Mission Row */
.vision-mission {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}
.vision, .mission {
    flex: 1;
    padding: 10px;
    border-left: 4px solid red;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
}
.vision h4, .mission h4 {
    color: red;
    margin-bottom: 10px;
}

/* Contact Us Button */
.btn-contact {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: red;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}
.btn-contact:hover {
    background: #e65c00;
}

/* Right image */
.about-image {
    flex: 1;
    text-align: center;
}
.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .vision-mission {
        flex-direction: column;
    }
    .vision, .mission {
        text-align: left;
    }
}

 .clients-section {
      background: #111;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
    }
    .clients-section h2 {
      font-size: 28px;
      margin-bottom: 40px;
    }
    .testimonial {
      max-width: 700px;
      margin: auto;
      text-align: center;
      background: white;
      padding: 30px;
      border-radius: 15px;
    }
    .testimonial img {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 3px solid #fff;
      margin-bottom: 20px;
    }
    .testimonial p {
      font-style: italic;
      font-size: 16px;
      margin-bottom: 20px;
      color: black;
    }
    .testimonial h3 {
      margin: 5px 0;
      color: #ff3d3d;
    }
    .testimonial span {
      font-size: 14px;
      color: black;
    }
    /* Swiper navigation */
    .swiper-button-next, .swiper-button-prev {
      color: #ff3d3d;
    }
    .swiper-pagination-bullet {
      background: #ff3d3d;
    }
    .brands-section {

  padding: 50px 20px;
  text-align: center;
}

.brands-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  gap: 30px;
  animation: marquee 20s linear infinite;
}

.brand-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  width: 150px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: #ff3d3d;
}

.brand-card img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.brand-card span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Marquee animation */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

  

    /* Contact Info Cards */
    .contact-info {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .card {
      flex: 1;
      min-width: 250px;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      margin-bottom: 10px;
      color: #0d6efd;
   
    }

    /* Form + Map */
    .form-map {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    form {
      flex: 1;
      min-width: 280px;
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    form h2 {
      margin-bottom: 15px;
      /* font-size: 1.5rem; */
    }

    form input, form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;

      resize: none;
    }

    form button {
      background: #0d6efd;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 25px;
    
      cursor: pointer;
      transition: background 0.3s;
    }

    form button:hover {
      background: #084298;
    }

    .map {
      flex: 1;
      min-width: 280px;
      border-radius: 12px;
      overflow: hidden;
      height: 400px;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Responsive Adjustments */
    @media(max-width: 992px) {
      header h1 {
        font-size: 2rem;
      }
      .form-map {
        flex-direction: column;
      }
      .map {
        height: 300px;
      }
    }

    @media(max-width: 600px) {
      header {
        padding: 50px 20px;
      }
      header h1 {
        font-size: 1.8rem;
      }
      .contact-info {
        flex-direction: column;
      }
    }