/* --- Base Font Sizes --- */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* 1. GLOBAL STYLES  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* HERO BANNER SECTION */
.hero-banner {
    position: relative;
    min-height: 70vh; /* further reduced */
    display: flex;
    align-items: center;
    padding: 30px 40px; /* less top/bottom padding */
    overflow: hidden;
    background-color: #1c1c42;
}

.hero-badge {
    padding: 5px 14px;
    font-size: 12px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 2.4rem; /* smaller yet still readable */
    margin-bottom: 15px;
}

.text-highlight {
    font-size: 2.4rem;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
}

.hero-buttons a {
    padding: 10px 25px;
    font-size: 13px;
}

/* Optional: slightly smaller floating shapes */
.shape-1 {
    width: 250px;
    height: 250px;
}

.shape-2 {
    width: 160px;
    height: 160px;
}

.shape-3 {
    width: 120px;
    height: 120px;
}

/* Stats Section */
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .stat-item:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 107, 53, 0.5);
        transform: translateX(-5px);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Container */
.features-container {
    position: relative;
    z-index: 4;
    margin-top: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 107, 53, 0.5);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

p.lead.description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: black;
}

/* ANIMATIONS */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* 4. RESPONSIVE DESIGN */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .stats-section {
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }

    .stat-item {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .floating-shape {
        display: none;
    }

    .features-container {
        margin-top: 40px;
    }

    .stat-item {
        padding: 15px 10px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }
}


/* --- Body & Layout --- */
body {
    margin: 0 0 60px 0;
    background-color: var(--light-bg, #e3f1f6);
    color: var(--text-color, #222);
    font-family: 'Segoe UI', sans-serif;
}

/* --- Focus Styles --- */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* --- Primary Brand Colors --- */
:root {
    --primary-color: #002C54;
    --accent-color: #C5001A;
    --light-bg: #e3f1f6;
    --text-color: #222;
}

/* Navbar dark box behind menu items (not logo) */
.navbar-toggler {
    border: blone;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
}

.navbar {
    background-color: white !important;
}

.navbar-collapse {
    background-color: #15126a; /* solid dark slate */
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-left: 20px;
}

/* Navigation links - white text */
.navbar .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

    /* Hover effect - orange */
    .navbar .nav-link:hover {
        color: #ff6b35 !important;
    }

/* Dropdown menus - dark background */
.navbar .dropdown-menu {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .dropdown-item {
    color: white;
    transition: all 0.3s ease;
}

    .navbar .dropdown-item:hover {
        background: #ff6b35;
        color: white;
    }

.navbar .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }

    .navbar .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Keep logo separate - no background change */
.navbar-brand {
    background: transparent;
    padding: 0;
}


/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #001E3A;
        border-color: #001E3A;
    }

.btn-danger {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

    .btn-danger:hover {
        background-color: #A00014;
        border-color: #A00014;
    }

/* --- Enquiry Modal Header --- */
.modal-header {
    background-color: var(--primary-color);
    color: white;
}

/* --- Footer Styling --- */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
}

    footer a {
        color: #ccc;
        text-decoration: none;
    }

        footer a:hover {
            color: var(--accent-color);
        }

/* --- Floating Enquiry Button --- */
#enquiryBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
}

/* --- Floating Enquiry Form Container --- */
#enquiryForm {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
    background: white;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
}

    #enquiryForm .close-btn:hover {
        color: var(--accent-color);
        cursor: pointer;
    }

/* --- Utility Background --- */
.bg-elroi-light {
    background-color: var(--light-bg); /* #e3f1f6 */
}#6a8994
.upcoming-batches-section {
    background-color: var(--light-bg);
    color: var(--text-color);
}
.contact-section {
    background-color: #6a8994; /* Light blue */
    padding: 20px;
    border-radius: 8px;
}


.btn-accent {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
    padding: 10px 24px;
    transition: background-color 0.3s ease;
}

    .btn-accent:hover {
        background-color: #a80014;
        color: #fff;
    }

.custom-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745; /* You can use var(--accent-color) too */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
    position: fixed;
}

    .custom-chat-btn::after {
        content: "";
        position: absolute;
        bottom: -10px;
        right: 20px;
        width: 0;
        height: 0;
        border-top: 10px solid #28a745;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }

.card-img-top {
    height: 220px;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
section.container.my-5 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.service-section i.text-primary {
    color: #000080 !important; /* Navy blue */
}

.custom-question {
    background-color: #e6f0ff;
    font-weight: bold;
    color: #002C54;
}

.custom-answer {
    background-color: #ffffff;
    border-top: 1px solid #ccc;
    font-size: 15px;
    color: #333;
}

.footer-nav {
    padding-left: 0;
}

.footer-nav-item {
    margin-bottom: 0.5rem;
}

.footer-nav-link {
    color: #adb5bd; /* lighter gray */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    /* Green hover effect like navbar */
    .footer-nav-link:hover,
    .footer-nav-link:focus {
        color: #0dcaf0; /* Bootstrap cyan / greenish accent */
        text-decoration: underline;
    }

#chatBox {
    width: 300px;
    height: 400px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 10px;
    right: 0;
}

#chatHeader {
    background-color: #28a745;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    #chatHeader button {
        background: none;
        border: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }

#chatMessages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

#chatForm {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

    #chatForm input[type="text"] {
        flex-grow: 1;
        padding: 8px;
        border-radius: 20px;
        border: 1px solid #ccc;
        outline: none;
        font-size: 14px;
    }

    #chatForm button {
        background-color: var(--primary-color, #002C54);
        border: none;
        color: white;
        padding: 8px 14px;
        margin-left: 8px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        #chatForm button:hover {
            background-color: var(--accent-color, #C5001A);
        }

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #1ebea5;
    }

    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }
