.bg-dark { background: #000000 !important; }
.bg-dark-accent { background: rgba(255, 255, 255, 0.08) !important; border: 1px solid rgba(255, 255, 255, 0.15) !important; }

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    background: url('images/college-background') no-repeat center center/cover;
    margin-top: 0;
    overflow: hidden;
}

.testimonial-hero {
    background: url('https://citls.lafayette.edu/wp-content/uploads/sites/205/2020/01/CITLS-10.jpg') no-repeat center center/cover;
}

.about-hero {
    background: url('https://theoxfordmagazine.com/wp-content/uploads/new-college-oxford-01-1920x1080-1.jpg') no-repeat center center/cover;
}

.contact-hero {
    background: url('https://images.fineartamerica.com/images/artworkimages/mediumlarge/1/modern-college-campus-buildings-alexandr-grichenko.jpg') no-repeat center center/cover;
}

.pricing-hero {
    background: url('https://i.pinimg.com/originals/e2/15/21/e21521edace7fe79dae4858a1ccde9ca.png') no-repeat center center/cover;
}

.help-hero {
    background: url('https://images.unsplash.com/photo-1454165833762-0100d2846997?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.policy-hero {
    background: url('https://images.unsplash.com/photo-1507925921958-8a62f3d1a50d?q=80&w=2076&auto=format&fit=crop') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(1, 15, 30, 0.72), rgba(1, 15, 30, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

.hero-kicker {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fca311;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}

.hero-content h1 {
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 850;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    text-wrap: balance;
    background: linear-gradient(to bottom, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(18px, 1.5vw, 24px);
    color: rgba(241, 245, 249, 0.95);
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #ffb703;
    color: #000000;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 750;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(252, 163, 17, 0.3);
}

.btn-hero-primary:hover {
    background: #ffb703;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(252, 163, 17, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08); /* Sophisticated glassmorphism */
    color: #fff;
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 750;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Navbar Enhancements */
.nav-partnership-btn {
    background: #111;
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.nav-partnership-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.nav-login-custom {
    color: #fca311 !important;
    font-weight: 900 !important;
}
.nav-register-custom {
    color: #00b4d8 !important;
    font-weight: 900 !important;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

       .dashboard-counts {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin: -80px auto 100px;
            padding: 0 20px;
            max-width: 1260px;
            position: relative;
            z-index: 10;
            flex-wrap: wrap;
        }

        .count-box {
            background-color: #ffffff;
            border-radius: 24px;
            padding: 35px 45px;
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
            text-align: left;
            border: 1px solid rgba(226, 232, 240, 0.9);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.25);
            display: flex;
            align-items: center;
            gap: 28px;
            flex: 1;
            min-width: 320px;
            max-width: 480px;
        }

        .count-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(15, 23, 42, 0.16);
            border-color: rgba(252, 163, 17, 0.5);
        }

        .count-icon {
            width: 76px;
            height: 76px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.8);
        }

        .school-icon {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.08) 100%);
            color: #131b2c;
            border: 1px solid rgba(37, 99, 235, 0.1);
        }

        .view-icon {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
            color: #c0b309;
            border: 1px solid rgba(16, 185, 129, 0.1);
        }

        .count-box:hover .count-icon {
            transform: rotate(5deg) scale(1.15);
        }

        .count-details h3 {
            font-size: 13px;
            margin-bottom: 8px;
            color: #64748b;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .count-details p {
            font-size: 40px;
            font-weight: 900;
            color: #0f172a;
            line-height: 1;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .page-view-counter-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 18px 15px 12px;
        }

        .page-view-counter-box {
            display: flex;
            align-items: center;
            gap: 14px;
            width: min(430px, 100%);
            background: linear-gradient(125deg, #0b132b, #1e3a8a 62%, #2563eb);
            border-radius: 16px;
            padding: 14px 18px;
            border: 1px solid rgba(255, 255, 255, 0.24);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.26);
            position: relative;
            overflow: hidden;
        }

        .page-view-counter-box::after {
            content: "";
            position: absolute;
            width: 110px;
            height: 110px;
            right: -36px;
            top: -36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.16);
            pointer-events: none;
        }

        .page-view-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.22);
            position: relative;
            z-index: 1;
        }

        .page-view-counter-box h3 {
            margin: 0;
            font-size: 14px;
            color: rgba(241, 245, 249, 0.9);
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        .page-view-counter-box p {
            margin: 4px 0 0;
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            position: relative;
            z-index: 1;
        }
		 .super-font {
            font-family: 'Roboto', sans-serif;
            font-size: 50px; /* You can adjust the size as per your design */
            font-weight: 900;
            color: #FFF; /* Choose your desired color */
            text-transform: uppercase; /* Makes all letters uppercase */
            letter-spacing: 4px; /* Spacing between letters */
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Add shadow effect */
            background: linear-gradient(45deg, #ff6f61, #220025); /* Gradient background */
            -webkit-background-clip: text;
            background-clip: text;
        }
        /* Global Styles for Small Screens */
@media (max-width: 768px) {
	.whychoose
	{
		font-size:22px !important;
	}
	header
	{
		position:absolute;
	}
	.navbar .links {
		position:absolute;
	}
	.navbar .logo img {
		display:block;
		width:50px !important;
	}
	.super-font
	{
		display:none;
	}
    .hero-section {
        padding: 140px 18px 100px;
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        padding: 16px 24px;
    }

    .dashboard-counts {
        margin: -40px auto 60px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 0 18px;
    }

    .count-box {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 25px 30px;
        gap: 20px;
    }

    .count-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .count-details p {
        font-size: 32px;
    }

    .page-view-counter-box {
        width: 90%;
        justify-content: center;
        padding: 12px 14px;
        gap: 10px;
    }

    .page-view-counter-box p {
        font-size: 24px;
    }

    .super-font {
        font-size: 30px; /* Reduce font size for smaller screens */
    }

    /* Adjust Features Section Layout */
    .features-container {
        flex-direction: column;
    }

    .count-box h3 {
        font-size: 18px;
    }

    /* Adjust Testimonial Cards */
    .testimonial-container {
        flex-direction: column;
    }

    .testimonial-box {
        width: 90%;
        margin: 20px auto;
    }

    /* Adjust Form Popup */
    .form-popup .form-box {
        width: 90%;
    }

    /* Adjust Navbar */
    .navbar .links {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .navbar .hamburger-btn {
        display: block;
        margin-bottom: 10px;
    }

    .navbar .logo img {
        width: 70px;
    }

    .navbar .logo .super-font {
        font-size: 22px;
    }
}

@media (max-width: 520px) {
    .dashboard-counts {
        grid-template-columns: 1fr;
    }
}
		section {
    width: 100%;
    padding: 40px 0; /* You can control top-bottom spacing here */
}
		.whychoose
		{
			font-weight: 900; font-size: 36px; margin-bottom: 50px; color: #333; text-transform: uppercase; letter-spacing: 2px;
		}
		.timetable-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.timetable-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.timetable-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}
.timetable-section h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 15px;
}
.timetable-section ul {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  padding-left: 20px;
}
/* ===== Navbar Icons + Scroll Effect ===== */
.navbar {
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
    z-index: 1000;
    max-width: 100%;
    margin: 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.72);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.navbar .links li {
    display: inline-block;
    margin-left: 20px;
}

.navbar .links li a {
    color: #ffffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    text-decoration: none;
}

.navbar .links li a:hover {
    color: #ff6f61;
}

/* Navbar icons style */
.material-symbols-rounded {
    vertical-align: middle;
    font-size: 20px;
}

/* ===== Nav Auth Button (LOG IN / REGISTER) ===== */
.nav-auth-item {
    list-style: none;
    display: inline-flex !important;
    align-items: center;
    margin-left: 18px !important;
}

.nav-auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 8px;
    padding: 7px 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-auth-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
}

