:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary-color: #ef3131;
    --accent-color: #ef3131;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #06d6a0;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

/* Custom Button Styles */
.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: #0a58ca;
    color: #ddd;
    border-color: #fff;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: #d12b2b;
    border-color: #d12b2b;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-heading {
    position: relative;
    margin-bottom: 3rem;
}

.popup-image-header{
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    padding: 20px 15px;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.contact-title{
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-title span{
    display: block;
    margin-top: 5px;
    font-size: 26px;
    font-weight: 700;
    color: #ffeb3b;
}

/* .section-heading:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
} */

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: white;
    font-size: 0.9rem;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    padding: 0;
}

.logo-img {
    height: 70px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-features .fa-check-circle {
    color: var(--success-color);
    font-size: 1.2rem;
}

.hero .alert {
    border-left: 4px solid #ffd43b;
}

/* Statistics Bar */
.stats-bar {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    z-index: 10;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Why Choose Us */
.commitment-item {
    padding: 25px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.commitment-item:hover {
    transform: translateY(-5px);
}

.commitment-icon {
    background-color: var(--light-gray);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

/* How It Works */
.how-it-works {
    background-color: var(--light-gray);
}

.step-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Services */
.service-category {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.service-category h3 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-list {
    columns: 2;
    column-gap: 20px;
}

.service-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Tutors */
.tutors {
    background-color: var(--light-gray);
}

.tutors-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tutor-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.tutor-card:hover {
    transform: translateY(-10px);
}

.tutor-header {
    padding: 25px 25px 15px;
}

.tutor-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.tutor-specialty {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.tutor-credentials {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.tutor-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.tutor-quote {
    font-style: italic;
    padding: 0 25px 25px;
    border-top: 1px solid var(--light-gray);
    margin-top: 15px;
}

.tutor-qualifications {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.qualification-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qualification-icon {
    color: var(--success-color);
    font-size: 1.5rem;
}

/* Pricing */
.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.pricing-price span {
    font-size: 1rem;
    color: var(--gray-color);
}

.pricing-feature {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-feature:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-gray);
}

.testimonial-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-details {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.testimonial-stats {
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* FAQ */
.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    background-color: white;
    font-weight: 600;
    padding: 20px;
    transition: background-color 0.3s ease;
}


.accordion-button:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--dark-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-body {
    padding: 20px;
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--success-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ddd;
}

.social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links .social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.newsletter-form .form-control {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #aaa;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.3rem;
    }
    
    .top-bar{
        display: none;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .top-bar{
        display: none;
    }
    
    
    .service-list {
        columns: 1;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-list {
        columns: 1;
    }
    
    .footer-bottom span, .footer-bottom a {
        display: block;
        margin-bottom: 10px;
    }
     .top-bar{
        display: none;
    }
    
    .btn{
      margin-bottom: 10px;
      margin-right: 0px !important;
    }
    
}