/* Premium UI Design Enhancements for Demandium Landing Page & Login Portal */

:root {
    --premium-primary: #0461a5;
    --premium-primary-glow: rgba(4, 97, 165, 0.3);
    --premium-secondary: #00bcd4;
    --premium-gradient-1: linear-gradient(135deg, #0461a5, #00b0ff);
    --premium-gradient-hover: linear-gradient(135deg, #007bb6, #00b0ff);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    --glass-text: #1e293b;
    --input-bg: rgba(255, 255, 255, 0.6);
    --input-border: rgba(4, 97, 165, 0.15);
    --input-focus-border: #0461a5;
    --card-hover-translate: translateY(-8px);
}

.dark-theme {
    --premium-primary: #0093ff;
    --premium-primary-glow: rgba(0, 147, 255, 0.3);
    --premium-secondary: #00e5ff;
    --premium-gradient-1: linear-gradient(135deg, #0052d4, #4364f7, #6fb1fc);
    --premium-gradient-hover: linear-gradient(135deg, #4364f7, #6fb1fc);
    --glass-bg: rgba(18, 26, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    --glass-text: #f1f5f9;
    --input-bg: rgba(13, 22, 33, 0.5);
    --input-border: rgba(255, 255, 255, 0.1);
    --input-focus-border: #0093ff;
}

/* Background Glowing Mesh Blobs */
.section-glow-wrapper {
    position: relative;
    overflow: hidden;
}

.section-glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.dark-theme .section-glow-circle {
    opacity: 0.12;
}

.section-glow-blue {
    background: var(--premium-primary);
    width: 450px;
    height: 450px;
}

.section-glow-cyan {
    background: var(--premium-secondary);
    width: 350px;
    height: 350px;
}

/* Hero Section Split Layout & Container Styling */
.banner-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: radial-gradient(circle at 10% 20%, rgba(var(--base-rgb), 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0, 188, 212, 0.03) 0%, transparent 50%);
}

.banner-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.banner-content {
    flex: 1;
    max-width: 550px;
}

.banner-login-container {
    flex: 1;
    max-width: 480px;
    position: relative;
    z-index: 10;
}

/* Animated Glowing Background Mesh Behind Login Panel */
.premium-glow-container {
    position: absolute;
    top: -50px;
    right: -50px;
    bottom: -50px;
    left: -50px;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-circle-1 {
    width: 250px;
    height: 250px;
    background: var(--premium-primary);
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.glow-circle-2 {
    width: 200px;
    height: 200px;
    background: var(--premium-secondary);
    bottom: 20%;
    right: 15%;
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.1); }
    100% { transform: translate(-10px, 15px) scale(0.95); }
}

/* Glassmorphic Card Styling */
.premium-login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--glass-text);
}

.premium-login-card:hover {
    border-color: rgba(var(--base-rgb), 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.dark-theme .premium-login-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Portal Tabs Header */
.portal-tabs-header {
    display: flex;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 30px;
    position: relative;
}

.dark-theme .portal-tabs-header {
    background: rgba(255, 255, 255, 0.05);
}

.portal-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--body-clr);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    z-index: 2;
}

.portal-tab-btn.active {
    color: #ffffff;
    background: var(--premium-gradient-1);
    box-shadow: 0 4px 15px var(--premium-primary-glow);
}

.portal-form-pane {
    display: none;
}

.portal-form-pane.active {
    display: block;
    animation: fadeInSlide 0.4s ease;
}

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

/* Form Input Enhancements */
.premium-form-group {
    position: relative;
    margin-bottom: 24px;
}

.premium-form-group .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--body-clr);
    opacity: 0.6;
    transition: all 0.3s ease;
    font-size: 20px;
    pointer-events: none;
}

.premium-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: var(--glass-text) !important;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.premium-input:focus {
    border-color: var(--input-focus-border);
    background: var(--white-clr);
    box-shadow: 0 0 0 4px var(--premium-primary-glow);
}

.dark-theme .premium-input:focus {
    background: #0d1621;
}