.nav-login {
    color: #fde68a !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.2s ease !important;
}

.nav-login:hover {
    color: #fff !important;
}

.nav-auth-divider {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    font-size: 0.85rem;
    user-select: none;
}

.nav-register {
    color: #7dd3fc !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    transition: color 0.2s ease !important;
}

.nav-register:hover {
    color: #fff !important;
}

/* Mobile nav auth button */
@media (max-width: 950px) {
    .nav-auth-item {
        display: block !important;
        margin: 20px auto 0 !important;
        text-align: center;
    }

    .nav-auth-btn {
        background: rgba(10, 20, 60, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.18);
        border-radius: 8px;
        padding: 8px 20px;
    }

    .nav-login {
        color: #b45309 !important;
    }

    .nav-register {
        color: #0369a1 !important;
    }

    .nav-auth-divider {
        color: rgba(0, 0, 0, 0.35);
    }
}

/* Fix for mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 18px;
    }
}
/* ===== Why Choose Section ===== */
.why-choose {
  padding: 10px 20px;
  background: #f8fafc;
}

.whychoose {
  font-weight: 850;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 60px;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.whychoose span {
  font-weight: 900;
  color: #000000 !important;
  position: relative;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  flex: 1 1 260px;
  background: white;
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.feature-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

.feature-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #232323, #000000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-box:hover::after {
  transform: scaleX(1);
}

/* Icon Style */
.icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #0f172a;
  transition: all 0.4s ease;
}

