:root {
    --primary-color: #0d47a1; /* Updated to dark blue to match logo */
    --text-dark: #111;
    --text-medium: #444;
    --text-light: #777;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #eee;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    height: 70px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1100; /* Increased to be above content selectors */
    display: flex;
    align-items: center;
    transition: z-index 0s;
}

.header.menu-open {
    z-index: 3000; /* Ensure it covers everything when menu is open */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 2002;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    margin-bottom: 6px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 2px;
}

.hamburger-line:last-child {
    margin-bottom: 0;
}

/* Hamburger Animation to X */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px; /* Increased from 42px for better visibility */
    width: auto;
    display: block;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li.has-dropdown {
    position: static;
}

.nav-links li.has-dropdown a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-top: 1px;
    color: #888;
}

.nav-links li.has-dropdown:hover .dropdown-arrow {
    transform: rotate(-180deg);
    color: var(--primary-color);
}

.mega-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}

.nav-links li.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: flex;
    padding: 40px 0;
    gap: 80px;
}

.mega-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.mega-column ul li {
    margin-bottom: 12px;
}

.mega-column ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: var(--transition);
    padding: 0;
}

.mega-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.search-trigger {
    color: #333;
    transition: var(--transition);
}

.search-trigger:hover {
    color: var(--primary-color);
}

.all-categories {
    padding: 80px 0;
}

.all-categories .container {
    display: flex;
    gap: 60px;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px; /* Reduced from 100px 0 140px */
    text-align: center;
    background: #0d47a1; /* Dark blue to match logo */
    color: #fff;
    position: relative;
}

