:root {
    --primary-color: #4e73df;
    --secondary-color: #f8f9fc;
    --accent-color: #2e59d9;
    --text-color: #5a5c69;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.booking-container {
    max-width: 1000px;
    margin: 50px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    overflow: hidden;
}

.booking-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

@media (min-width: 992px) {
    .custom-nav-padding {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f1f3f9;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-right: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background-color: #28a745;
    color: white;
}

.step-title {
    font-size: 14px;
    text-align: center;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step.active .step-title {
    color: var(--primary-color);
    font-weight: bold;
}

.step.completed .step-title {
    color: #28a745;
}

.booking-content {
    padding: 15px;
    min-height: 400px;
}


.booking-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.booking-step.active {
    display: block;
}

.booking-footer {
    padding: 20px;
    border-top: 1px solid #e3e6f0;
    display: flex;
    justify-content: space-between;
}

.category-card,
.service-card,
.employee-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 20px;
    height: 100%;
}

.category-card:hover,
.service-card:hover,
.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.category-card.selected,
.service-card.selected,
.employee-card.selected {
    border-color: var(--primary-color);
    background-color: rgba(78, 115, 223, 0.1);
    border: 1px solid #4087ff !important;
}


.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.time-slot {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    margin: 5px;
}

.booking-header {
    text-align: center;
}

.time-slot:hover {
    background-color: rgba(78, 115, 223, 0.1);
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.calendar-day {
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled) {
    background-color: rgba(78, 115, 223, 0.1);
}

.calendar-day.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.calendar-day.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

.summary-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e3e6f0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-in {
    animation: slideIn 0.5s ease forwards;
}

/* Progress bar between steps */
.booking-steps::before {
    content: '';
    /* position: absolute; */
    top: 80px;
    left: 20%;
    right: 20%;
    height: 2px;
    background-color: transparent;
    z-index: 0;
}

.progress-bar-steps {
    position: relative;
    height: 4px;
    background-color: #e0e0e0;
    /* margin: 0 40px; */
    top: -22px;
    z-index: 0;
}

.progress-bar-steps .progress {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 0.5s ease;
}

@media(min-width:720px) {
    .booking-content {
        padding: 30px;
        min-height: 400px;
    }
}

/* Why Choose Us Section */
/* About Us Section */
.about-us-section {
    padding: 100px 0;
    background-color: #ffffff !important;
    overflow: hidden;
    position: relative;
}

/* Why Choose Us Block */
.why-choose-us-block {
    margin-bottom: 0;
    /* Remove bottom margin as it's now side-by-side */
}

.why-choose-us-block .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    /* Center aligned */
}

.why-choose-us-block .section-desc {
    color: #5a5c69;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: center;
    /* Center aligned */
    max-width: 100%;
    /* Full width of column */
}

/* Video Showcase Block */
.video-showcase-block {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 10%;
    /* Added spacing */
}

.video-container {
    position: relative;
    width: 100%;
    height: 600px;
    /* Fixed height */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-container:hover .video-bg-img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Initial light overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.4s ease;
    z-index: 2;
}

.video-container:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    /* Darker on hover */
}

.overlay-title {
    color: white;
    font-size: 4.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.overlay-divider {
    width: 100px;
    height: 6px;
    background-color: #3b5998;
    /* Blue accent */
    margin-bottom: 15px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.4s ease 0.1s;
}

.overlay-subtitle {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.video-container:hover .overlay-title,
.video-container:hover .overlay-divider,
.video-container:hover .overlay-subtitle {
    opacity: 1;
    transform: translateY(0) scaleX(1);
}

@media (max-width: 991px) {
    .video-container {
        height: 300px;
        margin-top: 30px;
    }

    .why-choose-us-section .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .why-choose-us-section .section-desc {
        text-align: center;
        margin: 0 auto;
    }
}

/* Mission and Vision Section */
.mission-vision-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    margin-top: 80px;
    background-image: url('../img/mv-bg-7.png');
    background-size: cover;
    background-position: center;
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    /* Dark overlay */
    /* Adjust darkness: 0.3 = light dark, 0.6 = very dark */
    z-index: 1;
}

.mv-content-wrapper,
.mv-card {
    position: relative;
    z-index: 2;
}

.mission-vision-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.mv-bg-img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-50px);
    background-color: rgba(0, 255, 255, 0.75);
}