.feature-box:nth-child(1) .icon { background: rgba(82, 82, 82, 0.1); color: #000000; }
.feature-box:nth-child(2) .icon { background: rgba(220, 227, 154, 0.1); color: #000000; }
.feature-box:nth-child(3) .icon { background: rgba(82, 82, 82, 0.1); color: #000000; }
.feature-box:nth-child(4) .icon { background: rgba(220, 227, 154, 0.1); color: #000000; }

.feature-box:hover .icon {
  transform: rotate(10deg) scale(1.15);
}

/* Headings & Text */
.feature-box h4 {
  margin: 10px 0 15px;
  font-weight: 800;
  font-size: 22px;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.feature-box p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

/* Responsive Why Choose */
@media (max-width: 768px) {
  .why-choose {
    padding: 70px 18px;
  }
  .whychoose {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .feature-box {
    width: 100%;
    padding: 40px 25px;
  }
}
/* ===== Best Timetable Section ===== */
.best-timetable {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.best-timetable h2 {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.best-timetable h2 span {
  color: #000000 !important;
}

.best-timetable .intro {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* Benefits Box */
.benefits {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.benefits:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefits h3 {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits h3 i {
  font-size: 28px;
  color: #2b2b2b;
}

/* Benefits List */
.benefits ul {
  list-style: none;
  padding: 0;
}

.benefits ul li {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.benefits ul li i {
  color: #2a2a2a;
  font-size: 20px;
  transition: transform 0.4s, color 0.3s;
}

/* Hover Effects */
.benefits ul li:hover i {
  transform: rotate(20deg) scale(1.3);
  color: #d46fdd;
}

.benefits ul li:hover {
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .best-timetable h2 {
    font-size: 26px;
  }

  .benefits {
    padding: 25px;
  }

  .benefits ul li {
    font-size: 16px;
  }
}
/* ===== Premium Testimonials Section ===== */
.testimonials-section {
  padding: 100px 20px;
  background: #f8fafc;
  text-align: center;
  overflow: hidden;
}

.section-title {
  font-weight: 850;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 60px;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title span {
  color: #000000 !important;
  position: relative;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px 35px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.2);
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.testimonial-message {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-user h4 {
  font-size: 18px;
  color: #0f172a;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user h4::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: rgba(226, 232, 240, 0.8);
  margin-left: 10px;
}

.no-data {
  font-size: 18px;
  color: #94a3b8;
  grid-column: 1 / -1;
  padding: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  .testimonial-card {
    padding: 35px 25px;
  }
}
body {
      background: #f4f8fb;
      font-family: 'Poppins', sans-serif;
    }

    .card {
      border: none;
      border-radius: 18px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .card-header {
      background: linear-gradient(135deg, #020c3b, #07034b) !important;
      color: white;
      border-bottom: none;
    }

    .form-label {
      font-weight: 600;
      color: #444;
    }

    .form-control, .form-select {
      border-radius: 10px;
      border: 1px solid #ccc;
      transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
      border-color: #00bcd4;
      box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.25);
    }


    .select2-container--default .select2-selection--single {
      height: 38px !important;
      padding: 6px 12px;
      border-radius: 10px;
      border: 1px solid #ced4da;
    }

    .select2-selection__rendered {
      line-height: 24px;
    }

    .select2-selection__arrow {
      height: 36px !important;
    }
    
    .card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .card-header {
      background: linear-gradient(135deg, #02393f, #03444d);
      color: white;
      text-align: center;
      font-weight: 600;
      font-size: 1.3rem;
      padding: 15px 0;
    }

    .form-label {
      font-weight: 500;
      color: #333;
    }

    .form-control, .form-select {
      border-radius: 8px;
      border: 1px solid #ccc;
      transition: 0.3s;
      font-size: 0.95rem;
      padding: 6px 10px;
    }

    .form-control:focus, .form-select:focus {
      border-color: #101d8b;
      box-shadow: 0 0 0 0.15rem rgba(0, 188, 212, 0.25);
    }

    .btn-custom {
      background: linear-gradient(135deg, #20626b, #133a3d);
      color: white;
      font-weight: 600;
      border-radius: 8px;
      padding: 10px;
      transition: 0.3s;
    }

    .btn-custom:hover {
      background: linear-gradient(135deg, #08272c, #040808);
      color: white;
      transform: translateY(-2px);
    }

    .select2-container--default .select2-selection--single {
      height: 38px !important;
      border-radius: 8px;
      border: 1px solid #ced4da;
    }

    .select2-selection__rendered {
      line-height: 36px;
      font-size: 0.95rem;
    }

    .select2-selection__arrow {
      height: 36px !important;
    }

    textarea {
      resize: none;
    }

    @media (min-width: 992px) {
      .card {
        max-width: 650px;
        margin: auto;
      }
    }
    /* ======= Responsive Navbar ======= */
.navbar {
  position: fixed;
  top: 0;
  /* left: 60px; */
  width: 100%;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  background: transparent;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo alignment */
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Desktop links */
.navbar .links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

/* Hide menu on mobile */
@media (max-width: 768px) {
  .navbar{
    position: fixed;
    top: 0;
    left: 0;
  }
  .navbar .links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    color: white;
    background: #000000b0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding-left: 2rem;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
  }

  .navbar .links.active {
    right: 0;
  }

  .hamburger-btn {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
  }

  .close-btn {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 25px;
  }
  /* ✅ Move login inside menu on mobile */
  .login_btn {
    display: block;
    margin-top: 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
  }
  .register a{
      color: #e82315 !important;
      text-decoration: none;
  }
  .login_btn a {
    color: #013805 !important;
    text-decoration: none;
  }
  /* .login_btn {
    display: none;
  } */
}

/* Desktop hides hamburger */
.hamburger-btn,
.close-btn {
  display: none;
}

/* Link style */
.navbar .links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar .links li a:hover {
  color: #e82315;
}
.popup-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dbe0ea;
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  line-height: 1;
  font-size: 30px;
  font-weight: 400;
  color: #1f2937;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.popup-close-btn:hover {
  background: #e82315;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(232, 35, 21, 0.34);
  transform: rotate(90deg) scale(1.05);
}

.popup-close-btn:active {
  transform: rotate(90deg) scale(0.96);
}

.popup-close-btn:focus-visible {
  outline: 3px solid #7dd3fc;
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .popup-close-btn {
    width: 36px;
    height: 36px;
    font-size: 28px;
    top: 10px;
    right: 10px;
  }
}

/* Keep public navbar links on a single line in desktop view */
@media (min-width: 769px) {
  .navbar .links {
    flex-wrap: nowrap !important;
    gap: 1.5rem !important;
    white-space: nowrap;
  }

  .navbar .links li {
    margin-left: 0 !important;
  }

  .navbar .links li a {
    font-size: 0.9rem !important;
    white-space: nowrap;
  }

  .navbar .links li a .material-symbols-rounded {
    font-size: 20px !important;
  }

  .navbar .links > button {
    padding: 4px 8px !important;
    white-space: nowrap;
    font-size: 0.82rem;
  }
}

/* Live Counter Card Styles */
.live-counter-card {
    position: absolute;
    left: 1vw;
    top: 70%;
    transform: translateY(-50%);
    background: rgba(1, 15, 30, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 14px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
    color: white;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    animation: floatIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ff3e3e;
    border-radius: 50%;
    box-shadow: 0 0 12px #ff3e3e;
    animation: blinkLIVE 1.8s infinite ease-in-out;
}

.live-text {
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

#live-school-count {
    color: #ffb703;
    font-weight: 900;
    font-size: 18px;
    margin-right: 4px;
    display: inline-block;
    min-width: 28px;
    text-align: center;
}

@keyframes blinkLIVE {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px rgba(255, 62, 62, 0.8); }
    50% { opacity: 0.4; transform: scale(1.2); box-shadow: 0 0 18px rgba(255, 62, 62, 1); }
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(-50%) translateX(-60px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@media (max-width: 1200px) {
    .live-counter-card {
        left: 20px;
        padding: 10px 16px;
    }
    .live-text { font-size: 13px; }
    #live-school-count { font-size: 16px; }
}

@media (max-width: 1000px) {
    .live-counter-card {
        top: 140px;
        left: 20px;
        transform: none;
        animation: fadeInUp 0.8s ease-out;
    }
}

@media (max-width: 768px) {
    .live-counter-card {
        display: none;
    }
}

/* Live Activity Card (Right side) */
.live-activity-card {
    position: absolute;
    right: 1vw;
    top: 70%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px;
    border-radius: 24px;
    width: 290px;
    z-index: 5;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    animation: floatInRight 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.activity-header {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.18em;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.activity-status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulseGlow 2s infinite;
}

.activity-body {
    display: flex;
    align-items: center;
    gap: 16px;
}

.activity-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 183, 3, 0.15);
    color: #ffb703;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 183, 3, 0.1);
}

.activity-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 4px 0 0;
    font-weight: 500;
}

.school-name-wrapper {
    overflow: hidden;
    height: 22px;
}

#active-school-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px rgba(16, 185, 129, 0.8); }
    100% { transform: scale(1); opacity: 0.6; box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes floatInRight {
    from { opacity: 0; transform: translateY(-50%) translateX(60px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

@media (max-width: 1250px) {
    .live-activity-card {
        width: 260px;
        right: 2vw;
    }
}

@media (max-width: 1000px) {
    .live-activity-card {
        top: 210px;
        left: 20px;
        right: auto;
        transform: none;
        animation: fadeInUp 1s ease-out;
    }
}

@media (max-width: 768px) {
    .live-activity-card {
        display: none;
    }
}

/* ===== Main Footer Styling ===== */
.main-footer {
    background-color: #0c0e14;
    color: #e2e8f0;
    padding: 70px 0 40px;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #fca311;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-logo span {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.footer-about-text {
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: #fca311;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(252, 163, 17, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #fca311;
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: #fca311;
    font-size: 16px;
    margin-top: 4px;
}

.contact-item a, .contact-item span {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748b;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright strong {
    color: #cbd5e1;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

.dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #64748b;
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}

.designer a {
    color: #fca311;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Scroll Reveal Animations ===== */
/* .reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.15, 0, 0.2, 1);
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
} */
.sendotp{
  background-color: #040808 !important;
  color: white !important;
  font-weight: 900 !important;
}
.sendotp:hover{
  background-color: #012d2d !important;
  color: rgb(193, 180, 180)!important ;
  font-weight: 900 !important;
}