/* Custom Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Colors */
.bg-primary {
    background-color: #007bff !important; /* Bootstrap Primary Blue */
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.bg-light {
    background-color: #f8f9fa !important; /* Bootstrap Light Gray */
}

.bg-dark {
    background-color: #343a40 !important; /* Bootstrap Dark Gray */
}

.text-white {
    color: white !important;
}

/* Header */
.header {
    position: relative; /* for full page menu positioning */
    z-index: 1000; /* Ensure header is above other content */
}
.logo {
    margin-right: 10px;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: linear-gradient(to right, #0056b3, #007bff); /* Gradient Background */
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out; /* Animation for title */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-out; /* Animation for subtitle */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Service Box */
.service-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Plan Card on MLM Plans Page */
.plan-card {
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.plan-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.plan-card .card-title {
    font-weight: bold;
    color: #333;
}


/* Gallery Image */
.gallery-image {
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Full Page Menu */
.fullpage-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background for menu */
    color: white;
    z-index: 9999; /* High z-index to be on top */
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.fullpage-menu.active {
    visibility: visible;
    opacity: 1;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.menu-items {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu-items li {
    margin-bottom: 30px;
}

.menu-items li a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    transition: color 0.3s;
}

.menu-items li a:hover {
    color: #007bff; /* Highlight color on hover */
}


/* FAQ Section */
.faq-section .accordion-button {
    background-color: #fff; /* white background for FAQ button */
    color: #333;
    font-weight: bold;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #007bff; /* Active FAQ button text color */
    background-color: #f8f9fa; /* Lighter background for active FAQ */
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125); /* slight border at bottom */
}


/* Contact Footer (Mobile) */
.mobile-contact-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0px -2px 5px rgba(0,0,0,0.1);
    z-index: 1001; /* Above footer, below full page menu */
}

.whatsapp-button, .call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.whatsapp-button {
    background-color: #25d366; /* WhatsApp Green */
}

.call-button {
    background-color: #007bff; /* Primary Blue - matching theme */
}


.whatsapp-button:hover {
    background-color: #128c7e; /* Darker WhatsApp Green on hover */
}

.call-button:hover {
    background-color: #0056b3; /* Darker Blue on hover */
}

.whatsapp-button i, .call-button i {
    margin-right: 5px;
}


/* Footer */
.footer {
    color: #f8f9fa; /* Light text on dark background */
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer a {
    color: #f8f9fa; /* Light link color in footer */
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff; /* Slightly brighter on hover */
}


/* Responsive Adjustments (Optional, Bootstrap generally handles well) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .service-box {
        margin-bottom: 20px; /* Add spacing between service boxes on smaller screens */
    }
}

/* ... previous CSS ... */

/* Header adjustments for responsive menu */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-toggler {
    border: none; /* remove border from navbar toggler for cleaner look if desired */
}

.navbar-nav .nav-link {
    color: #333; /* Desktop nav link color */
    margin-left: 15px;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #007bff; /* Hover/active desktop nav link color */
}

/* Hide the mobile toggle button on desktop sizes initially, and make default navbar toggle hidden*/
.mobile-menu-toggle {
    display: none; /* Hide on desktop by default */
}
.navbar-toggler { /* bootstrap default toggler needs adjustment sometimes for visibility*/
    /*display: none; !*  Optionally hide Bootstrap's default toggler if we only want our custom one *!*/
}


/* Full Page Menu adjustments - Primarily for mobile */
.fullpage-menu {
    position: fixed; /* Keep fixed for full page overlay */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark background for menu */
    color: white;
    z-index: 9999; /* High z-index to be on top */
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden; /* Hidden by default */
    opacity: 0;       /* Opacity 0 by default */
    transition: opacity 0.3s, visibility 0.3s;
}

.fullpage-menu.active {
    visibility: visible; /* Show when active class is added */
    opacity: 1;        /* Fully opaque when active */
}


/* Adjust visibility of mobile toggle and navbar toggle based on screen size */
@media (max-width: 991.98px) { /* Bootstrap 'lg' breakpoint and below is considered mobile-ish */
    .navbar-collapse {
        display: none !important; /* Hide default Bootstrap navbar collapse on mobile, rely on fullpage */
    }
    .mobile-menu-toggle {
        display: block; /* Show mobile menu toggle button on mobile */
    }
    .navbar-toggler {
        display: block; /* ensure bootstrap toggler visible too, or remove if only want custom */
    }
}

/* ... rest of your CSS ... */

/* ... Previous CSS ... */

/* FAQ Section Styling */
.faq-section {
    background-color: #f9f9f9; /* Slightly off-white background for the whole section */
    padding-top: 60px;
    padding-bottom: 60px;
}

.faq-container {
    max-width: 960px; /* Limit width for better readability */
    margin: 0 auto; /* Center the container */
}

.faq-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.faq-title i {
    color: #007bff; /* Icon color matching primary theme */
    margin-right: 10px;
}

.faq-intro {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
}


.faq-item {
    margin-bottom: 15px; /* Spacing between FAQ items */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08); /* Subtle shadow for depth */
    border: none; /* Remove default border */
}

.faq-header {
    background-color: #fff; /* White header background */
    border-bottom: none; /* Remove default border */
    border-radius: 8px 8px 0 0; /* Rounded top corners */
}

.faq-button {
    background-color: #fff; /* Ensure button is also white */
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 25px;
    display: flex;
    align-items: center; /* Vertically center icon and text */
    border: none; /* Remove button border */
    border-radius: 8px 8px 0 0; /* Rounded top corners */
}

.faq-button:focus {
    box-shadow: none; /* Remove focus outline for cleaner look - consider accessibility if removed */
}


.faq-button:not(.collapsed) { /* Styles when FAQ is open */
    color: #007bff; /* Active question text color */
    background-color: #f0f7ff; /* Very light blue background when open */
    box-shadow: none; /* Remove any shadows when open */
    border-bottom: 1px solid #ddd; /* Subtle border at bottom of header when open */
    border-radius: 8px 8px 0 0; /* Ensure rounded corners are maintained */
}
.faq-button:not(.collapsed)::after { /* remove default arrow icon when open */
    background-image: none; /* Remove default chevron icon */
}


.question-icon {
    font-size: 1.4rem;
    margin-right: 12px;
    color: #007bff; /* Question icon color */
}


.faq-body {
    padding: 20px 25px;
    background-color: #f0f7ff; /* Light background for answer body - consistent with active header */
    border-top: none; /* Remove top border if any */
    border-radius: 0 0 8px 8px; /* Rounded bottom corners for body */
    color: #555;
    line-height: 1.7;
}


/* Adjustments for Accordion Chevron (optional - if you want to customize it) */
.faq-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* Custom blue chevron icon when closed */
    width: 1rem;
    height: 1rem;
    margin-left: auto; /* Push to the right */
    transition: transform 0.2s ease-in-out; /* Smooth transition for rotation */
}

.faq-button.collapsed::after {
    transform: rotate(-90deg); /* Rotate chevron to upwards when collapsed */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); /* Gray chevron when expanded/not collapsed */
    filter: brightness(0.8); /* slightly darken gray chevron */
}


/* Responsive adjustments (optional) */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }
    .faq-intro {
        font-size: 1rem;
    }
    .faq-button {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .faq-body {
        padding: 15px 20px;
    }
}


