.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    padding: 15px 100px;
    background-color: #ffffff;
    backdrop-filter: blur(3px);
    box-shadow: 0px 8px 20px -10px rgba(255, 255, 255, 0.3);
    opacity: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo-section .logo {
    width: 105px;
    /* height: 45px; */
    object-fit: cover;
}

.navbar .logo-section .brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.navbar .nav-links li a {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: 0.2s ease;
}

.navbar .nav-links li a.active {
    color: var(--primary-color);
    position: relative;
    opacity: 1;
}

.navbar .nav-links li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.contact-nav {
    display: flex;
    align-items: center;
    position: relative;
}

.contact-dtls {
    border: 2px solid var(--primary-color);
}

.phone-call-icon-nav {
    width: 28px;
    height: 28px;
    padding: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);

    position: absolute;
    left: -35px;
    z-index: 1;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    left: 0;
    transition: 0.3s;
}
.navbar .nav-links li a:hover {
    opacity: 0.5;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 9px;
}
.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

@media (max-width: 1200px) {
    .nav-links li a {
        font-size: 0.85rem;
    }
}
@media (max-width: 992px) {
    .navbar {
        padding: 10px 25px;
    }

    .nav-links li a {
        font-size: 0.65rem;
    }

    .contact-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 25px;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        background-color: #ffffff;
        backdrop-filter: blur(3px);
        position: absolute;
        top: 54px;
        right: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease, opacity 0.3s ease;
    }

    .nav-links.show {
        height: 280px;
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: block;
    }

    .nav-links li a {
        font-size: 1rem;
    }
}
