
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f3f4f6;
}

.navbar {
    background-color: #1a1a4a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 600;
    font-size: 26px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links > div {
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #4CAF50;
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.exams-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: dropdown-slide 0.3s ease;
    transform-origin: top center;
    z-index: 1000;

}
@keyframes dropdown-slide {
    from {
        opacity: 0;
        transform: scaleY(0.8);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}
.nav-links .exams-link:hover .exams-dropdown {
    display: block;
}
.exams-dropdown a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}
.exams-dropdown a:hover {
    background-color: #f0f0f0;
    color: #1a1a4a;
}
.exams-dropdown a::after {
    display: none;
}

#video1 {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 130px;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-clip: text;
    background-position: -750px 0;
    animation: backcolor 5s linear infinite alternate;
}

@keyframes backcolor {
    100% {
        background-position: 750px 0;
    }
}


main {
    margin-top: 80px; 
    padding: 30px 20px;
}

.test-series-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #6a11cb, #2575fc);
    color: #fff;
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.test-series-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 20px;
    color: #2575fc;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: #6a11cb;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #2575fc;
}

.test-series-info {
    text-align: center;
    padding: 50px 20px;
    color: #333;
}

.test-series-info p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
}

.testimonials {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a4a;
}

.testimonial-item {
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

.testimonial-item cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #1a1a4a;
}
 
footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: white;
    font-size: 14px;
}