@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --purple: #8238ed;
    --purple2: #372a55;
    --purple3: #493084;
    --yellow: #eca108;
    --white: #ffffff;
    --black: #000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Fira Sans", sans-serif; */
    font-family: "Onest", sans-serif;
    /* font-family: "Roboto", sans-serif; */
    scroll-behavior: smooth;
}
#top{
    display: inline-block;
    background-color: var(--purple);
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2.4em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--yellow);
  }
  #top:active {
    background-color: var(--yellow);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }
  .award img{
    width: 50px;
  }
  .logo img{
    width: 200px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(3108%) hue-rotate(259deg) brightness(97%) contrast(90%);
  }
  .navbar .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.3s ease;
    display: block !important;
    pointer-events: none;
    background-color: var(--purple);
  }
  .dropdown-menu li a{
    padding: 12px 20px;
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid #9c9c9c;
    transition: .3s ease-in-out;
  }
  .dropdown-menu li:last-child a{
    border: none;
  }
  .dropdown-item:hover{
    background-color: var(--yellow);
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* For mobile (click-based), Bootstrap adds .show */
  .navbar .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }
  .navbar{
    width: 95%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0px 30px;
  }
  .nav-item{
    margin: 0 15px;
  }
  .nav-item .active{
    color: var(--purple) !important;
  }
  .nav-link{
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
  }
  .nav-link:hover{
    color: var(--yellow);
  }
  .nav-link:hover .dropdown-toggle{
    transform: rotate(90deg) !important;
  }
  .contact a{
    text-decoration: none;
    color: #fff;
    background-color: var(--purple);
    padding: 12px 25px;
    transition: .3s ease-in-out;
  }
  .contact a:hover{
    background-color: var(--yellow);
  }
#banner .ban-wrap{
    position: relative;
}
#banner .ban-text{
    width: 480px;
    position: absolute;
    top: 50%;
    left: 300px;
    padding: 45px;
    margin-top: 40px;
    transform: translateY(-50%);
    color: #fff;
    background-color: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
}
.form-control{
    border-radius: 0;
    padding: 10px;
    background-color: rgba(255,255,255,0.9);
}
.form-control::placeholder{
    color: #585858;
}
.form-control:focus{
    border-color: var(--purple);
    box-shadow: 0 0 0 2px var(--purple) !important;
}

  .form-container h4 {
    font-weight: bold;
    margin-bottom: 20px;
  }

  .btn-custom {
    background-color: var(--purple);
    color: white;
    border: none;
    padding: 6px 20px;
    font-size: 17px;
    border-radius: 0;
    transition: .3s ease-in-out;
  }

  .btn-custom:hover {
    background-color: var(--yellow);
    color: var(--black);
  }
#banner .ban-text h1{
    font-size: 50px;
    font-family: "Gotu", sans-serif;
}
#banner .ban-text h5{
    margin-top: 20px;
    color: #efefef;
    font-weight: 300;
    font-size: 18px;
    font-family: "Lato", sans-serif;
}
#banner .b-btn a{
    color: #fff;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: .3s ease-in-out;
}
#banner .b-btn a:hover{
    background-color: var(--blue);
    border-color: var(--blue);
}
.carousel-indicators{
    display: flex;
    align-items: center;
}

/* about */
.neo-section {
    background-color: white;
    border-radius: 24px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.03),
               -8px -8px 16px rgba(255,255,255,0.8);
    overflow: hidden;
}

.hero-about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(130,56,237,0.1) 0%, rgba(0,0,0,0) 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.sub-heading{
    color: var(--yellow);
}
.hero-content p{
    font-size: 18px;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: rgba(15,23,42,0.05);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}

.award-badge:hover {
    background-color: var(--yellow);
}

.award-badge:hover i{
    color: var(--purple);
}

.award-badge i {
    transition: .3s ease-in-out;
    margin-right: 8px;
    color: var(--yellow);
}

.btn-modern {
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: var(--white);
    background-color: var(--purple);
    border: 2px solid var(--accent);
}
.btn-modern:hover{
    background-color: var(--yellow);
}
/* about */

/* who */
#who{
    background-image: url(./img/who-bg.png);
    background-size: cover;
}
.modern-card {
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background: white;
}

.modern-card:hover {
    transform: translateY(-10px);
}

#who .card-header {
    background: linear-gradient(var(--purple), var(--purple));
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.card-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}
.card-title .high-text{
    color: var(--yellow);
}

.eligibility-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.eligibility-item h5{
    color: var(--purple);
    font-size: 20px;
}

.eligibility-item:last-child {
    border-bottom: none;
}

.item-icon {
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--yellow);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.note-container {
    background-color: rgba(193, 197, 71, 0.1);
    border-left: 4px solid var(--yellow);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem;
    margin-top: 1.5rem;
}
.note-container p{
   font-size: 15px;
}

.note-title {
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.note-title i {
    margin-right: 8px;
}
/* who */

/* why */

#why{
    background-color: #f5f1f4;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-weight: 700;
    color: var(--purple);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--yellow);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #585858;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.benefit-card {
    background: white;
    padding: 20px 30px;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--yellow);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 25px;
    color: var(--purple);
}
.model img{
    transition: .7s ease-in-out;
}
.model img:hover{
    transform: scale(1.18);
}
.benefit-card p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
}

