:root {
    --primary-color: #f67809;
    --secondary-color: #2b2b2b;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {   
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.brand-text {
    font-family: 'Merienda', cursive;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://cdn.pixabay.com/photo/2018/03/01/14/50/business-3190198_1280.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 7rem 0;
    position: relative;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.login-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

/* Video Section */
  :root {
      --border-radius: 12px;
      --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f1f1f1;
    }

 /* Mobile (default) */
/* .video-section {
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
} */

/* Desktop (≥992px) */
@media (min-width: 992px) {
    .video-section {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 videos per row */
        gap: 20px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
}


    .video-card {
      background: white;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      overflow: hidden;
      flex: 0 0 22%;
      position: relative;
    }

    .video-card video {
      width: 100%;
      height: 100%;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      display: block;
    }


  .video-card {
    flex: 1 1 100%;
    border-radius: 0;
  }
}
	
	
/* Signup Section */
.signup-section {
    padding: 5rem 0;
}

.signup-card {
    background: linear-gradient(135deg, var(--primary-color), #ff9800);
    border-radius: var(--border-radius);
    color: white;
    padding: 3rem;
    text-align: center;
}

.signup-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.signup-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.signup-btn {
    background-color: white !important;
    color: var(--primary-color) !important;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

.signup-btn:hover {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

/* Forms */
.form-control {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(246, 120, 9, 0.25);
}

.form-label {
    font-weight: 500;
	
}

/* Auth Forms */
.auth-form-container {
    max-width: 500px;
    margin: 3rem auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
}

.auth-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.auth-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #6c757d;
}

.auth-image {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-image img {
    max-width: 200px;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

/* OTP Input */
.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #ced4da;
}

.otp-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(246, 120, 9, 0.25);
    outline: none;
}

/* Alerts */
.alert-primary {
    background-color: rgba(246, 120, 9, 0.1);
    border-color: rgba(246, 120, 9, 0.2);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0;
    }
    
    .signup-card {
        padding: 2rem;
    }
    
    .signup-title {
        font-size: 2rem;
    }
    
    .auth-form-container {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
}

/* Student Reviews Section */
.student-rewiews {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.student-rewiews h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.student-rewiews h4 {
    font-size: 1.2rem;
    color: #6c757d;
}

#st-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* FAQ Section */
.faqe {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
}

.section2 {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* Dashboard */
.dashboard-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-top: 2rem;
}

.dashboard-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.dashboard-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-title {
    color: #6c757d;
    font-size: 0.9rem;
}




/* marquee end */



/* Values Section */ 
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Offer Section */
.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.offer-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}






/* ================================
   About Us Page Styles
================================ */

/* About Banner */
.about-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://cdn.pixabay.com/photo/2017/02/13/12/14/entrepreneur-2061346_1280.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.about-banner h1 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

/* Our Story Section */
.story-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.story-section .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Vision & Mission */
.vision-mission {
    background-color: #f1f1f1;
    padding: 4rem 0;
}

.vision-mission .vm-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.vision-mission h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vision-mission p {
    color: #555;
    font-size: 1rem;
}

/* Our Team Section */
.team-section {
    padding: 5rem 0;
    background-color: #ffffff;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.team-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h5 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Why Choose Us Section */
.choose-us {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.choose-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-6px);
    border: 1px solid var(--primary-color);
}

.choose-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.choose-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.choose-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Testimonials */
.testimonial-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 1rem;
    font-style: italic;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-card::after {
    content: "”";
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.testimonial-card h6 {
    font-weight: 700;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 768px) {
    .about-banner h1 {
        font-size: 2rem;
    }

    .story-section .section-title,
    .team-section h2,
    .choose-card h4 {
        font-size: 1.8rem;
    }

    .team-card img {
        width: 100px;
        height: 100px;
    }
}


/* Terms and Conditions Section */
.terms-section {
    background-color: #fff;
    padding: 4rem 1rem;
    max-width: 1000px;
    margin: auto;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.terms-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 2.5rem;
    position: relative;
}

.terms-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color, #f67809);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Each Term Item */
.term-item {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Number Circle */
.term-number {
    background-color: var(--primary-color, #f67809);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    flex-shrink: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Term Content */
.term-content h5 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.term-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 576px) {
    .term-item {
        flex-direction: column;
        text-align: left;
    }

    .term-number {
        margin-bottom: 0.5rem;
    }
}
