:root {
    /* Colors */
    --primary-color: #0d6efd;
    --primary-color-dark: #0950b3;
    --secondary-color: #f8fafc;
    --accent-color: #0dcaf0;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Typography */
    --font-family: 'Outfit', sans-serif;
    
    /* Spacing */
    --section-pad-y: 6rem;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    
    /* Box Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(13, 110, 253, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding: var(--section-pad-y) 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

/* Typography Utilities */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-color);
}

.section-description {
    color: var(--text-light);
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.text-left {
    text-align: left;
    margin-left: 0;
}

.section-title-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-wrap .section-subtitle::before,
.section-title-wrap .section-subtitle::after {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

.btn i {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.mt-4 { margin-top: 2rem; }

/* Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 100;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.header.scroll-header {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    gap: 0.3rem;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.logo span {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, rgba(225, 239, 255, 0.5) 100%);
    overflow: hidden;
}

.hero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image .image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    animation: floating 6s ease-in-out infinite;
}

.blob-shape {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50% 50% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
    opacity: 0.15;
    animation: morph 8s ease-in-out infinite alternate;
}

.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation: floating 5s ease-in-out infinite 1s;
}

.badge-2 {
    bottom: 10%;
    right: -5%;
    animation: floating 7s ease-in-out infinite 0.5s;
}

.badge-icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f59e0b;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge-2 .badge-icon {
    color: var(--primary-color);
}

.floating-badge h4 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.floating-badge span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    gap: 0.3rem;
    transition: var(--transition);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* About */
.about-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    padding: 1rem;
}

.glass-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(13, 202, 240, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    transform: translate(-15px, 15px);
}

.about-img-wrap img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    text-align: center;
    border: 3px solid #fff;
}

.exp-badge h2 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.exp-badge p {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.about-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.1rem;
}

.about-list span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Benefits */
.benefits-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.benefit-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-info p {
    color: var(--text-light);
}

.benefits-image {
    position: relative;
    padding: 2rem;
}

.benefits-img-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background-color: rgba(13, 110, 253, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.media-graphic {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    animation: floating 5s ease-in-out infinite;
}

/* Contact */
.contact-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-title span {
    color: var(--primary-color);
}

.contact-desc {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.contact-method:hover .contact-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.contact-method p {
    color: var(--text-light);
}

.contact-form-panel {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form input,
.form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8fafc;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
    background-color: #fff;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding-top: 5rem;
}

.footer-container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    margin-bottom: 3rem;
}

.footer-logo {
    color: #fff;
    margin-bottom: 1.5rem;
}

.brand-col p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-col p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    border: none;
    border-radius: var(--border-radius-sm);
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-color-dark);
}

.footer-bottom {
    background-color: #0b1120;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #fff;
}

/* Animations */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes morph {
    0% { border-radius: 50% 50% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 70% 70% 30% / 30% 50% 50% 70%; }
    100% { border-radius: 50% 50% 30% 70% / 60% 30% 70% 40%; }
}

/* Scroll Reveal Classes */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.active.reveal-left,
.active.reveal-right,
.active.reveal-bottom {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container,
    .about-container,
    .benefits-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .benefits-content {
        order: 2;
    }
    
    .form-group.row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 6rem 3rem;
        transition: right 0.4s ease;
        z-index: 1000;
    }
    
    .nav-menu.show-menu {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-toggle,
    .nav-close {
        display: block;
    }
    
    .nav-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2rem;
    }
    
    .nav-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Login Page Specifics */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e1efff 100%);
    padding: 2rem;
}

.login-card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    width: 100%;
    text-align: center;
    animation: reveal-bottom 0.8s ease forwards;
}

.login-logo {
    margin-bottom: 2rem;
    justify-content: center;
}

.login-header {
    margin-bottom: 2.5rem;
}

.login-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-light);
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.search-box input {
    padding-left: 3rem !important;
    font-size: 1.1rem !important;
}

.subdomain-preview {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: left;
    padding-left: 0.5rem;
}

.subdomain-preview span {
    color: var(--primary-color);
    font-weight: 600;
}

.login-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.login-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

@keyframes reveal-bottom {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


.login-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.login-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.login-nav a:hover {
    color: var(--primary-color);
}



/* Login Support Section styles */
.login-body {
    flex-direction: column; /* Stack the login card and the support section */
}

.login-contact-section {
    margin-top: 3rem;
    max-width: 500px;
    width: 100%;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
}

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

.contact-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.support-item {
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.support-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.whatsapp-support i {
    color: #25D366;
}

@media screen and (max-width: 576px) {
    .contact-grid-small {
        grid-template-columns: 1fr;
    }
}



/* Professional Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px; /* Professional height for navbar */
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.header.scroll-header .logo-img {
    height: 40px; /* Slightly smaller when scrolled */
}

.footer-logo {
    margin-bottom: 2rem;
    display: inline-block;
}

.footer-logo .logo-img {
    height: 54px; /* Slightly larger in footer */
    filter: brightness(0) invert(1); /* Optional: Use this if you want it to be pure white in the dark footer */
    opacity: 0.95;
}

.login-logo, .registration-card .login-logo {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.login-logo .logo-img {
    height: 64px; /* Hero/Card size */
}

@media screen and (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}



/* Professional Logo & Brand Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.logo-img {
    height: 50px; /* Standard professional height */
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.header.scroll-header .logo-img {
    height: 42px; /* Slimmer logo on scroll */
}

/* Footer white logo */
.footer-logo .logo-img {
    height: 60px;
    filter: brightness(0) invert(1); /* Makes the colored logo pure white for dark footer */
    opacity: 0.9;
}

/* Login/Registration Card Logo */
.login-logo .logo-img {
    height: 70px;
    margin: 0 auto;
}

.brand-col .footer-logo {
    margin-bottom: 2rem;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}



/* Final Professional Logo Fix - Removing White Background via CSS */
.logo-img {
    mix-blend-mode: multiply; /* Effectively removes white background on light surfaces */
    height: 54px; /* Increased size for better visibility */
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.scroll-header .logo-img {
    height: 46px;
}

/* Footer Fix for Dark Background */
.footer-logo .logo-img {
    filter: invert(1) contrast(200%); /* Inverts black/purple to white and boosts contrast */
    mix-blend-mode: screen; /* Removes black/dark background on dark surfaces */
    opacity: 1;
    height: 60px;
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .logo-img {
        height: 42px;
    }
}



/* Final Background Removal Fix - Forced High Contrast for Multiply Blend */
.logo-img {
    mix-blend-mode: multiply; /* Removes white background */
    filter: contrast(125%) brightness(110%); /* Cleans up any faint gray artifacts */
    height: 56px;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.scroll-header .logo-img {
    height: 48px;
}

/* Ensure the footer logo remains crisp and white */
.footer-logo .logo-img {
    filter: brightness(0) invert(1) contrast(200%); /* Full white inversion */
    mix-blend-mode: screen; /* Safety for dark backgrounds */
    opacity: 1;
    height: 64px;
}

