:root {
    --primary: #530ac7;
    --secondary: #7D0A0A;
    --third: #EAD196;
    --bg: #f7f7f7;
    --text: #222831;
    --text-secondary: #393E46;
    --white: #EEEEEE;
   --font-size-h1: 48px;
 --font-size-p: 14px;
  --font-size-button: 14px;
--font-size-h3: 18px;
--font-size-review: 18px;
--font-size-review-sub: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 80px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-contents {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    z-index: 1001;
}

.logo img {
    width: 180px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    z-index: 1002;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: var(--font-p);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, #530ac7 0%, var(--white) 100%);
    transition: width 0.1s ease;
    transform-origin: left;
}

.nav-links a:hover::after {
    width: 100%;
    animation: shootingStar 0.2s ease forwards;
}

.nav-links a:hover {
    /* color: var(--primary); */
    /* transform: translateY(-1px); */
}

@keyframes shootingStar {
    0% {
        width: 0;
        opacity: 0.8;
        /* box-shadow: 0 0 5px rgba(191, 49, 49, 0.5); */
    }
    50% {
        width: 50%;
        opacity: 1;
        /* box-shadow: 0 0 10px rgba(191, 49, 49, 0.8); */
    }
    100% {
        width: 100%;
        opacity: 0.8;
        /* box-shadow: 0 0 5px rgba(191, 49, 49, 0.5); */
    }
}

.right-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.apply-now {
    padding: 6px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #340580, #7537e7);
    /* border: 1px solid #fff; */
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: 0.3s ease;
}

.apply-now i{
    color: #fff;
    font-size: 16px;
    margin-right: 6px;
}

.apply-now:hover {
    box-shadow: inset 0px 0px 15px #000000;
    transform: scale(0.9);
    color: var(--white);
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 180px;
    border-radius: 6px;
    top: 100%;
    left: 0;
    z-index: 1003;
    padding: 0px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    padding: 10px 0px;
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: var(--white);
    text-decoration: none;
    font-size: var(--font-btn);
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a i{
margin-right: 8px;
}

.dropdown-content a:hover{
   background-color: #fff;
   color: #000;
}



.calendar-container {
    position: relative;
}

.calendar-icon {
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.calendar-icon:hover {
    color: #9a5cfd;
    transform: scale(1.2);
}

.calendar-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
      background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 140px;
    border-radius: 6px;
    z-index: 1003;
    padding: 10px 0;
}

.calendar-container:hover .calendar-dropdown {
    display: block;
}

.calendar-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--white);
    text-decoration: none;
    font-size: var(--font-btn);
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.calendar-dropdown a:hover::after {
    width: 100%;
    animation: shootingStar 0.6s ease forwards;
}

.calendar-dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
}

.hamburger{
    display: none;
    cursor: pointer;
}
.hamburger i{
   font-size: 24px;
   padding: 2px;
   border-radius: 4px;
   background-color: #fff;
   color: #530ac7;
}
.hamburger i:hover{
   background-color: #530ac7;
   color: #fff;
}


@media (max-width: 1024px) {
    .navbar {
        padding: 18px 15px;
        z-index: 1000;
    }

    .hamburger {
        display: block;
        z-index: 1004;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -60%;
        height: 100vh;
        width: 60%;
        background-color: rgba(0, 0, 0, 0.9);

         backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        z-index: 1002;
    }
.nav-links a {
    color: var(--white);
  
}

.dropdown{
    background: transparent;
}

.dropdown-content a{
    color: var(--white);
}
    .nav-links.active {
        left: 0;
        z-index: 1002;
    }

    .nav-links a {
        font-size: 18px;
        padding: 12px 0;
        font-weight: 500;
    }


    .dropdown-content {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding-left: 20px;
        border-radius: 0;
        z-index: 1003;
    }

    .calendar-container {
        position: static;
    }

    .right-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .logo img {
        width: 150px;
        height: auto;
    }

    .calendar-icon {
        font-size: 20px;
    }
}

@media (max-width: 520px) {
    .apply-now {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 30px;
    }

    .logo img {
        width: 140px;
        height: auto;
    }

    .nav-links a {
        font-size: 18px;
    }

    .nav-links .apply-now {
        padding: 8px 15px;
        font-size: 14px;
    }

    .calendar-icon {
        font-size: 18px;
    }

    .calendar-dropdown {
        top: 60px;
    }
}