.highlight-card {
    background: linear-gradient(135deg, var(--purple2), var(--purple));
    color: white;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.highlight-card h3 {
    font-size: 25px;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-card p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-button {
    background-color: white;
    color: var(--yellow);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--yellow);
    color: white;
    transform: translateY(-2px);
}

/* why */

/* Assessment Process */

.asses-wrap{
    margin: 8px;
    padding: 20px;
    border-left: 8px solid var(--yellow);
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: .4s ease-in-out;
}
.asses-wrap:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.asses-no{
    
    margin-right: 20px;
    background-image: linear-gradient(130deg, var(--purple2), var(--purple));
    border-radius: 50%;
}
.asses-no h2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
}
.asses-text h3{
    color: var(--purple);
    font-weight: 700;
    font-size: 22px;
}
.asses-text p{
    margin-bottom: 0;
    font-size: 16px;
}
/* Assessment Process */

/* date */
#date{
    background: url(./img/bg.jpg);
    background-size: cover;
    background-position: center;
}
.timeline-item{
    border-top: 8px solid var(--yellow);
    padding: 30px;
    background-color: rgb(255, 254, 240);
    height: 100%;
}
.timeline-date{
    color: var(--purple);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}
.timeline-item h3{
    font-weight: 600;
    font-size: 22px;
}
.timeline-location{
    color: var(--yellow);
    margin-bottom: 10px;
}
#date .section-header h2::after{
    background-color: var(--white);
}
#date .section-header h2{
    color: var(--yellow);
}
#date .section-header p{
    color: var(--white);
}
/* date */

/* fess */

.fee-header {
    background: linear-gradient(90deg, #6a00ff, #9b47ff);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
  }
  .fee-card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
  }
  .fee-card:hover {
    transform: translateY(-5px);
  }
  .fee-card-header {
    background-color: #f2f0fa !important;
    font-weight: 600 !important;
    padding: 10px;
  }
  .fee-prices {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  .price-label {
    font-size: 0.9rem;
    font-weight: 500;
  }
  .price-amount {
    font-weight: bold;
  }
  .note {
    font-size: 0.9rem;
    margin-top: 20px;
  }
  .note-icon {
    color: var(--yellow);
  }

/* fees */

/* footer */

#footer{
    background-color: var(--purple2);
}
.footer {
    color: #ecf0f1;
}

.footer-heading {
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    margin-bottom: 40px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: var(--white);
}

.contact-info a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--yellow);
}

.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition:0.3s ease-in-out;
}
.quick-links a i{
    color: var(--yellow);
    padding-right: 10px;
}

.quick-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.about-text {
    color: #bdc3c7;
    line-height: 1.6;
}

.social-icons a {
    color: #bdc3c7;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--yellow);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 2rem;
}

.contact-icon {
    margin-right: 10px;
    color: #3498db;
}

/* footer */
#header .logo img{
    width: 70px;
    /* filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(1%) hue-rotate(330deg) brightness(94%) contrast(100%); */
}
.logo-white{
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(1%) hue-rotate(330deg) brightness(94%) contrast(100%);
} 
.menu-color ul li a{
    color: var(--black) !important;
}
.menu-color ul li a:hover{
    color: var(--green) !important;
}
#header{
    position: fixed;
    /* background-color: rgba(0, 0, 0, 0.4); */
    /* background-color: rgba(255, 255, 255, 0.6); */
    z-index: 99999999;
    transition: .4s ease-in-out;
}
.header-shadow{
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3);
}
#header .sign a{
    /* background-color: var(--green); */
    background-color: #6d02c0;
    padding: 10px 30px;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: .3s ease-in-out;
}
#header .sign a:hover{
    background-color: var(--black);
}
.pos-fixed{
    background-color: var(--white) !important;
}


.sub-heading{
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 2px;
    font-size: 19px;
}
.heading{
    font-size: 40px;
    font-weight: 700;
    color: var(--purple);
}
.slick-dots li button:before {
    display: none;
}

/* Reset button styles */
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 12px;
    height: 12px;
    background: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Active dot style */
.slick-dots li.slick-active button {
    background: var(--blue); /* Your accent color */
    width: 16px;
    height: 16px;
}
.slick-dots {
    text-align: center;
    bottom: -100px;
}
#banner .slick-dots li button {
    background: #fff;
}
#banner .slick-dots li.slick-active button {
    background: var(--blue);
}
#banner .slick-dots {
    bottom: 20px;
}
#banner .slick-dots li {
    display: inline-block;
    margin: 10px 3px;
}
.slick-dots li {
    display: inline-block;
    margin: 10px 6px;
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links li {
        margin-left: 0.8rem;
    }
}

@media (max-width: 1350px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 90%;
        height: auto;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        left: 5%;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .nav-links a {
        justify-content: center;
        padding: 1rem;
        border-radius: 0;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0;
        border: none;
        animation: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .menu-toggle {
        display: block;
    }
}