/* index page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}


.cart-nav-link {
    position: relative;
}
.cart-counter {
    position: absolute;
    top: 2px;
    left: 3px;
    background-color: white;
    border-radius: 10px;
    color: blue;
    font-size: 12px;
    font-weight: bold;
    padding: 3px;
}

/* Header Styles */
.navbar {
    padding: 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff !important;
    padding: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.navbar-brand i {
    color: #fbbf24;
    font-size: 1.8rem;
    margin-right: 0.3rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.navbar-nav .nav-link {
    margin: 0 0.3rem;
    color: #fff !important;
    font-weight: 600;
    padding: 1.2rem 1rem !important;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: #fbbf24 !important;
    transform: translateY(-2px);
}

.btn-join {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    margin-left: 0.8rem;
    border: none;
    font-weight: 700;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-join:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
}

.btn-login {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #fbbf24;
    background-color: #fbbf24;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    margin-left: 0.5rem;
    font-weight: 700;
    transition: all 0.4s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-login:hover {
    background: #fbbf24;
    color: #1e3a8a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}

.navbar-toggler {
    border: 2px solid #fbbf24;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(251, 191, 36, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Banner Section */
.banner-section {
    background: linear-gradient(to right, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.banner-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-section h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 650px;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.banner-buttons {
    animation: slideInLeft 1s ease-out 0.4s backwards;
}

.btn-banner {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-banner:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-banner {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3c72;
    position: relative;
}

.btn-primary-banner:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

.btn-outline-banner {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    position: relative;
}

.btn-outline-banner:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fbbf24;
    color: #fbbf24;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.banner-image-wrapper {
    position: relative;
    animation: slideInRight 1s ease-out 0.3s backwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-image {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-icon:nth-child(1) {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: -8%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

.floating-icon i {
    font-size: 2rem;
    color: #fbbf24;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.section-description {
    color: #9ca3af;
    margin-bottom: 3rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: #fff;
}

.nav-tabs {
    border: none;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-tabs .nav-link {
    border: 2px solid #e5e7eb;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    color: #6b7280;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-tabs .nav-link.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.course-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    height: 100%;
}

.course-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.course-card h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.course-card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-learn {
    background: #2563eb;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
}

.btn-learn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    overflow: hidden;
    border: 2px solid transparent;
    position: relative;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.2);
}

.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.15);
}

.feature-icon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-content {
    padding: 2rem;
}

.feature-card h5 {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    color: #3b82f6;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: #fff;
}

.student-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 100%;
}

.student-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-div-index {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.testimonial-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author-index {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.author-img-container {
    height: 50px;
    width: 50px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.author-info h6 {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
}

.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.results-section .section-title {
    color: #fff;
}

.topper-card {
    background: #fff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.topper-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.topper-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 5px solid #2563eb;
}

.topper-card h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.topper-board {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.topper-percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f9fafb;
}

.cta-content {
    display: flex;
    align-items: center;
}

.cta-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Faculty Section */
.faculty-section {
    padding: 80px 0;
    background: #fff;
}

.faculty-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.faculty-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.faculty-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.faculty-info {
    padding: 1.5rem;
    text-align: center;
}

.faculty-info h5 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.faculty-subject {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    margin: 0 0.25rem;
    transition: all 0.3s;
    text-align: center;
}

.social-links a:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: #1f2937;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-section h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .banner-section h1 {
        font-size: 2rem;
    }

    .banner-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .student-group {
        grid-template-columns: 1fr;
    }
}


















/* <!-- ICSE Toppers Batch 2026 --> */

/* ============================================================
   ICSE Toppers Batch 2026 – Section Styles
   ============================================================ */

.icse-toppers-section {
    position: relative;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2a4a 40%, #0f2744 100%);
    overflow: hidden;
    padding: 80px 0 90px;
}

/* Decorative background blobs */
.icse-toppers-bg-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
}

.icse-deco-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #f5c518 0%, #e0a800 100%);
    top: -150px;
    left: -160px;
}

.icse-deco-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6c63ff 0%, #3b3d9e 100%);
    bottom: -120px;
    right: -100px;
}

/* Section header tag */
.icse-toppers-tag {
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.18), rgba(245, 197, 24, 0.08)) !important;
    color: #f5c518 !important;
    border: 1px solid rgba(245, 197, 24, 0.35);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
}

.icse-toppers-heading {
    color: #fff !important;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.icse-toppers-heading span {
    background: linear-gradient(135deg, #f5c518, #ffdd57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icse-toppers-subtitle {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ---- Grid layout: exactly 5 per row on lg+ ---- */
.icse-students-grid {
    --bs-gutter-x: 1rem;
}

/* Force exactly 5 columns on ≥992 px using flex math */
@media (min-width: 992px) {
    .icse-student-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* 2 columns on xs/sm (col-6 handles this via Bootstrap) */
/* 3 columns on md (col-md-4 handles this via Bootstrap) */

/* ---- Individual student card ---- */
.icse-student-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    border: 1px solid rgba(245, 197, 24, 0.18);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.icse-student-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 50px rgba(245, 197, 24, 0.22), 0 6px 20px rgba(0, 0, 0, 0.45);
    border-color: rgba(245, 197, 24, 0.55);
}

/* Image wrapper – maintains a portrait aspect ratio */
.icse-student-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #12233d;
}

.icse-student-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s ease;
}

.icse-student-card:hover .icse-student-img {
    transform: scale(1.08);
}

/* Hover overlay shimmer */
.icse-student-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(245, 197, 24, 0.55) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    opacity: 0;
    transition: opacity 0.35s ease;
    font-size: 1.6rem;
    color: #fff;
}

.icse-student-card:hover .icse-student-overlay {
    opacity: 1;
}

/* Label at the bottom of each card */
.icse-student-label {
    background: linear-gradient(90deg, #1b2a4a, #0d1b2a);
    color: #f5c518;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 8px 6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
    .icse-toppers-heading {
        font-size: 1.7rem;
    }

    .icse-student-label {
        font-size: 0.7rem;
        padding: 6px 4px;
    }
}

@media (max-width: 767.98px) {
    .icse-toppers-section {
        padding: 60px 0 70px;
    }
}






























/* online exam landing page */

:root {
    --primary-color: #18aff5;
    --success-color: #09cf23;
    --light-bg: #F8F9FB;
    --dark-text: #1a1a2e;
    --gray-text: #6c757d;
}

/* Navbar */
/* .navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
} */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #18aff5 0%, #0d8ec9 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    margin: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    color: white;
    border: 1px solid #ccc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary-watch-demo-video {
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    margin: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-watch-demo-video:hover {
    color: black;
    border: 1px solid #ccc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-custom {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    margin: 0.5rem;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.feature-card-online-xm {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--light-bg);
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    height: 100%;
    text-align: center;
}

.feature-card-online-xm:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(24, 175, 245, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0d8ec9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card-online-xm h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.feature-card-online-xm p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0d8ec9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.timeline-item p {
    color: var(--gray-text);
    margin: 0;
}

/* Student Experience Section */
.student-section {
    padding: 80px 0;
    background: white;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--dark-text);
    position: relative;
    padding-left: 2.5rem;
}

.experience-list li i {
    position: absolute;
    left: 0;
    top: 1.2rem;
    color: var(--success-color);
    font-size: 1.3rem;
}

.experience-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.experience-image img {
    width: 100%;
    height: auto;
}

/* Admin Tools Section */
.admin-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.admin-section .section-title,
.admin-section .section-subtitle {
    color: white;
}

.admin-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.admin-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.admin-feature i {
    font-size: 2rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.admin-feature h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonial-card-online-xm {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 1rem;
    height: 100%;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.2rem;
}

.testimonial-role {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    color: white;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Buttons */
.btn-success-custom {
    background: var(--success-color);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-success-custom:hover {
    background: #08b01f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 207, 35, 0.3);
}

/* Call to Action Section */
.cta-section-online-xm {
    padding: 100px 0;
    background: linear-gradient(135deg, #18aff5 0%, #0d8ec9 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-online-xm::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section-online-xm::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content-online-xm {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-section-online-xm h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section-online-xm p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 3px solid white;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.cta-features-online-xm {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.1rem;
}

.cta-feature-item i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--success-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline-item:hover {
        transform: translateX(0);
    }
}
































/* course list page */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}


.top-bar {
    background: var(--primary-gradient);
    color: white;
    padding: 2.5rem 0 5.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.filter-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.filter-label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-select,
.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-select:focus,
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.btn-filter {
    background: var(--primary-gradient);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-clear {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    color: #4a5568;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
    transform: translateY(-2px);
}

.course-box {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.course-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.course-box:hover::before {
    transform: scaleX(1);
}

.course-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
    border-color: #667eea;
}

.batch-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.batch-description {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.batch-publish-time {
    display: inline-flex;
    align-items: center;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
}

.pricing-section {
    background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.pricing-option {
    position: relative;
}

.pricing-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-card {
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.pricing-option input[type="radio"]:checked+.pricing-card {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.pricing-option input[type="radio"]:checked+.pricing-card .plan-name {
    color: #667eea;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    /* margin-bottom: 0.75rem; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-wrapper {
    margin-bottom: 0.5rem;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}

.regular-price {
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 1rem;
}

.sale-price {
    color: #48bb78;
    font-size: 1.75rem;
    font-weight: 800;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.duration-text {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.5rem;
}

.selected-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.pricing-option input[type="radio"]:checked~.selected-badge {
    opacity: 1;
    transform: scale(1);
}

.btn-purchase {
    background: var(--success-gradient);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 172, 254, 0.5);
    color: white;
}

.btn-purchase:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-purchase:disabled:hover {
    transform: none;
}

.courses-header {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.course-count {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .filter-section {
        padding: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
























/* Contact Page */

:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #818cf8;
}

.contact-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.image-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.image-placeholder p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

.form-section {
    padding: 60px 50px;
}

.section-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    color: white;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-submit:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-info {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 12px;
    width: 30px;
}

.contact-info-item span {
    color: #4b5563;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .image-section {
        min-height: 400px;
    }

    .form-section {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    body {
        padding: 20px 0;
    }

    .form-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

.success-message {
    display: none;
    background: #d1fae5;
    border: 2px solid #34d399;
    color: #065f46;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


























/* Cart Page */

:root {
    --primary-gradient: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    --success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.course-header {
    background: var(--primary-gradient);
    border-radius: 1rem 1rem 0 0;
    padding: 25px 30px 10px 30px;
    color: white;
}

.course-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin: 0.25rem;
}

.btn-remove {
    background: transparent;
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-remove:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fecaca;
}

.pricing-table {
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    padding: 1rem;
    font-size: 0.875rem;
    color: #495057;
}

.pricing-table thead th:first-child {
    border-radius: 0.5rem 0 0 0;
}

.pricing-table thead th:last-child {
    border-radius: 0 0.5rem 0 0;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s;
}

.pricing-table tbody tr:hover {
    background-color: #e7f1ff;
}

.pricing-table tbody tr.selected {
    background-color: #e7f1ff;
    box-shadow: inset 0 0 0 2px #0d6efd;
}

.pricing-table td {
    padding: 1rem;
}

.discount-badge {
    background: var(--success-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.plan-summary {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    border-radius: 1rem;
    padding: 1.5rem;
}

.payment-option {
    border: 2px solid #dee2e6;
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.75rem;

    width: 300px;
}

.payment-option:hover {
    border-color: #adb5bd;
    background-color: #f8f9ff;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked+.payment-content {
    color: #0d6efd;
}

.payment-option input[type="radio"]:checked~.payment-content .payment-icon {
    background-color: #cfe2ff !important;
}

.payment-option input[type="radio"]:checked~.payment-content .payment-icon i {
    color: #0d6efd !important;
}

.payment-option.selected {
    border-color: #0d6efd;
    background-color: #eff6ff;
}

.payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.check-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #adb5bd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-option.selected .check-circle {
    border-color: #0d6efd;
    background-color: #0d6efd;
}

.check-circle i {
    display: none;
    color: white;
    font-size: 0.75rem;
}

.payment-option.selected .check-circle i {
    display: block;
}

.btn-checkout {
    background: var(--primary-gradient);
    border: none;
    padding: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-checkout:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.trust-badge {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.trust-badge i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.order-summary {
    position: sticky;
    top: 1.5rem;
    border: 1px solid #eeeeee;
}

.empty-cart-icon {
    width: 96px;
    height: 96px;
    color: #dee2e6;
}

.text-line-through {
    text-decoration: line-through;
}

.hdr-divider {
    height: 2px;
    width: 150px;
    background-color: #29cbfc;
    margin-top: -10px;
}