input {
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
}

.rating-stars {
    color: #F9C316;
    font-size: 30px;
}

.star-half {
    position: relative;
}

.star-half::before {
    content: '\2605';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #F9C316;
}

.star-half::after {
    content: '\2605';
    color: #e5e7eb;
}

.green-section {
    background-color: #066f59;
    padding: 1rem 1rem;
    position: relative;
    /* z-index: 1; */
}

/* .form-wrapper {
    position: relative;
    z-index: 2;
    margin-top: -465px;
    
} */

.form-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0px 3px 15px #019E7F4E;
    padding: 2rem 2rem 0 2rem;
}

.bullet-point::before {
    content: '●';
    color: #10b981;
    margin-right: 0.5rem;
}

.product-option {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    width: 80px;
    font-size: 0.9rem;
}

.product-option:hover {
    border-color: #10b981;
}

.submit-btn {
    background-color: #10b981;
    color: white;
    font-weight: bold;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0e9f6e;
}

.form-note {
    font-size: 0.8rem;
}

.form-note a {
    color: #10b981;
    text-decoration: none;
}



.carousel-container {
    position: relative;
    max-width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.empty-container {
    position: relative;
    max-width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #006e5f;
}

.flip-card {
    width: 100%;
    max-width: 750px;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
    line-height: 2rem;
}

.flip-card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 2rem 0;
    color: white;
}

.flip-card-front,
.flip-card-back {
    background-color: transparent;
}

.flip-card h2 {
    font-weight: 700;
}

.flip-card ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.flip-card li {
    margin-bottom: 1rem;
}

.flipped {
    transform: rotateY(180deg);
}

.flip-card-back {
    transform: rotateY(180deg);
}

/* Arrows */
.carousel-controls {
    position: absolute;
    bottom: -50px;
    right: 40px;
    display: flex;
    gap: 50px;
  }
  
  .arrow-btn {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0;
  }
  
  .arrow-btn svg {
    width: 24px;
    height: 28px;
    fill: white;
  }
  
  .arrow-btn:hover {
    background-color: transparent;
  }


/* .fade-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.fade-slide.active {
    opacity: 1;
    z-index: 1;
} */

.testimonial-text {
    font-size: 1.1rem;
    font-weight: 400;
}

.testimonial-author {
    margin-top: 1rem;
}

.border-end1 {
    border-right: 2px solid #7C7C7C;
    /* Or your preferred color */
}

/* .logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    justify-items: center;
    align-items: center;
    padding: 20px;
}

.logo-grid img {
    height: 100px !important;

} */

.testimonial-logo {
    height: 24px;
    margin-left: 1rem;
}




.testimonial-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 1;
}

.testimonial-item {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding-right: 50px;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 1;
}

.testimonial-item p {
    line-height: 2rem;
}

.screenshot-quote-mark {
    font-family: Arial, sans-serif;
    /* Matches the modern quote style */
    font-size: 42px;
    /* Very close to screenshot size */
    color: #8a8a8a;
    /* Matches the gray in the screenshot */
    font-weight: 700;
    /* Bolder look like the image */
    line-height: 1;
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
    position: relative;
    top: -6px;
    /* Aligns visually with text */
}

.pl-30 {
    padding-left: 30px;
}

.dropdown-multiselect {
    cursor: pointer;
}

.z-100 {
    z-index: 100;
}


/* 
.logo-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0px;
} */


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    line-height: 65px;
}

.modal1 {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #00705A;
}

.modal1 h2 {
    font-size: 35px;
    font-weight: 700;
}

.modal1 p {
    margin: 0.8rem 0;
}

.modal1 a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.modal1 button {
    padding: 10px 20px;
    margin: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    width: 160px;
}

.exit-btn {
    background-color: white;
    border: 1px solid #008060;
    color: #008060;
}

.demo-btn {
    background-color: #008060;
    color: white;
    border: 1px solid #008060;
}

@media (max-width: 576px) {
    /* .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    } */

    .flip-card-inner {
        font-size: 0.9rem;
    }

    .flip-card h2 {
        font-size: 1.3rem;
    }

    .carousel-controls {
        bottom: 10px;
        right: 20px;
    }

    .arrow-btn {
        width: 15px;
        height: 28px;
    }
    .logo {
        width: 65px;
    }

    .row-wrapper {
        height: 65px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    /* .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    } */
    .nav-buttons1 {
        bottom: -5px !important;
        right: -10% !important;
        gap: 30px !important;
      }
    .slide1{
        padding:0 10px !important;
    }
    .slider-container1{
        margin: 20px 0 !important;
        width: 100% !important;
    }
    .border-end1 {
        border-right: 0px solid #7C7C7C;
    }

    .testimonial-item {
        padding: 0px 20px;
    }

    .carousel-controls {
        bottom: -25px;
        right: 20px;
    }

    .flip-card-inner {
        padding: 1rem;
    }

    /* .logo-row img {
        flex: 0 0 40%;
        max-width: 100px;
    } */

    .modal-overlay {

        line-height: 20px !important;
    }

    .modal1 button {

        width: auto !important;
    }

    .form-wrapper {
        margin-top: 0;
    }

    /* .green-section {
        padding-bottom: 2rem;
        background: linear-gradient(to bottom, white 60%, #066f59 40%);
    } */

    .form-shadow {
        box-shadow: 0px 3px 15px #019E7F4E;
        margin: 20px 0;
    }
}
.logo {
    width: 100px;
    height: auto;
    transition: opacity 1s ease-in-out;
}

.row-wrapper {
    position: relative;
    height: 80px;
    margin-bottom: 50px;
}

.logo-set {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
}

.logo-set.active {
    opacity: 1;
    pointer-events: auto;
}


.slider-container1 {
    width: 600px;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
    
  }

  .slider-wrapper1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 280px;
  }

  .slide1 {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0px;
  }

  .slide1 h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .bullet-point1 {
    display: flex;
    align-items: start;
    margin-bottom: 12px;
  }

  .bullet-point1 img {
    width: 18px;
    margin: 3px 20px 0px 10px;
  }

  .bullet-point1 span {
    font-size: 16px;
    line-height: 1.4;
  }

  .bullet-point1 span strong {
    font-weight: bold;
  }

  .nav-buttons1 {
    position: absolute;
    bottom: 10px;
    right: 5%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
  }

  .nav-buttons1 button {
    background: none;
    border: none;
    font-size: 28px;
    color: #B300CB !important;
    cursor: pointer;
  }
  .custom-divider {
    width: 60%;              /* Adjust based on visual match */
    height: 1px;
    background-color: #ccc;  /* Light gray */
  }
  /* Font size for placeholder */
.custom-textarea::placeholder {
    font-size: 13px; /* Change this value as needed */
}

/* Remove placeholder on focus */
.custom-textarea:focus::placeholder {
    color: transparent;
}
/* Font size for placeholder */
.custom-input::placeholder {
    font-size: 13px; /* Adjust if needed */
}

/* Hide placeholder on focus */
.custom-input:focus::placeholder {
    color: transparent;
}