.premium-form-group .password-toggle-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--body-clr);
    opacity: 0.6;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    user-select: none;
}

.premium-form-group .password-toggle-btn:hover {
    opacity: 1;
    color: var(--premium-primary);
}

.premium-form-group .premium-input:focus ~ .input-icon {
    color: var(--premium-primary);
    opacity: 1;
}

/* Checkbox & Links Styling */
.form-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13.5px;
}

.premium-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.premium-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--input-border);
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-checkbox:checked {
    background-color: var(--premium-primary);
    border-color: var(--premium-primary);
}

.premium-link {
    color: var(--premium-primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.premium-link:hover {
    color: var(--premium-secondary);
    text-decoration: underline;
}

/* Premium Submit Buttons */
.premium-btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: var(--premium-gradient-1);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--premium-primary-glow);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.premium-btn-submit:hover {
    background: var(--premium-gradient-hover);
    box-shadow: 0 6px 20px var(--premium-primary-glow);
    transform: translateY(-2px);
}

.premium-btn-submit:active {
    transform: translateY(0);
}

/* Secondary Actions inside Login Card */
.premium-card-secondary-action {
    margin-top: 20px;
    text-align: center;
    font-size: 13.5px;
    color: var(--body-clr);
}

.premium-card-secondary-action a {
    color: var(--premium-primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

.premium-card-secondary-action a:hover {
    text-decoration: underline;
}

/* Scroll to Login CTA Button in Header */
.login-header-btn {
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--premium-gradient-1);
    color: #ffffff !important;
    box-shadow: 0 4px 10px var(--premium-primary-glow);
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-header-btn:hover {
    box-shadow: 0 6px 15px var(--premium-primary-glow);
    transform: translateY(-1px);
    background: var(--premium-gradient-hover);
}

/* Services Grid UI Upgrade */
.service-section {
    position: relative;
    z-index: 10;
    background: linear-gradient(180deg, transparent, rgba(var(--base-rgb), 0.015), transparent);
    padding: 90px 0;
}

.service__item {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    padding: 35px 30px !important;
    box-shadow: var(--glass-shadow) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service__item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(var(--base-rgb), 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service__item:hover::before {
    opacity: 1;
}

.service__item:hover {
    transform: var(--card-hover-translate) !important;
    box-shadow: 0 30px 50px rgba(var(--base-rgb), 0.06) !important;
    border-color: rgba(var(--base-rgb), 0.2) !important;
}

.service__item-icon {
    background: rgba(var(--base-rgb), 0.05);
    border-radius: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service__item:hover .service__item-icon {
    background: var(--premium-primary);
    transform: rotate(5deg) scale(1.05);
}

.service__item:hover .service__item-icon img {
    filter: brightness(0) invert(1);
}

.service__item .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: 14px;
    line-height: 1.4;
}

.service__item .txt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body-clr);
    opacity: 0.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service__item-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--premium-primary) !important;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service__item:hover .service__item-btn {
    color: var(--premium-secondary) !important;
    gap: 10px;
}

/* About Us Section UI Upgrade */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.about__wrapper-content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 45px;
    box-shadow: var(--glass-shadow);
}

.about__wrapper-thumb {
    position: relative;
}

.about__wrapper-thumb img.main-img {
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.about__wrapper-thumb:hover img.main-img {
    transform: translateY(-5px);
}

.cmn--btn2 {
    padding: 14px 30px;
    border-radius: 50px;
    background: var(--premium-gradient-1);
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--premium-primary-glow);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cmn--btn2:hover {
    background: var(--premium-gradient-hover);
    box-shadow: 0 6px 20px var(--premium-primary-glow);
    transform: translateY(-2px);
}

/* Specialities Section UI Upgrade */
.contact-info-section {
    padding: 60px 0;
}

.counter__item {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    box-shadow: var(--glass-shadow) !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.counter__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06) !important;
    border-color: rgba(var(--base-rgb), 0.2) !important;
}

.counter__item-left {
    background: rgba(var(--base-rgb), 0.05);
    border-radius: 20px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.counter__item:hover .counter__item-left {
    background: var(--premium-primary);
}

.counter__item:hover .counter__item-left img {
    filter: brightness(0) invert(1);
}

.counter__item-left img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.counter__item-right .subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: 6px;
    line-height: 1.3;
}

.counter__item-right div {
    font-size: 14px;
    color: var(--body-clr);
    opacity: 0.85;
}

/* App Showcase Section UI Upgrade */
.app-slider-section {
    background: linear-gradient(180deg, transparent, rgba(0, 188, 212, 0.015), transparent);
    padding: 100px 0;
}

.app-slider-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 50px;
    box-shadow: var(--glass-shadow);
}

.app-content .subtitle {
    font-size: 32px;
    font-weight: 800;
    color: var(--title-clr);
    margin-bottom: 24px;
    line-height: 1.3;
}

.app-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.app-counter {
    font-weight: 700;
    color: var(--premium-primary);
    font-size: 16px;
}

.app-btns img {
    transition: all 0.3s ease;
}

.app-btns img:hover {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.05);
}

