
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}


/* Top Contact Bar */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 25px;
    color: #4a5568;
}

    .contact-info span {
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .contact-info i {
        color: #667eea;
    }

.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 14px;
    }

        .social-links a:hover {
            transform: translateY(-2px) scale(1.1);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: calc(100vw - 40px);
    width: auto;
}

    .floating-nav.scrolled {
        top: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

    .nav-logo img {
        height: 45px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .nav-menu > li {
        position: relative;
        flex-shrink: 0;
    }

        .nav-menu > li > a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

.floating-nav.scrolled .nav-menu > li > a {
    color: #2d3748;
}

.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::before,
.nav-menu > li.active > a::before {
    width: 100%;
}

.nav-menu > li > a:hover {
    color: #667eea;
    transform: translateY(-1px);
}

.floating-nav.scrolled .nav-menu > li > a:hover {
    color: #667eea;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 4px;
    width: auto;
    height: auto;
    border-top:none;
}

.nav-menu li:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 220px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 15px 25px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

    .dropdown a:hover {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        padding-left: 30px;
    }

.dropdown li:last-child a {
    border-bottom: none;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.auth-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-family: inherit;
}

.btn-login {
    background: #667eea;
    color: white;
    border: 2px solid white;
    border-color: #667eea;
}

.floating-nav.scrolled .btn-login {
    color: #667eea;
    border-color: #667eea;
}

.btn-login:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.btn-signup {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
}

    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(238, 90, 82, 0.4);
    }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .mobile-toggle:hover {
        background: rgba(102, 126, 234, 0.1);
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

.floating-nav.scrolled .mobile-toggle span {
    background: #4a5568;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Content Area */
.content-area {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.content-placeholder h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-placeholder p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Auth Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.auth-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    transform: scale(0.8) translateY(-30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-overlay.active .auth-panel {
    /*            transform: scale(1) translateY(0);*/
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-btn:hover {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        transform: rotate(90deg);
    }

.auth-panel h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #374151;
    }

/*    .form-group input {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid rgba(102, 126, 234, 0.2);
        border-radius: 15px;
        font-size: 16px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.8);
    }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            background: white;
        }*/

.remember-me {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

    .remember-me input[type="checkbox"] {
        width: auto;
        margin: 0;
    }

.auth-submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .auth-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 14px;
}

    .auth-links a {
        color: #667eea;
        text-decoration: none;
        transition: color 0.3s;
    }

        .auth-links a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

.switch-auth {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

    .switch-auth a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

        .switch-auth a:hover {
            text-decoration: underline;
        }

.signup-panel .auth-submit-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

    .signup-panel .auth-submit-btn:hover {
        box-shadow: 0 15px 35px rgba(238, 90, 82, 0.4);
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-container {
        gap: 25px;
    }

    .floating-nav {
        padding: 12px 25px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 18px;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-menu > li > a {
        font-size: 14px;
    }

    .auth-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .floating-nav {
        padding: 10px 20px;
    }
}

@media (max-width: 900px) {
    .floating-nav {
        left: 20px;
        right: 20px;
        transform: none;
        border-radius: 25px;
        padding: 15px 25px;
        width: auto;
        max-width: none;
    }

        .floating-nav.scrolled {
            top: 10px;
        }

    .nav-container {
        justify-content: space-between;
        gap: 15px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 25px;
        border-radius: 25px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.3);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .nav-menu > li {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

            .nav-menu > li:last-of-type {
                border-bottom: none;
            }

            .nav-menu > li > a {
                padding: 18px 0;
                color: #2d3748 !important;
                font-size: 16px;
                justify-content: space-between;
            }

                .nav-menu > li > a:hover {
                    color: #667eea !important;
                    transform: none;
                }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 10px 0 0 0;
        background: rgba(102, 126, 234, 0.05);
        border-radius: 15px;
        display: none;
        box-shadow: none;
        border: none;
    }

    .nav-menu li:hover .dropdown,
    .nav-menu li.dropdown-open .dropdown {
        display: block;
    }

    .dropdown a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .auth-buttons {
        margin: 20px 0 0 0;
        justify-content: center;
        width: 100%;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .auth-btn {
        flex: 1;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        gap: 15px;
        font-size: 12px;
    }

        .contact-info span:last-child {
            display: none;
        }

    .content-placeholder h2 {
        font-size: 2rem;
    }

    .auth-panel {
        padding: 30px 25px;
        margin: 20px;
        border-radius: 20px;
    }

    .nav-logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .top-contact-bar {
        padding: 6px 0;
    }

    .contact-container {
        padding: 0 15px;
    }

    .contact-info {
        gap: 10px;
    }

    .social-links {
        gap: 8px;
    }

        .social-links a {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }

    .floating-nav {
        left: 15px;
        right: 15px;
        padding: 12px 20px;
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-menu {
        left: 15px;
        right: 15px;
        padding: 25px 20px;
        top: 95px;
    }

    .auth-panel {
        padding: 25px 20px;
        margin: 15px;
    }

        .auth-panel h2 {
            font-size: 24px;
        }

    .content-placeholder h2 {
        font-size: 1.5rem;
    }

    .auth-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Dropdown mobile interaction */
@media (max-width: 900px) {
    .nav-menu > li.has-dropdown > a {
        cursor: pointer;
    }
}
/* Top Contact Bar */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 25px;
    color: #4a5568;
}

    .contact-info span {
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .contact-info i {
        color: #667eea;
    }

.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 14px;
    }

        .social-links a:hover {
            transform: translateY(-2px) scale(1.1);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: calc(100vw - 40px);
    width: auto;
}

    .floating-nav.scrolled {
        top: 15px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

    .nav-logo img {
        height: 45px;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .nav-menu > li {
        position: relative;
        flex-shrink: 0;
    }

        .nav-menu > li > a {
            color: rgb(1, 11, 101);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

.floating-nav.scrolled .nav-menu > li > a {
    color: #2d3748;
}

.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::before,
.nav-menu > li.active > a::before {
    width: 100%;
}

.nav-menu > li > a:hover {
    color: #667eea;
    transform: translateY(-1px);
}

.floating-nav.scrolled .nav-menu > li > a:hover {
    color: #667eea;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.nav-menu li:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    min-width: 220px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 15px 25px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

    .dropdown a:hover {
        background: rgba(102, 126, 234, 0.1);
        color: #667eea;
        padding-left: 30px;
    }

.dropdown li:last-child a {
    border-bottom: none;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.auth-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-login {
    background: #667eea;
    color: white;
    border: 2px solid #667eea;
}

.floating-nav.scrolled .btn-login {
    color: #667eea;
    border-color: #667eea;
}

.btn-login:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.btn-signup {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
}

    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(238, 90, 82, 0.4);
    }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .mobile-toggle:hover {
        background: rgba(102, 126, 234, 0.1);
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

.floating-nav.scrolled .mobile-toggle span {
    background: #4a5568;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Content Area */
.content-area {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.content-placeholder h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-placeholder p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Auth Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.auth-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    transform: scale(0.8) translateY(-30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.popup-overlay.active .auth-panel {
    /*            transform: scale(1) translateY(0);*/
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .close-btn:hover {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        transform: rotate(90deg);
    }

.auth-panel h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #374151;
    }

    .form-group input {
        width: 100%;
        padding: 15px 20px;
/*        border: 2px solid rgba(102, 126, 234, 0.2);
        border-radius: 15px;*/
        font-size: 16px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.8);
    }

        .form-group input:focus {
            outline: none;
/*            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            background: white;*/
        }

.remember-me {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

    .remember-me input[type="checkbox"] {
        width: auto;
        margin: 0;
    }

.auth-submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family:inherit;
}

    .auth-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 14px;
}

    .auth-links a {
        color: #667eea;
        text-decoration: none;
        transition: color 0.3s;
    }

        .auth-links a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

.switch-auth {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

    .switch-auth a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
    }

        .switch-auth a:hover {
            text-decoration: underline;
        }

.signup-panel .auth-submit-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

    .signup-panel .auth-submit-btn:hover {
        box-shadow: 0 15px 35px rgba(238, 90, 82, 0.4);
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-container {
        gap: 25px;
    }

    .floating-nav {
        padding: 12px 25px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 18px;
    }

    .nav-container {
        gap: 20px;
    }

    .nav-menu > li > a {
        font-size: 14px;
    }

    .auth-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .floating-nav {
        padding: 10px 20px;
    }
}

@media (max-width: 900px) {
    .floating-nav {
        left: 20px;
        right: 20px;
        transform: none;
        border-radius: 25px;
        padding: 15px 25px;
        width: auto;
        max-width: none;
    }

        .floating-nav.scrolled {
            top: 10px;
        }

    .nav-container {
        justify-content: space-between;
        gap: 15px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 25px;
        border-radius: 25px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.3);
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .nav-menu > li {
            width: 100%;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

            .nav-menu > li:last-of-type {
                border-bottom: none;
            }

            .nav-menu > li > a {
                padding: 18px 0;
                color: #2d3748 !important;
                font-size: 16px;
                justify-content: space-between;
            }

                .nav-menu > li > a:hover {
                    color: #667eea !important;
                    transform: none;
                }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 10px 0 0 0;
        background: rgba(102, 126, 234, 0.05);
        border-radius: 15px;
        display: none;
        box-shadow: none;
        border: none;
    }

    .nav-menu li:hover .dropdown,
    .nav-menu li.dropdown-open .dropdown {
        display: block;
    }

    .dropdown a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .auth-buttons {
        margin: 20px 0 0 0;
        justify-content: center;
        width: 100%;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .auth-btn {
        flex: 1;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        gap: 15px;
        font-size: 12px;
    }

        .contact-info span:last-child {
            display: none;
        }

    .content-placeholder h2 {
        font-size: 2rem;
    }

    .auth-panel {
        padding: 30px 25px;
        margin: 20px;
        border-radius: 20px;
    }

    .nav-logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .top-contact-bar {
        padding: 6px 0;
    }

    .contact-container {
        padding: 0 15px;
    }

    .contact-info {
        gap: 10px;
    }

    .social-links {
        gap: 8px;
    }

        .social-links a {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }

    .floating-nav {
        left: 15px;
        right: 15px;
        padding: 12px 20px;
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-menu {
        left: 15px;
        right: 15px;
        padding: 25px 20px;
        top: 95px;
    }

    .auth-panel {
        padding: 25px 20px;
        margin: 15px;
    }

        .auth-panel h2 {
            font-size: 24px;
        }

    .content-placeholder h2 {
        font-size: 1.5rem;
    }

    .auth-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Dropdown mobile interaction */
@media (max-width: 900px) {
    .nav-menu > li.has-dropdown > a {
        cursor: pointer;
    }
}

/* navbar style end  */



/* Hero Section */
.hero {
    padding-top: 100px;
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* video fills the hero */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* ensure content sits above video */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    white-space: nowrap;
}

.separator {
    font-size: 3rem;
    opacity: 0.7;
}

.sector-slider {
    display: inline-block;
    overflow: hidden;
    height: 1.2em; /* one line of text */
    vertical-align: bottom;
}

.slider-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease;
}

    .slider-inner > div {
        line-height: 1.2em;
        height: 1.2em;
    }

.hero-subtitle {
    font-size: 1.4rem;
    margin: 2rem 0;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    }



/* about section css code  */

.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.about-video {
    flex: 1 1 40%;
}

    .about-video video {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

.about-text {
    flex: 1 1 55%;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

    .about-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #b30000;
        border-bottom: 3px solid #b30000;
        display: inline-block;
        padding-bottom: 5px;
    }

    .about-text p {
        line-height: 1.7;
        margin-bottom: 15px;
        color: #333;
        font-size: 16px;
    }

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-video,
    .about-text {
        flex: 1 1 100%;
    }
}


.products-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom right, #e0eafc, #cfdef3);
    display: flex;
    justify-content: center;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    padding: 30px;
    color: #333;
}

.products-menu {
    flex: 1;
    min-width: 280px;
}

    .products-menu h2 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #111;
    }

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .product-list li {
        padding: 12px 20px;
        margin-bottom: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
        border-radius: 12px;
    }

        .product-list li:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateX(5px);
        }

.product-preview {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    min-width: 300px;
}

    .product-preview img {
        max-width: 100%;
        max-height: 400px;
        border-radius: 15px;
        object-fit: contain;
        transition: opacity 0.3s ease-in-out;
    }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(to right, #eef1f5, #d9e0ec);
    color: #222;
}

.testimonial-section {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: #f9a825;
    margin-bottom: 10px;
}

.testimonial-subtext {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.testimonial-wrapper {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-in-out;
    width: max-content;
}

.testimonial-card {
    min-width: 280px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    color: #222;
    border: 2px solid rgba(0, 0, 0, 0.1); /* clean border stroke */
    flex-shrink: 0;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 2px solid #f9a825;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #333;
    margin: 15px 0;
}

.testimonial-name {
    font-weight: bold;
    color: #f9a825;
    font-size: 1rem;
}

    .testimonial-name span {
        display: block;
        font-weight: normal;
        font-size: 0.85rem;
        color: #555;
    }

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: 45vw;
        max-width: 45vw;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 70vw;
        max-width: 70vw;
    }

    .testimonial-img {
        width: 60px;
        height: 60px;
    }

    .testimonial-heading {
        font-size: 1.8rem;
    }

    .testimonial-subtext {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 85vw;
        max-width: 85vw;
        padding: 15px;
    }

    .testimonial-img {
        width: 55px;
        height: 55px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }
}



/* Running Text Bar */
.running-strip {
    background: #000;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
}

.scrolling-text {
    display: inline-block;
    animation: scrollText 20s linear infinite;
}

    .scrolling-text span {
        margin-right: 40px;
    }

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Footer Base */
.modern-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: #111;
    padding: 60px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-block h2.brand {
    font-size: 28px;
    text-transform: uppercase;
    color: #000;
}

    .footer-block h2.brand span {
        font-size: 14px;
        display: block;
        color: #444;
    }

.footer-block h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #111;
    position: relative;
}

    .footer-block h3::after {
        content: '';
        width: 40px;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        bottom: -6px;
    }

.footer-block p, .footer-block label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.footer-block ul {
    list-style: none;
    padding: 0;
}

    .footer-block ul li {
        margin: 6px 0;
    }

        .footer-block ul li a {
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer-block ul li a:hover {
                color: #000;
                transform: translateX(4px);
            }

/* Newsletter */
.footer-block input[type="text"],
.footer-block input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    color: #111;
}

.footer-block button {
    background: #000;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

    .footer-block button:hover {
        background: #333;
    }

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #444;
}

    .footer-bottom img {
        vertical-align: middle;
        margin-top: 10px;
    }



/* footer css styles  */

.site-footer {
    background: #f7f7f7;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1 1 200px;
}

    .footer-col h4 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-col ul li {
            margin-bottom: 10px;
        }

            .footer-col ul li a {
                text-decoration: none;
                color: #000;
                font-size: 15px;
            }

    .footer-col.newsletter input[type="text"],
    .footer-col.newsletter input[type="email"] {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .footer-col.newsletter label {
        display: flex;
        align-items: center;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-col.newsletter button {
        background: #000;
        color: #fff;
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.app-links h5,
.social-icons h5 {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}

.apps img {
    height: 40px;
    margin-right: 10px;
}

.social-icons .icons i {
    font-size: 20px;
    margin-right: 12px;
    cursor: pointer;
}

hr {
    margin: 30px 0 10px;
    border: none;
    border-top: 1px solid #aaa;
}

footer p {
    text-align: center;
    font-size: 14px;
    color: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.5;
}

section.value-section {
    padding: 20px 10px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 4px;
}

.nav-buttons {
    display: flex;
    gap: 8px;
}

.nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

    .nav-btn.prev {
        background: #ffb3ba;
        color: #d63384;
    }

    .nav-btn.next {
        background: #dc3545;
        color: #fff;
    }

    .nav-btn:disabled {
        opacity: 0.5;
        cursor: default;
    }

    .nav-btn:hover:not(:disabled) {
        transform: translateY(-2px);
    }

.cards-container {
    overflow: hidden;
}

.cards-wrapper {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
    scroll-behavior: smooth;
    overflow-x: auto;
    touch-action: pan-x pan-y; /* <-- allow both horizontal swipe AND vertical page scroll */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .cards-wrapper::-webkit-scrollbar {
        display: none;
    }

.highlight-card {
    flex: 0 0 calc(25% - 12px);
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card-text-block {
    padding: 12px;
    font-size: 0.9rem;
    color: #c00;
    border-bottom: 1px solid #eee;
}

.card-img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

@media (max-width: 992px) {
    .highlight-card {
        flex: 0 0 calc(33.333% - 11px);
    }
}

@media (max-width: 768px) {
    .highlight-card {
        flex: 0 0 calc(50% - 8px);
    }

    .nav-buttons {
        display: none;
    }
}

@media (max-width: 576px) {
    .highlight-card {
        flex: 0 0 100%;
    }
}