.Header__navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Main header container (default layout) */
.Header__container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.Header__logo img {
    height: 45px;
    object-fit: contain;
}

/* Desktop menu */
.desktopMenu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.Header__menuList {
    display: flex;
    gap: 20px;
    list-style: none;
}

.Header__tabsTab {
    cursor: pointer;
    font-size: 16px;
    color: white;
    transition: color 0.2s ease;
}

.Header__tabsTab:hover {
    color: #2563eb;
}

/* Button: Create Ticket */
.createTicket {
    background: white;
    padding: 8px 18px;
    border-radius: 6px;
    color: #014710;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.createTicket:hover {
    background: #014710 ;
  color:white
}

/* Button Group */
.Header__buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

/* Button: Visit Website */
.VisitWebsiteBtn {
    background: white;
    padding: 8px 18px;
    border-radius: 6px;
    color: #014710 ;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.VisitWebsiteBtn:hover {
    background: #014710;
    color:white
}

/* Mobile Menu Icon */
.mobileMenuIcon {
    font-size: 26px;
    cursor: pointer;
    display: none;
    color: white;
}

/* Mobile Menu */
.mobileMenu {
    display: none;
    background: white;
    padding: 15px 20px;
    border-top: 1px solid #e5e7eb;
}

.mobileMenu ul {
    list-style: none;
    padding: 0;
}

.mobileMenu ul li {
    padding: 10px 0;
    font-size: 17px;
    border-bottom: 1px solid #f1f1f1;
}

.mobileBtn {
    display: block;
    margin-top: 10px;
}

/* RESPONSIVE NAV */
@media (max-width: 900px) {
    .desktopMenu {
        display: none;
    }
    .mobileMenuIcon {
        display: block;
    }
}

/* -------------------------------------------------- */
/*            ENHANCED HEADER SEARCH SECTION          */
/* -------------------------------------------------- */

.header_search_section {
    display: flex;
    flex-direction: column;
}

/* Beautiful Creative Header Section */
.enhancedHeader {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #014710 0%, #036b26 100%);
    border-radius: 18px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    color: white;
    gap: 18px;
    flex-direction: column !important;
}

.Header__searchTitle {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 5px;
}

.Header__description {
    font-size: 17px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.Header__subDescription {
    font-size: 15px;
    max-width: 750px;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0 auto;
}

.Header__searchWrapper {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Fade-in animation */
.enhancedHeader {
    animation: fadeInHeader 0.8s ease forwards;
}

@keyframes fadeInHeader {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Responsive Header Text */
@media (max-width: 768px) {
    .Header__searchTitle {
        font-size: 28px;
    }
    .Header__description,
    .Header__subDescription {
        font-size: 15px;
    }
}

/* -------------------------------------------------- */
/*                        FOOTER                      */
/* -------------------------------------------------- */

.footer {
    background: #014710;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-text {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.7;
}

/* List */
.footer-list {
    margin-top: 15px;
    padding: 0;
    list-style: none;
}

.footer-list-item {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.85;
}

/* Headings */
.footer-heading {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 8px;
}

/* Links */
.footer-link {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: white;
    opacity: 0.85;
    text-decoration: none;
}

.footer-link:hover {
    color: #facc15;
    opacity: 1;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social {
    width: 35px;
    height: 35px;
    background: #014710;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid white;
    font-size: 14px;
}

.footer-social:hover {
    background: #facc15;
    color: #0b1a2a;
}

/* Buttons */
.footer-btn {
    display: block;
    text-align: center;
    background: #0F4D0F;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #facc15;
    color: #0b1a2a;
}

/* Bottom Bar */
.footer-bottom {
    background: #0F4D0F;
    text-align: center;
    padding: 15px;
    opacity: 0.75;
    font-size: 14px;
}