.hero h1 {
    font-size: 42px; /* Reduced from 54px */
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 18px; /* Reduced from 22px */
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.search-bar {
    max-width: 600px; /* Reduced for half alignment feel */
    margin: 0 auto;
    position: absolute;
    bottom: -30px; /* Adjusted to sit half-way on the hero edge */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 20px;
    z-index: 10;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 8px 30px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.search-input-wrapper:focus-within {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.search-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 0;
    font-size: 16px;
    outline: none;
    color: #333;
}

/* Featured Apps */
.featured-apps {
    padding: 40px 0 80px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Main Content Wrapper */
.main-content-wrapper {
    padding: 80px 0;
    border-top: 1px solid #eee;
}

.layout-flex {
    display: flex;
    gap: 60px;
    position: relative;
}

/* Sidebar */
.mobile-category-selector {
    display: none;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 30px;
    position: relative;
    z-index: 100;
}

.mobile-selector-trigger {
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    height: 50px;
    border-bottom: 1px solid #eee;
}

.mobile-selector-trigger span {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-selector-trigger svg {
    transition: transform 0.3s ease;
}

.mobile-category-selector.active .mobile-selector-trigger svg {
    transform: rotate(-180deg);
}

.mobile-selector-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dadce0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(32,33,36,0.28);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    padding: 8px 0;
}

.mobile-category-selector.active .mobile-selector-dropdown {
    display: block;
}

.mobile-option {
    display: block;
    padding: 10px 16px; /* Adjusted for border */
    font-size: 14px;
    color: #3c4043;
    transition: all 0.2s ease;
    margin: 2px 0;
    border-radius: 0;
    border-left: 4px solid transparent;
}

.mobile-option:hover {
    background: #f1f3f4;
    color: #202124;
    border-left-color: #1a73e8;
}

.mobile-option.active {
    background: #e8f0fe;
    color: #1a73e8;
    font-weight: 600;
    border-left-color: #1a73e8;
}

.category-sidebar {
    width: 260px;
    position: sticky;
    top: 90px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    flex-shrink: 0;
    padding: 20px 0;
    border-right: none;
}

.sidebar-link {
    display: block;
    padding: 10px 20px; /* Adjusted to account for border */
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    border-radius: 0;
    margin-bottom: 2px;
    transition: all 0.2s ease;
    border-left: 4px solid transparent; /* Added transparent border */
    position: relative;
    overflow: hidden;
}

.sidebar-link:hover {
    color: var(--text-dark);
    background: #f1f3f4;
    border-left-color: #1a73e8; /* Line turns blue on hover */
}

.sidebar-link.active {
    background: #e8f0fe;
    color: #1a73e8;
    font-weight: 600;
    border-left-color: #1a73e8; /* Line is blue when selected */
}

/* Content Area */
.category-content {
    flex: 1;
}

.category-section {
    margin-bottom: 100px;
}

.category-section h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.category-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.product-card.featured {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    padding: 24px; /* Reduced from 35px */
}

.product-card.featured .product-icon {
    width: 36px; /* Reduced from 50px */
    height: 36px;
    margin-bottom: 15px;
}

.product-card.featured .product-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-card.featured h4 {
    font-size: 18px; /* Reduced from 22px */
    margin-top: 0;
    margin-bottom: 8px;
}

.product-card.featured p {
    font-size: 14px; /* Reduced from 15px */
    margin-bottom: 15px;
    max-width: 100%;
}

.product-card.featured .try-now {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px; /* Reduced from 12px 28px */
    border-radius: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    width: auto;
    font-size: 13px; /* Reduced from 14px */
    font-weight: 700;
    transition: all 0.2s ease;
}

.product-card.featured .try-now:hover {
    background: #1565c0;
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.2);
}

.product-card.featured .try-now:hover {
    background: #1565c0;
    gap: 8px;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    transform: translateY(-4px);
    border-color: #0d47a1; /* Dark blue border on hover */
}

.product-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.product-icon svg { width: 100%; height: 100%; }

.product-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.try-now {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.link-arrow {
    transition: transform 0.2s ease;
}

.try-now:hover .link-arrow {
    transform: translateX(4px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.product-badge.new { background: #ff5722; }
.product-badge.free { background: #4caf50; }

/* Zeova One */
.zeova-one {
    padding: 100px 0;
    background: #f0f7ff;
}

.zeova-one-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.zeova-one-text { flex: 1; }

.zeova-one-logo {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    object-fit: contain;
}

.zeova-one-image { 
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.zeova-one-hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

.zeova-one-image img:not(.zeova-one-hero-logo) { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

.badge {
    display: inline-block;
    background: #e3f2fd;
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.zeova-one-text h2 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.zeova-one-text h3 { font-size: 24px; font-weight: 500; color: #444; margin-bottom: 20px; }
.zeova-one-text p { font-size: 18px; color: #666; margin-bottom: 30px; }

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 2px;
    font-weight: 700;
}

/* Marketplace */
.marketplace {
    padding: 80px 0;
}

.marketplace-card {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.marketplace-card p {
    font-size: 18px;
    color: #444;
    max-width: 750px;
    line-height: 1.6;
}

.btn-outline {
    padding: 14px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 2px;
    white-space: nowrap;
    transition: var(--transition);
}

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

/* Alternatives */
.alternatives {
    padding: 100px 0;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.alternatives h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.alternatives p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #1a1a1a;
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 50px; /* Increased from 40px for better visibility */
    width: auto;
    /* Removed white filter to show the original logo colors */
}

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

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #888;
    transition: var(--transition);
}

.social-links a:hover {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-col h4 { 
    font-size: 13px; 
    margin-bottom: 25px; 
    color: #fff; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-arrow {
    display: none;
    transition: transform 0.3s ease;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #888; font-size: 13.5px; transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #666;
    font-size: 13px;
    transition: var(--transition);
}

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

.footer-bottom p { color: #444; font-size: 12px; }

/* Tablet UI */
@media (max-width: 1024px) {
    /* Hide scrollbars for mobile/tablet */
    ::-webkit-scrollbar {
        display: none;
    }
    * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .header { height: 70px; }
    .nav-container { 
        justify-content: space-between; 
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .menu-toggle { 
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }
    
    .nav-links { 
        display: flex; 
        position: fixed;
        top: 0;
        left: -320px; /* Hidden off-screen */
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 4px;
        box-shadow: none;
        z-index: 2001;
        overflow-y: auto;
        padding: 80px 12px 50px;
        transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    }

    .nav-links.active {
        transform: translateX(320px);
    }

    .nav-links li {
        width: 100%;
        border-bottom: none;
    }

    .nav-links li a {
        padding: 12px 16px; /* Adjusted for border */
        width: 100%;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 500;
        color: #3c4043;
        border-radius: 0;
        transition: all 0.2s ease;
        border-left: 4px solid transparent;
    }

    .nav-links li a:hover {
        background: #f1f3f4;
        border-left-color: #1a73e8;
    }

    .nav-links li.has-dropdown.active {
        background: transparent;
    }

    .nav-links li.has-dropdown.active > a {
        color: #1a73e8;
        background: #e8f0fe;
        font-weight: 600;
        border-left-color: #1a73e8;
    }

    .mega-menu {
        display: none;
        background: #fff;
        padding-left: 0;
    }

    .nav-links li.has-dropdown.active .mega-menu {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 4px;
    }

    .mega-menu-content {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .mega-column {
        border-bottom: none;
    }

    .mobile-acc-trigger {
        padding: 10px 20px 10px 40px;
        margin-bottom: 0 !important;
        font-size: 13px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        color: #5f6368 !important;
        font-weight: 500;
        border-radius: 0;
        transition: background 0.2s ease;
    }

    .mobile-acc-trigger:hover {
        background: #f1f3f4;
    }

    .mega-column .footer-arrow {
        display: block;
        transition: transform 0.3s ease;
    }

    .mega-column.active .footer-arrow {
        transform: rotate(-180deg);
    }

    .mega-column ul {
        display: none;
        padding: 4px 0 8px 12px;
    }

    .mega-column.active ul {
        display: block;
    }

    .mega-column ul li {
        border-bottom: none;
        margin-bottom: 2px;
    }

    .mega-column ul li a {
        padding: 8px 20px 8px 60px;
        font-size: 13px;
        font-weight: 400;
        color: #5f6368;
        border-radius: 0;
    }

    .mega-column ul li a:hover {
        background: #f1f3f4;
        color: #1a73e8;
    }

    .nav-actions { 
        display: flex;
        align-items: center;
        justify-content: center;
        height: 24px;
    }
    
    .search-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; }
    .logo a { display: block; }

    .layout-flex {
        flex-direction: column;
        gap: 0;
    }
    .main-content-wrapper {
        padding: 80px 0 0; /* Increased from 40px to create significant space from search bar */
    }
    .main-content-wrapper .container {
        padding: 0;
        max-width: 100%;
    }
    .mobile-category-selector {
        display: block;
        position: sticky;
        top: 70px;
        z-index: 1000;
        box-shadow: none; /* Removed shadow */
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        margin-bottom: 0;
        width: 100%;
    }
    .category-sidebar {
        display: none;
    }
    .main-content-wrapper {
        padding: 0;
    }
    .category-section {
        padding: 80px 20px 40px;
        margin-bottom: 0;
        border-bottom: 1px solid #eee;
    }
    .category-section h3 {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }
    .hero {
        padding: 40px 0 80px; /* Reduced from 60px 0 100px */
        background: #0d47a1; /* Darker blue */
    }
    .hero h1 { 
        font-size: 28px; /* Reduced from 32px */
        line-height: 1.2;
        margin-bottom: 15px;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .search-input-wrapper {
        padding: 4px 20px; /* Reduced height */
    }

    .search-bar input {
        padding: 10px 0; /* Reduced height */
        font-size: 14px;
    }

    .product-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile UI */
@media (max-width: 768px) {
    .header { height: 60px; }
    
    .nav-links { 
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        padding-top: 70px;
        z-index: 2001;
        box-shadow: none;
    }

    .nav-links.active {
        transform: translateX(280px);
    }

    .mobile-category-selector {
        top: 60px;
        box-shadow: none;
        margin-top: 40px; /* Increased from 20px to further separate from search bar */
    }
    
    .zeova-one-content { flex-direction: column; text-align: center; }
    .zeova-one-logo { margin: 0 auto 20px; }
    .marketplace-card { flex-direction: column; text-align: center; padding: 30px; }
    
    .hero { 
        padding: 50px 0 90px;
        background: #0d47a1; /* Darker blue */
    }
    .hero h1 { font-size: 28px; line-height: 1.2; }
    .hero p { font-size: 15px; margin-bottom: 25px; }

    .footer {
        padding: 40px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-col h4 {
        margin-bottom: 0;
        padding: 15px 0;
        cursor: pointer;
        font-size: 13px;
        border-bottom: 1px solid #333;
    }

    .footer-arrow {
        display: block;
    }

    .footer-col.active .footer-arrow {
        transform: rotate(-180deg);
    }

    .footer-links {
        display: none;
        padding: 10px 0 20px;
        border-bottom: 1px solid #333;
    }

    .footer-col.active .footer-links {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
