@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Raleway:wght@400;600;700;800&display=swap');

:root {
    --brand-primary-dark: #001F3F;
    --brand-primary-light: #003366;
    --brand-accent-pink: #FF69B4;
    --brand-accent-gold: #FBC02D;
    --text-main: #333333;
    --bg-body: #F4F7F6;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-body);
    margin: 0;
    padding: 0;
}

/* ----------------------------------------------------
   ZOHO DESK HEADER CUSTOMIZATION
   ---------------------------------------------------- */

.Header__navbar {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary-light) 100%);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.Header__navbar .Header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Header__navbar .Header__logo {
    display: flex;
    align-items: center;
}

.Header__navbar .Header__logo img {
    max-height: 45px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.Header__navbar .Header__logo:hover img {
    transform: scale(1.05);
}

.Header__navbar .Header__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-left: 15px;
    letter-spacing: 0.5px;
}

.Header__navbar .Header__menuTab {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.Header__navbar .Header__menuList {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.Header__navbar .Header__tabsTab,
.Header__navbar .Header__menuList a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.Header__navbar .Header__tabsTab:hover,
.Header__navbar .Header__menuList a:hover {
    color: var(--brand-accent-gold);
}

/* Authentication Links */
.Header__navbar .Header__menuList a[href*="login"],
.Header__navbar .Header__menuList a[href*="logout"] {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.Header__navbar .Header__menuList a[href*="login"]:hover,
.Header__navbar .Header__menuList a[href*="logout"]:hover {
    background: var(--brand-accent-pink);
    color: white;
    border-color: var(--brand-accent-pink);
}

.Header__clBoth {
    clear: both;
}

/* Hide Hamburger Menu on Desktop */
.Header__menuicon {
    display: none;
}

/* ----------------------------------------------------
   ZOHO DESK SEARCH BANNER (HERO SECTION)
   ---------------------------------------------------- */

.Header__searchSection {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.92), rgba(0, 51, 102, 0.92)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') center/cover;
    padding: 100px 20px 120px;
    text-align: center;
    color: white;
    border-bottom: 5px solid var(--brand-accent-pink);
}

.Header__searchSection .Header__container {
    max-width: 800px;
    margin: 0 auto;
}

.Header__searchSection .Header__searchTitle {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.Header__searchSection .Header__description {
    font-family: var(--font-body);
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Zoho Search Input Override */
.Header__searchSection input[type="text"] {
    width: 100%;
    max-width: 600px;
    padding: 20px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-family: var(--font-body);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    outline: none;
    transition: box-shadow 0.3s;
}

.Header__searchSection input[type="text"]:focus {
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* Search Button Overrides */
.Header__searchSection .searchBtn,
.Header__searchSection button {
    background: linear-gradient(135deg, var(--brand-accent-pink), var(--brand-accent-gold));
    border: none;
    border-radius: 50px;
    color: white;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-left: -60px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.Header__searchSection button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .Header__navbar .Header__container {
        /* Keep logo and hamburger on same row */
        justify-content: space-between;
    }
    
    .Header__menuicon {
        display: block; /* Show hamburger icon */
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .Header__navbar .Header__menuTab {
        display: none; /* Hide by default, Zoho JS toggles this */
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .Header__navbar .Header__menuList {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .Header__searchSection .Header__searchTitle {
        font-size: 2.5rem;
    }
    .Header__searchSection input[type="text"] {
        padding: 15px 20px;
    }
}

/* ----------------------------------------------------
   ZOHO DESK FOOTER CUSTOMIZATION
   ---------------------------------------------------- */
.Footer__footerCopyrigt {
    background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-primary-light) 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    margin-top: 60px;
}

.Footer__container2 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0.9;
}

.Footer__footerLink {
    color: var(--brand-accent-gold) !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.Footer__footerLink:hover {
    color: var(--brand-accent-pink) !important;
}