.mv-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.mv-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Specific adjustments for overlap */
.mission-card {
    margin-right: -50px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.vision-card {
    margin-left: -170px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
    width: 125%;
}

.mv-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.text-mission {
    color: #76b900;
    /* Green */
}

.text-vision {
    color: #3b5998;
    /* Blue */
}

.mv-desc {
    color: #5a5c69;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}


/* Animation Classes for Mission and Vision */
.mission-card,
.vision-card {
    transition: transform 0.7s ease-out, opacity 0.7s ease-out;
}

.vision-card {
    transition-delay: 0.3s;
}

.mv-slide-right-init {
    opacity: 0;
    transform: translateX(-100px);
}

.mv-slide-left-init {
    opacity: 0;
    transform: translateX(100px);
}

.mv-animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Overview Section */
.overview-section {
    padding: 100px 0;
    padding-top: 200px;
    background-color: #ffffff;
}

/* Updated Step Card Styles (Solid Colors) */
.step-card {
    border-radius: 5px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    color: white;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-blue {
    background-color: #3b5998;
}

.step-green {
    background-color: #76b900;
}

.step-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.step-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Loyalty Rewards Section */
.loyalty-section-wrapper {
    padding-top: 200px;
}

.loyalty-card {
    background-color: #f4f7fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.loyalty-card:hover {
    transform: translateY(-5px);
}

.loyalty-badge {
    display: inline-block;
    background-color: #76b900;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.loyalty-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.loyalty-card-desc {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Animation Classes */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.slide-up-init {
    transform: translateY(50px);
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

@media (max-width: 991px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-vision-bg {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: -50px;
    }

    .mv-card {
        padding: 30px;
        margin: 0 0 30px 0;
    }

    .vision-card {
        margin-left: 0;
        margin-top: 0;
    }

    .mv-title {
        font-size: 2rem;
    }
}

/* ENHANCE BY EMHAR */

@media (max-width: 991px) {

    /* ============================
       1. NAVBAR & BURGER MENU (UPDATED)
       Side-by-side Login & Signup
       ============================ */

    /* Gap between Logo and "Services" */
    .navbar-collapse .navbar-nav {
        padding-top: 20px !important;
    }

    /* FIX: Align Login & Signup horizontally (Row) */
    .navbar-collapse .d-flex {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start;
        margin-left: 15px;
        margin-bottom: 20px;
        gap: 10px !important; /* Tighter gap to fit both buttons */
        margin-top: 30px;
    }

    .btn-nav-quote {
        margin-right: 0 !important;
        padding: 8px 15px !important;
        font-size: 0.9rem !important;
        white-space: nowrap !important;
    }

    .btn-nav-auth {
        display: inline-block;
        width: auto;
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
        white-space: nowrap !important;
    }

    /* ============================
       2. HERO SECTION FIXES (UNCHANGED)
       ============================ */

    .hero-section {
        height: auto !important;
        min-height: 100vh;
        padding-bottom: 80px;
        background-attachment: scroll;
    }

    .hero-content {
        padding-top: 120px !important;
    }

    /* Text Sizing */
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.3em;
        margin-bottom: 30px !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
        padding: 0 15px;
    }

    /* Feature Icons & Text */
    .feature-item {
        margin: 5px 10px !important;
        justify-content: center;
        width: 100%;
        /* NEW: Resize text for mobile */
        font-size: 1rem !important;
    }

    .feature-icon {
        font-size: 1.1rem !important;
        /* Adjusts the icon size to match new text */
    }

    .rotating-wrapper {
        width: 140px !important;
        display: inline-block;
        vertical-align: bottom;
        text-align: left;
    }

    /* Buttons: Side-by-side (Mirrored from Laptop) */
    .hero-content .btn {
        display: inline-block !important;
        width: auto !important;
        margin: 5px !important;
        padding: 10px 25px !important;
        font-size: 0.95rem !important;
    }

    /* Feature Icons */
    .feature-item {
        margin: 5px 10px !important;
        justify-content: center;
        width: 100%;
    }

    /* Feature Icons */
    .features-row {
        margin-bottom: 50px !important;
    }

    /* ============================
       3. OTHER SECTIONS (UPDATED)
       ============================ */

    .video-container {
        height: 300px;
        margin-top: 30px;
    }

    .why-choose-us-section .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .why-choose-us-section .section-desc {
        text-align: center;
        margin: 0 auto;
    }

    .mission-vision-section {
        padding: 60px 0;
    }

    /* --- FIX: PREVENT VISION CARD OVERLAP --- */
    /* This forces the columns to take up 100% width on mobile.
       It overrides the 'justify-content-end' that pushes the 
       Vision card to the right edge. */
    .mission-vision-section .col-lg-7 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .mission-vision-bg {
        position: relative;
        width: 100%;
        height: 300px;
        margin-bottom: -50px;
    }

    .mv-card {
        padding: 30px;
        margin: 0 0 30px 0;
    }

    .vision-card {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }

    .mv-title {
        font-size: 2rem;
    }

    /* ============================
       4. VIDEO OVERLAY FIX (NEW)
       Force text visibility on mobile (No Hover needed)
       ============================ */

    .video-overlay {
        /* Darken background immediately so text is readable */
        background-color: rgba(0, 0, 0, 0.5) !important;
    }

    .overlay-title {
        /* Force visibility */
        opacity: 1 !important;
        transform: translateY(0) scaleX(1) !important;
        transition: opacity 1.5s ease-in-out !important;

        /* NEW: Resize for Mobile (iPhone SE) */
        font-size: 2.5rem !important;
        /* Reduced from 4.5rem */
        letter-spacing: 1px !important;
        /* Tighter spacing */
        margin-bottom: 5px !important;
    }

    .overlay-divider {
        opacity: 1 !important;
        transform: scaleX(1) !important;
        /* Make divider smaller to match text */
        width: 60px !important;
        margin-bottom: 10px !important;
    }

    .overlay-subtitle {
        opacity: 1 !important;
        transform: translateY(0) !important;

        /* NEW: Resize for Mobile */
        font-size: 1.2rem !important;
        /* Reduced from 1.5rem */
    }
}

/* Transparent Pricing Section */
.pricing-section-wrapper {
    padding-top: 200px;
    padding-bottom: 150px;
}

.pricing-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid #e3e6f0c9;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Popular Card Styling */
.pricing-card.popular {
    background: #f1f8e9;
    /* Light green tint */
    border: 2px solid #76b900;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #76b900;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.pricing-desc {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 10px;
    min-height: 40px;
    /* Align heights */
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: #3b5998;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b5998;
    /* Match price color */
    margin-top: 5px;
}

.pricing-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
    margin-top: 10px;
}

.pricing-price .small-text {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
    margin-right: 5px;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 8px;
    color: #5a5c69;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.pricing-features li i {
    color: #76b900;
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-pricing {
    background-color: #3b5998;
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-pricing:hover {
    background-color: #2d4373;
    color: white;
}

@media (max-width: 991px) {
    .pricing-card.popular {
        transform: scale(1);
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: #f8f9fc;
    /* Light background to contrast with white cards */
    overflow: hidden;
}

.reviews-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    height: 600px;
    /* Fixed height for the visible area */
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.review-column {
    width: 350px;
    flex-shrink: 0;
}

.review-track {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Review Card Styling */
.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffc107;
    /* Gold color for stars */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    color: #5a5c69;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #f1f3f9;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.reviewer-role {
    font-size: 0.9rem;
    color: #858796;
}

/* Infinite Scroll Animations */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.scroll-up {
    animation: scrollUp 40s linear infinite;
}

.scroll-down {
    animation: scrollDown 40s linear infinite;
}

/* Pause animation on hover */
/* Pause animation on hover */
.review-column:hover .review-track {
    animation-play-state: paused;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .reviews-container {
        flex-direction: column;
        height: auto;
        mask-image: none;
        -webkit-mask-image: none;
        padding: 0 20px;
    }

    .review-column {
        width: 100%;
        margin-bottom: 30px;
    }

    .review-track {
        animation: none;
        /* Disable animation on mobile for better UX */
        gap: 20px;
    }

    /* Show only first 3 cards on mobile to save space if needed, 
       or just let them stack. Since we duplicated them, we might have too many.
       Let's hide the duplicate set on mobile. 
    */
    .review-card:nth-child(n+4) {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    padding: 200px 0;
    background-color: #ffffff;
}

.faq-accordion-item {
    border: 1px solid #76b900;
    border-radius: 5px;
    margin-bottom: 15px;
    background: white;
    overflow: hidden;
}

.faq-accordion-button {
    background-color: transparent;
    color: #5a5c69;
    font-weight: 700;
    font-size: 1rem;
    padding: 30px 30px;
    box-shadow: none !important;
}

.faq-accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #5a5c69;
    box-shadow: none;
}

.faq-accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

/* Custom Icon */
.faq-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2376b900'%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");
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

.faq-accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2376b900'%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");
    transform: rotate(-180deg) scale(1.2);
}

.faq-accordion-body {
    padding: 0 25px 25px 25px;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Alternating Blue Border for Even Items */
.faq-accordion-item:nth-child(even) {
    border-color: #3b5998 !important;
}

/* Custom Icon - Blue for Even Items */
.faq-accordion-item:nth-child(even) .faq-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b5998'%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");
}

.faq-accordion-item:nth-child(even) .faq-accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b5998'%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");
}

/* Force overrides for FAQ items to ensure border and radius are visible */
.faq-accordion-item {
    border: 1px solid #76b900 !important;
    border-radius: 5px !important;
}

/* Updates Section Styles */
.updates-section {
    padding: 100px 0;
    background-color: #f0f4f8;
    /* Light blue-gray background */
}

.update-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.update-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.update-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.update-card:hover .update-img {
    transform: scale(1.05);
}

.update-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.update-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    margin-bottom: 15px;
    display: inline-block;
}

.badge-whats-new {
    background-color: #76b900;
    /* Green */
}

.badge-coming-soon {
    background-color: #76b900;
    /* Green - using same color as per image */
}

.update-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.update-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background-color: white;
    overflow: hidden;
}

.contact-info-col {
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content-wrapper {
    max-width: 600px;
    width: 100%;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: #5a5c69;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-card {
    border: 1px solid #76b900;
    border-radius: 10px;
    padding: 30px;
    background-color: white;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 5px;
}

.contact-card-desc {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    background-color: #e8f5e9;
    /* Light green bg */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon-box i {
    color: #76b900;
    font-size: 1.2rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 1rem;
    font-weight: 700;
    color: #5a5c69;
    margin-bottom: 2px;
}

.contact-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-image-col {
    position: relative;
    min-height: 600px;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .contact-info-col {
        padding: 60px 20px;
    }

    .contact-image-col {
        min-height: 300px;
        height: 300px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #2b4260;
    /* Deep blue background matching image */
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-tagline {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
    opacity: 0.9;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-heading-sm {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7ab800;
    /* Green on hover */
    text-decoration: none;
}

/* Custom Services List */
.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
    color: #d1d5db;
    font-size: 0.95rem;
}

.footer-services-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #7ab800;
    border-radius: 50%;
}

/* Custom Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center; /* Change to center to align with green boxes */
    gap: 15px;
}

.footer-contact-icon {
    width: 35px;
    height: 35px;
    background-color: #7ab800;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-text {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px; /* Square with rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    background-color: #7ab800; /* Uniform green */
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
    background-color: #629600; /* Darker green */
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: #d1d5db;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #7ab800;
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-tagline {
        max-width: 100%;
    }
}

/*sample*/