/* CTA Section UI Upgrade */
.cta-wrapper {
    background: var(--premium-gradient-1) !important;
    border-radius: 32px !important;
    padding: 70px 50px !important;
    box-shadow: 0 20px 40px var(--premium-primary-glow) !important;
    position: relative;
    overflow: hidden;
    border: none !important;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background: radial-gradient(circle at 15% 25%, rgba(255,255,255,0.08), transparent 40%),
                radial-gradient(circle at 85% 75%, rgba(255,255,255,0.08), transparent 40%);
    pointer-events: none;
}

.cta-wrapper .title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 16px;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.cta-wrapper .cmn--btn {
    background: #ffffff !important;
    color: var(--premium-primary) !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    padding: 14px 38px !important;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-wrapper .cmn--btn:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
}

/* Testimonials Section UI Upgrade */
.testimonial-section {
    padding: 100px 0;
}

.testimonial__item-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    margin: 15px;
    transition: all 0.3s ease;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.testimonial__item-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--base-rgb), 0.2);
}

.testimonial__item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--premium-primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.testimonial__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__item-cont {
    flex-grow: 1;
}

.testimonial__item-cont blockquote {
    font-size: 15px;
    font-style: italic;
    color: var(--body-clr);
    margin-top: 15px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--premium-primary);
}

.rating-stars {
    color: #ffb300;
    font-size: 16px;
    margin-top: 5px;
}

/* Newsletter Section UI Upgrade */
.subscribe-newsletter {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
    padding: 70px 0;
}

.subscribe-newsletter h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.subscribe-newsletter input.form-control {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--glass-text) !important;
    padding: 16px 25px !important;
    border-radius: 50px !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

.subscribe-newsletter input.form-control:focus {
    border-color: var(--premium-primary);
    background: var(--white-clr);
    box-shadow: 0 0 0 4px var(--premium-primary-glow);
}

.subscribe-btn {
    background: var(--premium-gradient-1) !important;
    color: #ffffff !important;
    padding: 16px 35px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--premium-primary-glow) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.subscribe-btn:hover {
    background: var(--premium-gradient-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--premium-primary-glow) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .banner-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .banner-content {
        max-width: 100%;
    }
    
    .banner-login-container {
        max-width: 100%;
        width: 100%;
    }
    
    .banner-thumb {
        display: none !important;
    }

    .testimonial__item-cont blockquote {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--premium-primary);
        padding-top: 15px;
    }
}

/* Visit Website Button Style */
.visit-website-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--premium-primary);
    border: 2px solid var(--premium-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 40px;
    box-sizing: border-box;
}

