/* ================================
   Global Theme Variables
================================ */
:root {
    --primary: #25778F;
    --secondary: #417E31;
}
.bg-primary {
  background-color: #25778F !important;
}
.bg-lights{
    background-color: #f2f2f2!important;
}

/* ================================
   Navbar
================================ */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}

/* Navbar background on scroll */
.navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin-right: 15px;
    color: #000;
}

.logo img {
    width: 200px;
    height: auto;

}

/* Mobile menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
    }
}

/* CTA Buttons */
.btn-cta {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    margin-left: 10px;
}

.btn-orange {
    background: var(--primary);
    color: #fff;
}

.btn-orange:hover {
    background: #25778F;
}

.btn-yellow {
    background: var(--secondary);
    color: #fff;
}

.btn-yellow:hover {
    background: #417E31;
}

/* ================================
   Hero Section
================================ */
.hero-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff7f5, #fff3e1);
    /* background: url("../img/back.jpeg") no-repeat center/cover; */
    overflow: visible;
    /* allow scroll */
    padding-top: 80px;
    /* offset for fixed navbar */
}




.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #333;
}

.hero-img img {
    max-width: 100%;
    border-radius: 10px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary);
}


/* ================================
   Brand Section
================================ */

.brand-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.brand-track {
    display: flex;
    flex-wrap: nowrap;
    animation: scroll 20s linear infinite;
}

.brand-track img {
    max-height: 80px;
    object-fit: contain;
    margin: 0 50px;
}

/* keyframes for seamless loop */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* ================================
   About Section
================================ */

.about-section {
    /* background-color: #ece9e9; */
    color: #1a1a1a;
}

.about-section .section-title {
    color: #1e3a70;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-section .section-heading {
    color: #376D0F;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section .subheading {
    color: #1e3a70;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-section .explore-btn {
    background: linear-gradient(90deg, #25778F 0%, #417E31 100%);
    border: none;
    color: #fff;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.about-section .explore-btn:hover {
    opacity: 0.9;
}

.about-section .about-img {
    max-width: 100%;
}


/* .boxShadow{
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
padding: 15px;
} */
/* ================================
   Testimonial Section
================================ */

/* Section styling */
.testimonial-section {
    background: #ffe6e0;
    padding: 50px 0;
}

.testimonial-subtitle {
    color: #1a2a50;
}

.testimonial-title {
    color: #031E4B;
    margin-bottom: 40px;
}

/* Testimonial card */
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.testimonial-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a2a50;
}

.client-position {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
}

.read-more {
    color: #031E4B;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}




.accordion-button {
    font-weight: 600;
    color: #1a2a50;
}

.accordion-button:not(.collapsed) {
    background-color: #031E4B;
    color: #fff;
}

.accordion-body {
    font-size: 0.95rem;
    color: #555;
}

.accordion-image-section img {
    max-width: 100%;
    height: auto;
}



.footer-section {
    background: #cecccc;
    color: #002147;
    font-size: 0.95rem;
}

.footer-section p {
    font-size: 18px;
}

.footer-heading {
    font-weight: 600;
    color: #002147;
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-section a {
    color: #002147;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
    font-size: 18px;
}

.footer-section a:hover {
    color: #1a2a50;
}


.footer-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.1rem;
    color: #031E4B;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #1a2a50;
}


.contact-modal .modal-content {
    border: none;
}

.contact-modal .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

#contactModal .modal-content {
    max-height: 90vh; 
    overflow-y: auto;
}

/* Small screens adjustments */
@media (max-width: 768px) {
    .contact-modal .row {
        flex-direction: column;
    }

    /* Keep only heading + close button */
    .contact-modal .LeftPanel .d-flex.justify-content-between {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: #25778F;
        color: #fff;
    }

    .contact-modal .LeftPanel .d-flex.justify-content-between h3 {
        font-size: 1.25rem;
        color: #fff;
        margin: 0;
    }

    .contact-modal .LeftPanel .btn-close {
        filter: invert(1);
    }

    /* Hide paragraph + contact details */
    .contact-modal .LeftPanel p,
    .contact-modal .LeftPanel .mb-4 {
        display: none !important;
    }

    /* Remove blue background except header */
    .contact-modal .LeftPanel {
        padding: 0 !important;
        background: transparent !important;
        min-height: auto !important;
    }

    /* Form full width */
    .contact-modal form .row>div {
        width: 100%;
    }
}