/* Reset & Base */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Sticky Wrapper */
.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(to right, #101d70, #0c2c7a);
    color: white;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-bar i {
    margin-right: 6px;
    color: #04b4f0;
}

.top-right > span {
    margin-left: 20px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #04b4f0;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Branding */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 600;
    color: #101d70;
    letter-spacing: 1px;
    text-align: center;
}

.brand-name span {
    font-family: 'Great Vibes', cursive;
    font-weight: 500;
    color: #04b4f0;
}

.tagline {
    font-size: 10px;
    letter-spacing: 1px;
    color: #777;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 12px;
}

.nav-links a {
    color: #101d70;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Underline animation */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #007BFF;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #007BFF;
    background-color: rgba(4, 180, 240, 0.08);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #04b4f0;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #04b4f0;
    bottom: -5px;
    left: 0;
}

/* Icons */
.icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon, .grid-icon {
    font-size: 20px;
    color: #101d70;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
}

/* Call Section */
.call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-icon {
    background-color: #04b4f0;
    color: white;
    font-size: 20px;
    padding: 12px;
    border-radius: 50%;
}

.call div {
    color: #333;
    font-size: 14px;
}

.call strong {
    color: #101d70;
    font-size: 16px;
}

/* Hamburger for Mobile */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #101d70;
}

/* Brand Collaboration Button */
.brand-collab-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 60, 0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 15px;
}

.brand-collab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 60, 0.5);
    background: black;
}

.brand-collab-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 107, 60, 0.35);
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
    .brand-name {
        font-size: 24px;
    }
    .nav-links {
        gap: 10px;
    }
    .icons {
        gap: 15px;
    }
    .top-bar {
        font-size: 13px;
        padding: 10px 20px;
    }
    .top-right > span {
        margin-left: 15px;
    }
    .call {
        gap: 6px;
    }
    .call-icon {
        font-size: 16px;
        padding: 8px;
    }
    .call strong {
        font-size: 14px;
    }
    .call div {
        font-size: 12px;
    }
    .brand-collab-btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}

/* Responsive - Small Laptops */
@media (max-width: 900px) {
    .navbar {
        flex-wrap: wrap;
    }
    .call {
        gap: 6px;
    }
    .call-icon {
        font-size: 16px;
        padding: 8px;
    }
    .call strong {
        font-size: 14px;
    }
    .call div {
        font-size: 12px;
    }
}

/* Responsive - Tablets & Phones */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* hide top bar */
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hamburger {
        display: block;
        align-self: flex-end;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 10px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .icons {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .call {
        gap: 6px;
    }
    .call-icon {
        font-size: 16px;
        padding: 8px;
    }
    .call strong {
        font-size: 14px;
    }
    .call div {
        font-size: 12px;
    }

    .brand-collab-btn {
        margin: 0 auto;

    }
}

/* Responsive - Phones */
@media (max-width: 480px) {
    .brand-name {
        font-size: 20px;
    }
    .tagline {
        font-size: 8px;
    }
    .top-right {
        display: none;
    }
    .icons {
        gap: 8px;
    }
    .search-icon, .grid-icon {
        padding: 8px;
        font-size: 18px;

    }
    .search-box {
            display: none !important;
    }

    .call {
        gap: 6px;
    }
    .call-icon {
        font-size: 16px;
        padding: 8px;
    }
    .call strong {
        font-size: 14px;
    }
    .call div {
        font-size: 12px;
    }
    .brand-collab-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    .top-bar {
        display: none; /* hide top bar again for safety */
    }
}

/* Active Link */
.active {
    color: #007bff;
    font-weight: bold;
    border-bottom: 2px solid #007bff;
}
