
/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    background: rgb(22 18 178 / 54%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(22, 18, 178, 0.2);
    box-shadow: 0 2px 10px rgb(168 156 199 / 10%);
}

/* Header Columns */
.header__cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Left Section */
.header__left {
    /* display: flex; */
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo__image {
    max-width: 120px;
    height: auto;
}

/* Center Section */
.header__center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-nav__item {
    position: relative;
}

.main-nav__link {
    text-decoration: none;
    font-size: 16px;
    color: #fff; /* White text color */
    padding: 10px 15px;
    transition: color 0.3s ease, background 0.3s ease;
}

.main-nav__link:hover {
    color: #000;
    /* background: rgba(255, 255, 255, 0.6); */
    border-radius: 5px;
}




/* Right Section */
.header__right {
    display: flex;
    align-items: center;
}

.header-tel {
    text-decoration: none;
    font-size: 16px;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}


/* Mobile Button */
.mob-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.mob-button__icon {
    width: 25px;
    height: 2px;
    background: white;
    position: relative;
}

.mob-button__icon::before,
.mob-button__icon::after {
    content: '';
    width: 25px;
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mob-button__icon::before {
    top: -8px;
}

.mob-button__icon::after {
    top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide navigation on small screens */
    }

    .header__center,
    .header__right {
        justify-content: flex-end;
    }
}
@media (max-width: 900px) {
    .header {
        min-width: 0;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 50;
    }

    .mob-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        position: relative;
        /* border: 2px solid #ff6231; */
        border-radius: 50%;
        background-color: transparent;
        cursor: pointer;
        font-size: 18px; /* Adjust font size for the 'X' */
        line-height: 1;
        color: #fff; /* Color of the 'X' */
    }

    .mob-button:hover {
        background-color: #ff6231;
        color: #fff; /* On hover */
    }
}

