/* ------------Header Start------------- */
:root {
    --primary-teal: #14b8a6;
    --primary-dark-teal: #0f766e;
    --emerald: #10b981;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-900: #111827;
    --white-blur: rgba(255, 255, 255, 0.8);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
    background-color: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}
.header-body{
    margin-bottom: 8vh;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);  
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.18);

}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
}

@media(min-width: 640px) {
    .header-inner {
        padding: 0 1.5rem;
    }
}

@media(min-width: 1024px) {
    .header-inner {
        padding: 0 2rem;
    }
}


.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s;
    z-index: 101;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.2s;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}


.desktop-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
    padding: 0.625rem 1.25rem;
    border-radius: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item.outline-teal {
    color: #0d9488;
    border: 1px solid #99f6e4;
}

.nav-item.outline-teal:hover {
    background-color: #f0fdfa;
    border-color: #5eead4;
}

.nav-item.simple-gray {
    color: var(--gray-600);
}

.nav-item.simple-gray:hover {
    background-color: var(--gray-50);
    color: var(--gray-900);
}

.nav-item.active {
    background: linear-gradient(to right, #14b8a6, #0d9488) !important;
    color: white !important;
    border-color: var(--primary-teal) !important;
    box-shadow: 0 8px 20px -4px rgba(20, 184, 166, 0.5);
}

.nav-item.active svg {
    stroke: white;
}


.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background-color: white;
    border-radius: 50%;
    opacity: 1;
}


.desktop-auth {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.btn-login {
    padding: 0.625rem 1.5rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.75rem;
    border: 1px solid transparent;

}

.btn-login:hover {
    background-color: var(--gray-50);
    color: var(--gray-900);
    border: 1px solid var(--gray-200);

}

.btn-register {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(to right, #0d9488, var(--primary-teal), var(--emerald));
    color: white;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-register:hover {
    box-shadow: 0 20px 25px -5px rgba(20, 184, 166, 0.3);
    background: linear-gradient(to right, #0a7068ff, #119888ff, #0d9a6bff);
}



.hamburger-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.75rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 101;
}

.hamburger-btn:hover {
    background-color: var(--gray-100);
}


.hamburger-btn .icon-close {
    display: none;
}

.hamburger-btn .icon-open {
    display: block;
}


body.menu-open .hamburger-btn .icon-close {
    display: block;
}

body.menu-open .hamburger-btn .icon-open {
    display: none;
}



.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 90;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateY(0);
}

.drawer-links {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    text-decoration: none;
    font-size: 1rem;
    color: var(--gray-600);
    padding: 0.75rem 1rem;

}

.mobile-link.active {
    background: linear-gradient(to right, #14b8a6, #0f766e);
    color: white !important;
    box-shadow: 0 10px 15px -3px rgba(26, 27, 26, 0.3), 0 4px 6px -2px rgba(20, 184, 166, 0.05);
    border-radius: 0.9rem;
    font-weight: 500;
}

.mobile-link.highlight-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0d9488;
    border-bottom: none;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 0.9rem;
}

.drawer-divider {
    height: 1px;
    background-color: var(--gray-100);
    margin: 0 1.5rem;
}

.mobile-auth-stack {
    padding: 1.5rem;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;

}

.mobile-login-link {
    text-align: left;
    text-decoration: none;
    color: var(--gray-600);
    padding: 0.75rem 1rem;
}

.btn-mobile-signup {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, #0d9488, #14b8a6);
    color: white;
    padding: 0.875rem;
    border-radius: 0.8rem;
    text-decoration: none;

}


@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .desktop-auth {
        display: flex;
    }

    .hamburger-btn {
        display: none;
    }

    .mobile-drawer {
        display: none !important;
    }
}

/* ------------Header End------------- */
/* ------------Footer Start------------- */

.footer-body {
    margin-top: auto;
}

.main-footer {
    position: relative;

    background: linear-gradient(135deg, #001F3F, #002952, #001F3F);
    color: #d1d5db;
    overflow: hidden;
    font-family: inherit;
}


.footer-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-blob {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.1;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.blob-top-left {
    top: 0;
    left: 0;
    background-color: #14b8a6;
}

.blob-bottom-right {
    bottom: 0;
    right: 0;
    background-color: #10b981;
}

.footer-content-wrapper {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-content-wrapper {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-content-wrapper {
        padding: 0 2rem;
    }
}


.newsletter-section {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.badge-pill span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.badge-pill .icon-sm {
    width: 1rem;
    height: 1rem;
    color: #2dd4bf;
}

.newsletter-container h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

@media (min-width: 768px) {
    .newsletter-container h3 {
        font-size: 1.875rem;
    }
}

.newsletter-container p {
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 36rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .subscribe-form {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    outline: none;
    transition: border-color 0.2s;
}

.email-input::placeholder {
    font-family: 'Inter', sans-serif;
    color: #9ca3af;
}

.email-input:focus {
    border-color: #2dd4bf;
}

.btn-subscribe {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #0d9488, #059669);
    font-family: 'Inter', sans-serif;
    color: white;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.3);
}

.footer-links-area {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .brand-col {
        grid-column: span 2;
    }
}


.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
}

.footer-logo img {
    height: 3rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.brand-desc {
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 28rem;
    line-height: 1.6;
}

.stats-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.stat-badge span {
    font-size: 0.875rem;
    color: #d1d5db;
}

.stat-badge .icon-teal {
    color: #2dd4bf;
    width: 1rem;
    height: 1rem;
}

.stat-badge .icon-emerald {
    color: #34d399;
    width: 1rem;
    height: 1rem;
}

.stat-badge .icon-cyan {
    color: #22d3ee;
    width: 1rem;
    height: 1rem;
}

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

.social-btn {
    width: 2.75rem;
    height: 2.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
}

.social-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
}

.social-btn:hover {
    background: linear-gradient(to right, #0d9488, #14b8a6);
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(20, 184, 166, 0.3);
    border-color: transparent;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-menu a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-menu a:hover {
    color: #2dd4bf;
}

.footer-menu a .dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #9ca3af;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.footer-menu a:hover .dot {
    background-color: #2dd4bf;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bottom-content {
        flex-direction: row;
    }
}

.bottom-content p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.legal-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #2dd4bf;
}

.legal-links .sep {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #4b5563;
    border-radius: 50%;
}

/* ------------Footer End------------- */