.visit-website-btn:hover {
    background: var(--premium-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(4, 97, 165, 0.2);
}

/* Modal Login Portal popup styles */
.premium-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.premium-modal-content {
    position: relative;
    max-width: 460px;
    width: 95%;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-modal-overlay.active .premium-modal-content {
    transform: translateY(0) scale(1);
}

.premium-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.premium-modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.premium-modal-close span {
    font-size: 22px;
    line-height: 1;
}

/* Make Banner Full-Screen Centered & readable */
.banner-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1600&auto=format&fit=crop&q=80') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    color: #ffffff;
    text-align: center;
}

.banner-content {
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
    flex: 0 0 100% !important;
}

.banner-content .title {
    color: #ffffff !important;
    font-size: 3.5rem !important;
}

.banner-content .txt {
    color: #cbd5e1 !important;
}

.banner-content .subtitle {
    color: #00bcd4 !important;
}

.banner-content .app-btns {
    justify-content: center !important;
}

/* Floating Contact Actions */
.floating-contact-bar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-3px);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-email {
    background: #ea4335;
}

.floating-btn i, .floating-btn span {
    font-size: 28px;
    line-height: 1;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00bcd4;
    line-height: 1.2;
}

.hero-stat-item .stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-top: 5px;
    font-weight: 500;
}

/* FAQ Section */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .accordion-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item.open {
    border-color: #0461a5;
    box-shadow: 0 4px 20px rgba(4, 97, 165, 0.08);
}

.faq-section .accordion-title {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-section .accordion-title h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1e293b;
    transition: color 0.3s;
}

.faq-section .accordion-item.open .accordion-title h5 {
    color: #0461a5;
}

.faq-section .accordion-title span {
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-section .accordion-item.open .accordion-title span {
    transform: rotate(180deg);
    color: #0461a5;
}

.faq-section .accordion-content {
    padding: 0 20px 20px 20px;
    display: none;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Premium Header Menu UI Overrides */
.navbar-bottom {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
    padding: 12px 0 !important;
    transition: all 0.3s ease;
}

.navbar-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-bottom-wrapper .logo img {
    height: 52px !important;
    transition: transform 0.3s ease;
}

.navbar-bottom-wrapper .logo:hover img {
    transform: scale(1.05);
}

.menu {
    display: flex;
    align-items: center;
    gap: 32px !important;
}

.menu li {
    position: relative;
}

.menu li a {
    color: #475569 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.3s ease !important;
    display: inline-block;
    position: relative;
    letter-spacing: 0.2px;
}

.menu li a:hover {
    color: #0461a5 !important;
    background: rgba(4, 97, 165, 0.05);
}

/* Active Link Indicator */
.menu li a.active {
    color: #0461a5 !important;
    background: rgba(4, 97, 165, 0.08);
}

.menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #0461a5;
    border-radius: 50%;
}

/* Header Buttons styling */
.navbar-bottom-wrapper .cmn--btn {
    background: transparent !important;
    color: #0461a5 !important;
    border: 2px solid #0461a5 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

.navbar-bottom-wrapper .cmn--btn:hover {
    background: #0461a5 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(4, 97, 165, 0.2);
}

.login-header-btn {
    background: linear-gradient(135deg, #0461a5, #00bcd4) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.login-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4) !important;
    color: #ffffff !important;
}

@keyframes statusGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Premium Reviews Grid Overrides */
.premium-review-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #e2e8f0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.premium-review-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(4, 97, 165, 0.08) !important;
    border-color: rgba(4, 97, 165, 0.3) !important;
}

.premium-review-card .client-profile {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
}

.premium-review-card .client-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid rgba(4, 97, 165, 0.1) !important;
}

.premium-review-card .client-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.premium-review-card .client-name {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

.premium-review-card .client-title {
    font-size: 0.85rem !important;
    color: #64748b !important;
    margin-top: 3px !important;
    font-weight: 500 !important;
}

.premium-review-card .rating-stars {
    color: #ffb400 !important;
    display: flex !important;
    gap: 2px !important;
    margin-bottom: 15px !important;
}

.premium-review-card .rating-stars i {
    font-size: 16px !important;
}

.premium-review-card .review-quote {
    font-size: 0.95rem !important;
    color: #475569 !important;
    line-height: 1.6 !important;
    font-style: italic !important;
    margin: 0 !important;
    text-align: left !important;
}