.dropdown-divider {
    border-top: 1px solid #ccc;
    margin: 0.2rem 0;
}
.form-box {
    background-color: #f9f9f9; /* light gray or any color you like */
    border: 1px solid #ddd;
    border-radius: 10px;
}

.accordion-button {
    background-color: #9ee0f3;
    color: #002C54; /* your theme text color */
}

    /* Active (when open) */
    .accordion-button:not(.collapsed) {
        background-color: #9ee0f3; /* slightly darker */
        color: #000;
    }

    /* Optional hover/focus */
    .accordion-button:focus {
        box-shadow: none;
        border-color: #002C54;
    }

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 4;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #ff6b35;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s both;
}

.text-highlight {
    color: #ff6b35;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Hero Buttons */
.btn-hero-primary {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
        color: white;
    }

.btn-hero-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
    }

/* Stats Section */
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

    .stat-item:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 107, 53, 0.5);
        transform: translateX(-5px);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Features Container */
.features-container {
    position: relative;
    z-index: 4;
    margin-top: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 107, 53, 0.5);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* 3. ANIMATIONS */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/*    4. RESPONSIVE DESIGN  */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .stats-section {
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }

    .stat-item {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .floating-shape {
        display: none;
    }

    .features-container {
        margin-top: 40px;
    }

    .stat-item {
        padding: 15px 10px;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }
}


/* --- Body & Layout --- */
body {
    margin: 0 0 60px 0;
    background-color: var(--light-bg, #e3f1f6);
    color: var(--text-color, #222);
    font-family: 'Segoe UI', sans-serif;
}

/* --- Focus Styles --- */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* --- Primary Brand Colors --- */
:root {
    --primary-color: #002C54;
    --accent-color: #C5001A;
    --light-bg: #e3f1f6;
    --text-color: #222;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #001E3A;
        border-color: #001E3A;
    }

.btn-danger {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

    .btn-danger:hover {
        background-color: #A00014;
        border-color: #A00014;
    }

/* --- Enquiry Modal Header --- */
.modal-header {
    background-color: var(--primary-color);
    color: white;
}

/* --- Footer Styling --- */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
}

    footer a {
        color: #ccc;
        text-decoration: none;
    }

        footer a:hover {
            color: var(--accent-color);
        }

/* --- Floating Enquiry Button --- */
#enquiryBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
}

/* --- Floating Enquiry Form Container --- */
#enquiryForm {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
    background: white;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
}

    #enquiryForm .close-btn:hover {
        color: var(--accent-color);
        cursor: pointer;
    }

/* --- Utility Background --- */
.bg-elroi-light {
    background-color: var(--light-bg); /* #e3f1f6 */
}#6a8994
.upcoming-batches-section {
    background-color: var(--light-bg);
    color: var(--text-color);
}
.contact-section {
    background-color: #6a8994; /* Light blue */
    padding: 20px;
    border-radius: 8px;
}


.btn-accent {
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 500;
    padding: 10px 24px;
    transition: background-color 0.3s ease;
}

    .btn-accent:hover {
        background-color: #a80014;
        color: #fff;
    }

.custom-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745; /* You can use var(--accent-color) too */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    cursor: pointer;
    position: fixed;
}

    .custom-chat-btn::after {
        content: "";
        position: absolute;
        bottom: -10px;
        right: 20px;
        width: 0;
        height: 0;
        border-top: 10px solid #28a745;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }

.card-img-top {
    height: 220px;
    object-fit: cover;
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
section.container.my-5 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.service-section i.text-primary {
    color: #000080 !important; /* Navy blue */
}

.custom-question {
    background-color: #e6f0ff;
    font-weight: bold;
    color: #002C54;
}

.custom-answer {
    background-color: #ffffff;
    border-top: 1px solid #ccc;
    font-size: 15px;
    color: #333;
}

.footer-nav {
    padding-left: 0;
}

.footer-nav-item {
    margin-bottom: 0.5rem;
}

.footer-nav-link {
    color: #adb5bd; /* lighter gray */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    /* Green hover effect like navbar */
    .footer-nav-link:hover,
    .footer-nav-link:focus {
        color: #0dcaf0; /* Bootstrap cyan / greenish accent */
        text-decoration: underline;
    }

#liveChatContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    font-family: 'Segoe UI', sans-serif;
}

#chatBox {
    width: 300px;
    height: 400px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 10px;
    right: 0;
}

#chatHeader {
    background-color: #28a745;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    #chatHeader button {
        background: none;
        border: none;
        font-size: 24px;
        color: white;
        cursor: pointer;
    }

#chatMessages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

#chatForm {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

    #chatForm input[type="text"] {
        flex-grow: 1;
        padding: 8px;
        border-radius: 20px;
        border: 1px solid #ccc;
        outline: none;
        font-size: 14px;
    }

    #chatForm button {
        background-color: var(--primary-color, #002C54);
        border: none;
        color: white;
        padding: 8px 14px;
        margin-left: 8px;
        border-radius: 50%;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        #chatForm button:hover {
            background-color: var(--accent-color, #C5001A);
        }

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #1ebea5;
    }

    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }
.dropdown-divider {
    border-top: 1px solid #ccc;
    margin: 0.2rem 0;
}
.form-box {
    background-color: #f9f9f9; /* light gray or any color you like */
    border: 1px solid #ddd;
    border-radius: 10px;
}

.accordion-button {
    background-color: #9ee0f3;
    color: #002C54; /* your theme text color */
}

    /* Active (when open) */
    .accordion-button:not(.collapsed) {
        background-color: #9ee0f3; /* slightly darker */
        color: #000;
    }

    /* Optional hover/focus */
    .accordion-button:focus {
        box-shadow: none;
        border-color: #002C54;
    }