/* Custom CSS for Naw Water V2 */
body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Roboto",
        sans-serif;
    line-height: 1.6;
    color: #212529;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6 !important;
}

.nav-link {
    color: #6b7280 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6 !important;
}

/* Buttons */
.btn-primary {
    background: #3b82f6;
    border-color: #3b82f6;
    border-radius: 25px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    background: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1f2937;
}

.hero-title .fresh-water {
    color: #3b82f6;
}

.switch-text {
    font-size: 3rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0;
}

.recycled-water {
    color: #10b981;
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.show-animate {
    opacity: 1;
    transform: translateY(0);
}
.stat-text {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color:#4b5563;
}

.cost-text {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits {
    display: flex;
    justify-content: center;
  
}

.contact-card1 {
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   height: 100%;
       width: 100%;
    padding:8px 35px 8px 35px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
}

.contact-card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item {
    text-align: center;
    padding:2rem;
    border: 1px solid #ccc
}

.benefits i {
    color:#2563EB;
    font-size: 2rem;
    font-weight: bold;
}
.benefit-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-number.savings {
    color: #10b981;
}

.benefit-number.quality {
    color: #3b82f6;
}

.benefit-number.supply {
     color: red;
}

.benefit-label {
    font-weight: 500;
    font-size: 1.3rem;
}

.trust-text {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.chat-widget:hover {
    transform: scale(1.1);
}

/* Footer */
.footer-dark {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 2rem;
}

.footer-dark h6 {
    color: #f9fafb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-dark a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dark a:hover {
    color: #3b82f6;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.9rem;
}

.copyright {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-title1 {
        font-size: 2rem !important;
        ;
    }

    .mission-title,
    .why-title {
        font-size: 2rem;
    }
    .price {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .delivery-features li::before {
        top: 0.5rem;
    }


    .switch-text {
        font-size: 1.5rem;
    }

    .benefits {
        gap: 2rem;
    }

    .benefit-number {
        font-size: 2rem;
    }
    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .trust-indicators {
        gap: 1rem;
    }

    .radio-card {
        padding: 1rem;
    }

    .chat-widget {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .two-column {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .content-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .security-icons {
        flex-direction: column;
    }
    

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
        ;
    }

    .hero-title2 {
        font-size: 2.4rem !important;
    }
    .switch-text {
        font-size: 1.25rem;
    }

    .benefits {
        gap: 1.5rem;
    }
    .hero-title2 {
        font-size: 1rem;
    }
    .mission-title,
    .why-title {
        font-size: 1.5rem;
    }
    .contact-card,
    .form-card,
    .why-choose-card {
        padding: 1.5rem;
    }

    .radio-card-price {
        font-size: 1.25rem;
    }
    .italic .cta-title {
        font-size:1.4rem;
    }
}

.navbar-nav {
    padding:10px;
}

/* ----service --- */

.hero-section1 {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
}

.hero-title1 {
    font-size: 4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.hero-subtitle1 {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Delivery Options */
.delivery-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.delivery-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.delivery-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.delivery-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.delivery-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-features li {
    padding: 0.75rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.delivery-features li:last-child {
    border-bottom: none;
}

.delivery-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.75rem;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section1 {
    background-color: #16A34A;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.client-carousel .owl-item {
    padding: 30px;
}
.trusted-by {
    background-color: #F8FAFC;
}
.cta-section3 {
    color: white;
    padding: 4rem 0;
    text-align: center;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-title1 {
     color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Pricing Cards */
.pricing-section {
    padding: 3rem 0;
}

.pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease-in-out;
     box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: scale(0.95);
    border:none;
   
}

/* Zoom-out animation keyframes */
@keyframes zoomOutFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pricing-card:nth-child(1) {
    animation-delay: 0s;
}
.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}
.pricing-card:nth-child(3) {
    animation-delay: 0.4s;
}


.pricing-card.popular {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.price-unit {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
    color: #1f2937;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/*--Water Audit--*/

.hero-section2 {
    background: #f8f9fa;
    padding: 4rem 0;
    display: flex;
    align-items: center;
}

.hero-title2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1f2937;
}

.hero-title2 .water-highlight {
    color: #dc2626;
}

.problem-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.waste-highlight {
    background: #fee2e2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    max-width: 600px;
    transform: scale(1); /* start slightly zoomed in */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waste-highlight:hover {
    transform: scale(0.95); /* zoom out on hover */
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.waste-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.waste-highlight1 {
    background: #fce7f3;
    border: 2px solid #fce7f3;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    max-width: 600px;
    transform: scale(1); /* start slightly zoomed in */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waste-highlight1:hover {
    transform: scale(0.95); /* zoom out on hover */
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
.waste-amount1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EC4899;
    margin-bottom: 0.5rem;
}

.waste-description {
    color: #6b7280;
    font-size: 1rem;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: white;
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.solution-title .audit-highlight {
    color: #3b82f6;
}

.solution-title .audit-highlight1 {
    color: #22c55e;
}
.solution-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

/* Stats Cards */
.stats-section {
    padding: 2rem 0;
}

.stats-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.stats-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
   margin-left:40px;
}
.stat-number1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
   margin-left:40px;
}

.stat-number1.savings {
    color: #10b981;
}

.stat-number1.timeline {
    color: #3b82f6;
}

.stat-number1.investment {
    color: #8b5cf6;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
}
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.trust-item i {
    color: #10b981;
    margin-right: 0.5rem;
}

/*----about ---*/

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.mission-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
    padding-top:12px;
}

.mission-text {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Pillars Section */
.pillars-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.pillar-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.pillar-icon.water {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.pillar-icon.cost {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pillar-description {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Why Naw Water Section */
.why-section {
    padding: 4rem 0;
    background: white;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}
.feature-item i{
    color:#2563EB;
    font-size: 2rem;
    font-weight: bold;
    
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #6b7280;
    font-size: 0.95rem;
}

.stats-section1 {
    padding: 1.5rem 0;
    background: white;
}

.stat-item1 {
    text-align: center;
    margin-right:0px;
}

.stat-number1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;

}
.stat-number1.organizations {
    color: #3b82f6;
}

.stat-number1.liters {
    color: #10b981;
}

.stat-number1.savings {
    color: #8b5cf6;
}

.stat-number1.founded {
    color: #f59e0b;
}

/* Contact Cards */
.contact-cards {
    padding: 1rem 0;
    background: white;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid #f3f4f6;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-icon.phone {
    background: #3b82f6;
}

.contact-icon.email {
    background: #10b981;
}

.contact-icon.location {
    background: #8b5cf6;
}

.contact-icon.hours {
    background: #f59e0b;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.contact-info {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Section */
.form-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.form-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.form-select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px 16px;
}

.form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

/* Why Choose Section */
.why-choose-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.why-choose-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.benefit-item1 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.benefit-item1:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.benefit-icon.proven {
    background: #3b82f6;
}

.benefit-icon.quality {
    background: #10b981;
}

.benefit-icon.support {
    background: #8b5cf6;
}

.benefit-icon.cost {
    background: #f59e0b;
}

.benefit-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Quote Highlight */
.quote-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #1e40af;
    font-weight: 500;
}


/* Section Headers */
.section-header {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}


.form-container1 {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.radio-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.radio-card:hover {
    border-color: #0d6efd;
    background-color: #f1f7ff;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card.selected,
.radio-card input[type="radio"]:checked + div {
    border-color: #0d6efd;
    background-color: #eef6ff;
}

.radio-indicator {
    width: 15px;
    height: 15px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 6px;
}

.radio-card input[type="radio"]:checked + div .radio-indicator {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.radio-card-title {
    font-weight: 600;
}

.radio-card-price {
    color: #6c757d;
    font-size: 0.9rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Content Section */
.content-section {
    padding: 3rem 0;
    background: white;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.section-title:first-of-type {
    margin-top: 0;
}

.content-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Info Cards */
.info-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #3b82f6;
}

.info-card-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Lists */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.custom-list li::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.security-icons {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.security-item {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    flex: 1;
    min-width: 150px;
}

.security-icon {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.security-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.security-desc {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135dg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-box-title {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.contact-box-text {
    color: #1e40af;
    font-size: 0.9rem;
}
.important-notice {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #93c5fd;
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.important-notice p {
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* General styling for the carousel */
#clientCarousel {
  margin-top: 20px;
}

/* Style for the client logos */
.client-logo {
  max-width: 200px; /* Adjust the width as needed */
  height: auto;
  margin: 10px;
  padding:10px;
}

/* Center-align the carousel content */
.carousel-inner .carousel-item {
  text-align: center;
}