/* header.css - Modular Sticky Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 90x;
    background: repeating-linear-gradient(
        90deg,
        #ff6b6b 0%, #ff6b6b 4.76%,
        #ffa500 4.76%, #ffa500 9.52%,
        #ffd93d 9.52%, #ffd93d 14.28%,
        #6bcf7f 14.28%, #6bcf7f 19.04%,
        #4d96ff 19.04%, #4d96ff 23.8%,
        #9b59b6 23.8%, #9b59b6 28.56%,
        #ff6b9d 28.56%, #ff6b9d 33.33%,
        #ff6b6b 33.33%, #ff6b6b 38.09%,
        #ffa500 38.09%, #ffa500 42.85%,
        #ffd93d 42.85%, #ffd93d 47.61%,
        #6bcf7f 47.61%, #6bcf7f 52.37%,
        #4d96ff 52.37%, #4d96ff 57.13%,
        #9b59b6 57.13%, #9b59b6 61.89%,
        #ff6b9d 61.89%, #ff6b9d 66.65%,
        #ff6b6b 66.65%, #ff6b6b 71.41%,
        #ffa500 71.41%, #ffa500 76.17%,
        #ffd93d 76.17%, #ffd93d 80.93%,
        #6bcf7f 80.93%, #6bcf7f 85.69%,
        #4d96ff 85.69%, #4d96ff 90.45%,
        #9b59b6 90.45%, #9b59b6 95.21%,
        #ff6b9d 95.21%, #ff6b9d 100%
    );
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    background: white;
    width: 100%;
    height: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.header-logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    width: 110px;          /* Keep or adjust size */
    height: 80px;
    background: transparent;  /* ← Remove colored background */
    border-radius: 0;     /* ← Remove circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;     /* ← Remove shadow */
    flex-shrink: 0;
    padding: 0;           /* ← Remove padding */
    padding-left: 20px; /* ← Add this line */
}

.header-logo i {
    font-size: 18px;
    color: white;
}

.header-logo img {
    width: 200px;
    height:50px;
    object-fit: contain;
}

.header-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: 1px;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 1px;
    flex-wrap: nowrap;
}

.header-nav-btn {
    background: linear-gradient(135deg, #6bcf7f, #4d96ff);
    color: white;
    padding:6px 12px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.header-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #4d96ff, #6bcf7f);
}

.header-nav-btn i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .header-content {
        padding: 0 30px;
    }
    
    .header-title {
        font-size: 1.8rem;
    }
    
    .header-nav-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: 140px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 20px 30px;
    }
    
    .header-logo-title {
        justify-content: center;
    }
    
    .header-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 150px;
    }
    
    .header-title {
        font-size: 1.6rem;
    }
    
    .header-content {
        padding: 15px 20px;
    }
    
    .header-nav-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}