body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}
.trusted-brands-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
  }
.fullscreen-image {
    position: relative;
    height: 100vh;
    background: url('your-image.jpg') no-repeat center center/cover;
}

.middle-image-section {
    padding: 17px 20px;
    min-height: 59vh;
    background-color: #ffffff;
}


.about-section {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
}



.img-fluid {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.main-heading {
    font-size: 2.5rem;
    color: #333;
}

.main-paragraph {
    font-size: 1.2rem;
    color: #666;
}

.icon-container {
    font-size: 2rem;
    color: #007bff;
}

.text-container h4 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.text-container p {
    margin: 0;
    color: #555;
}
  
  .wrapper-1{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .main-heading {
    font-size:128%;
    color: #343a40;
    font-weight: bold;
  }
  
  .feature-box {
    padding: 20px;
    border: none;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    height: 96%;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 10px;
  }
  
  .feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #495057;
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }
  
    .feature-box {
        padding: 15px;
    }
  
    .feature-icon {
        width: 50px;
        height: 50px;
    }
  
    .feature-title {
        font-size: 1rem;
    }
  
    .feature-description {
        font-size: 0.85rem;
    }
  }
@media (max-width: 768px) {
    .icon-container {
        font-size: 1.5rem;
    }

    .text-container h4 {
        font-size: 1.2rem;
    }

    .text-container p {
        font-size: 0.9rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .main-paragraph {
        font-size: 1rem;
    }
}
.trusted-brands {
    
    color: #333; /* Dark text for readability */
}
/* General styles for Contact Us section */
.contact-section {
    
    padding: 40px 20px;
}
.wrapper {
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 200px; /* Increased height to accommodate images */
    margin-top: 5rem;
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0)
    );
  }
  
  @keyframes scrollLeft {
    to {
      left: -200px;
    }
  }
  
  .item {
    width: 200px;
    height: 200px; /* Increased height to match wrapper */
    background-color: transparent;
    border-radius: 6px;
    position: absolute;
    left: max(calc(200px * 7), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    overflow: hidden; /* Ensure images don't overflow */
  }
  
  .item-image {
    width: 100%;
    height: 86%;
    display: block;
  }
  
  /* Animation delays for each item */
  .item1 {
    animation-delay: calc(30s / 7 * (7 - 1) * -1);
  }
  
  .item2 {
    animation-delay: calc(30s / 7 * (7 - 2) * -1);
  }
  
  .item3 {
    animation-delay: calc(30s / 7 * (7 - 3) * -1);
  }
  
  .item4 {
    animation-delay: calc(30s / 7 * (7 - 4) * -1);
  }
  
  .item5 {
    animation-delay: calc(30s / 7 * (7 - 5) * -1);
  }
  
  .item6 {
    animation-delay: calc(30s / 7 * (7 - 6) * -1);
  }
  
  .item7 {
    animation-delay: calc(30s / 7 * (7 - 7) * -1);
  }
  
  
  .trusted-brands-section {
    text-align: center;
    margin: 40px 0;
    
  }
.contact-form .form-control, .contact-form .form-select {
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    background-color: #e63946;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

.contact-form button:hover {
    background-color: #d62828;
    color: #fff;
}

.illustration-wrapper img {
    max-width: 80%;
    border-radius: 10px;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
    }

    .illustration-wrapper img {
        max-width: 100%;
    }
}
/* General Styles */
.wrapper1 {
    padding: 20px;
    margin: auto;
    max-width: 1200px;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
    /* margin-bottom: 20px; */
}

.action-button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.action-button-danger {
    background-color: #dc3545;
    color: #fff;
}

.action-button-danger:hover {
    background-color: #c82333;
}
.trusted-brands img {
    max-height: 50px; /* Limit brand logo size */
    margin: 0 auto;
    display: block;
}

.trusted-brands h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}
/* Mobile View Adjustments */
@media (max-width: 768px) {


    p {
        font-size: 14px;
    }

    .row {
        flex-direction: column;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .middle-image-section {
        padding: 20px 10px;
        min-height: 50vh;
        background-color: #ffffff;
    }

    .fullscreen-image {
        height: 50vh;
        background-size: cover;
    }

    .stat-card h3 {
        font-size: 1.2rem;
    }

    .stat-card p {
        font-size: 0.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}

h1 {
    color: #333333;
    font-size: 24px;
}

.img-fluid {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


h2 {
    font-size: 2rem;
    font-weight: bold;
}

.stat-card {
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.stat-card h3 {
    color: #023B9D;
    font-size: 1.5rem;
}

.stat-card p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666666;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    

    .img-fluid {
        max-width: 100%;
    }

    h1 {
        font-size: 20px;
    }
}
