/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* =================================
   STANDARDIZED NAVBAR STYLES
   ================================= */

.navbar {
    padding: 10px 0;
    min-height: 70px; /* Adjusted for no logo */
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1020;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 600;
    margin: 0 10px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545 !important;
}

.navbar-collapse {
    justify-content: center; /* Center the nav items */
}

.navbar-nav .btn-danger {
    background-color: #dc3545;
    border: none;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.navbar-nav .btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 15px;
        align-items: center; /* Center items in mobile view */
    }
}

/* FIXED HERO SECTION - SINGLE UNIFIED BACKGROUND */
.hero-section {
    background: #dc3545 !important;
    color: white !important;
    text-align: center;
    padding: 100px 0 !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* REMOVE ALL PSEUDO-ELEMENTS AND OVERLAYS */
.hero-section::before,
.hero-section::after {
    display: none !important;
    content: none !important;
}

/* ENSURE ALL CHILD ELEMENTS HAVE NO BACKGROUND */
.hero-section * {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-section .container {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.hero-section h2 {
    font-size: 1.7rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: white !important;
}

/* New yellow registration button */
.btn-yellow {
    background-color: #FFC107 !important; /* Bootstrap yellow color */
    color: #212529 !important; /* Dark text for contrast */
    font-weight: 700 !important; /* Bold text */
    padding: 15px 35px !important;
    font-size: 1.2rem !important;
    border-radius: 50px !important;
    border: 3px solid #FFC107 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
    margin-top: 10px;
    display: inline-block;
}

.btn-yellow:hover {
    background-color: #ffca2c !important; /* Lighter yellow on hover */
    border-color: #ffca2c !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25) !important;
}

.hero-section .btn-warning {
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #ffc107;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section .btn-warning:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: white;
    text-align: center;
    padding: 40px 0;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,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"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
}

footer a {
    color: white;
    text-decoration: none;

    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;

    font-weight: 600;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffc107;
    text-decoration: none;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.footer-links a {
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 5px;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Founder Section */
.founder-section {

    padding: 80px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    background-color: #f8f9fa;

    padding: 100px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    background-color: white;
}

.founder-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.founder-section h2 {
    color: #333;
    margin-bottom: 30px;

    font-weight: bold;
}

.founder-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;

    font-weight: 700;
    position: relative;
    display: inline-block;
}

.founder-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #dc3545;
}

.founder-section p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.founder-image {
    max-width: 100%;
    height: auto;

    transition: transform 0.3s ease;
}

.founder-image:hover {
    transform: scale(1.02);

    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.founder-image:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* About Page Styles */
.about-hero {
    background-color: #f8f9fa;

    padding: 60px 0;

    padding: 80px 0;
    position: relative;
}

.about-hero h1 {
    color: #333;

    font-weight: bold;
}

.achievements-section {
    padding: 80px 0;
    background-color: #fff;
}

.achievement-content {
    padding-right: 30px;

    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #dc3545;
}

.achievements-section {
    padding: 100px 0;
    background-color: white;
}

.achievement-content {
    padding-right: 40px;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.achievement-list li {

    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.1rem;

    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: #444;
    font-size: 1.15rem;
}

.achievement-list li:before {
    content: "✓";

    color: red;
    position: absolute;
    left: 0;
    font-weight: bold;

    color: #dc3545;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.stats-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.stats-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stats-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item h3 {

    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;

    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffd700;
}

.stat-item p {

    font-size: 1.2rem;

    font-size: 1.3rem;
    margin: 0;
    color: #fff;
}

/* Courses Page Styles */
.courses-hero {
    background-color: #f8f9fa;


    padding: 80px 0;
    position: relative;
}

.courses-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,122.7C1248,107,1344,117,1392,122.7L1440,128L1440,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"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
}

.courses-hero h1 {
    color: #333;

    font-weight: bold;

    font-weight: 700;
    margin-bottom: 20px;
}

.course-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border-top: 5px solid #dc3545;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.new-badge {
    position: absolute;
    top: 0;
    right: 0;

    background: #ff0000;

    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-bottom-left-radius: 10px;
    font-weight: bold;
    font-size: 0.8rem;


    z-index: 1;
}

.course-card h3 {
    color: #333;

    font-size: 1.2rem;
    font-weight: bold;

    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.course-level {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.course-card p {

    color: #777;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-list {
    margin: 20px 0;

    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.features-list {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;

    font-size: 0.9rem;

    font-size: 0.95rem;
}

.feature-item i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.1rem;
}


.course-card .btn-success {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;

.course-card .btn {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.course-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Course Details Page Styles */
.course-details {

    padding: 60px 0;

    padding: 80px 0;
    background-color: #f8f9fa;
}

.paper-selection {
    background: white;

    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #dc3545;
}

.paper-selection:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.paper-selection h3 {
    color: #333;

    margin-bottom: 20px;
}

.paper-checkbox {
    margin-bottom: 15px;

    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.paper-selection h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #dc3545;
}

.paper-checkbox {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.paper-checkbox:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.paper-checkbox label {
    margin-left: 10px;

    color: #555;
}

.paper-description {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    margin-left: 25px;

    color: #444;
    font-weight: 600;
    cursor: pointer;
}

.paper-description {
    font-size: 0.95rem;
    color: #666;
    margin-top: 8px;
    margin-left: 25px;
    line-height: 1.5;
}

/* =================================
   PROSPECTUS/ACCORDION STYLES
   ================================= */
.prospectus-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.prospectus-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 20px;
}

.accordion-header .accordion-button {
    background-color: #ffffff;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
    transition: all 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed) {
    background-color: #dc3545;
    color: white;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.accordion-header .accordion-button:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-header .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-collapse {
    padding: 0 15px;
}

.accordion-body {
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    padding: 25px;
    margin-top: -10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.topic-list {
    list-style: none;
    padding: 0;
}

.topic-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.topic-item:last-child {
    border-bottom: none;
}

.topic-icon {
    font-size: 1.2rem;
    color: #dc3545;
    margin-right: 20px;
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.topic-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.topic-content p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.prospectus-cta {
    background-color: #28a745;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.prospectus-cta:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}


/* Registration Page Styles */
.registration-section {

    padding: 60px 0;

    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 180px);
}

.registration-card {
    background: white;
    border-radius: 20px;
    padding: 40px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.registration-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.registration-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.progress-step i {
    font-size: 24px;
    color: #adb5bd;
    margin-bottom: 5px;
}

.progress-step span {
    font-size: 12px;
    color: #adb5bd;
    text-align: center;
}

.progress-step.active {
    border-color: #dc3545;
}

.progress-step.active i,
.progress-step.active span {
    color: #dc3545;
}

.course-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.course-option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-option:hover {
    border-color: #dc3545;
    transform: translateY(-5px);
}

.course-option.selected {
    border-color: #dc3545;
    background: #fff5f5;
}

.course-option i {
    font-size: 32px;
    color: #dc3545;
    margin-bottom: 15px;
}

.course-option h4 {
    margin-bottom: 10px;
    color: #333;
}

.course-option p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.paper-selection-container {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
}

.paper-options {
    display: grid;
    gap: 15px;
}

.paper-checkbox {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.paper-checkbox:hover {
    border-color: #dc3545;
}

.confirmation-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-primary:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-outline-primary {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-primary:hover {
    background-color: #dc3545;
    border-color: #dc3545;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Debug - add red border to see if element exists */
.navbar-brand {
    /* Remove this line: border: 2px solid red; */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 15px;
    }
    
    .navbar-nav .nav-link {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section h2 {
        font-size: 1.4rem;
    }
    
    .founder-section,
    .achievements-section {
        padding: 60px 0;
    }
    
    .achievement-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .founder-section {
        text-align: center;
    }
    
    .founder-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .founder-image {
        margin-top: 40px;
    }
    
    .course-card {
        margin-bottom: 30px;
    }
    
    .registration-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Browser compatibility fixes */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Browser compatibility fixes */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
 (Initial Commit for PSLV)
}
/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
 (Initial Commit for PSLV)
}

.btn-outline-primary:hover {
    background-color: #dc3545;
    border-color: #dc3545;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Debug - add red border to see if element exists */
.navbar-brand {
    /* Remove this line: border: 2px solid red; */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 15px;
    }
    
    .navbar-nav .nav-link {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section h2 {
        font-size: 1.4rem;
    }
    
    .founder-section,
    .achievements-section {
        padding: 60px 0;
    }
    
    .achievement-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .founder-section {
        text-align: center;
    }
    
    .founder-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .founder-image {
        margin-top: 40px;
    }
    
    .course-card {
        margin-bottom: 30px;
    }
    
    .registration-card {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Browser compatibility fixes */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Browser compatibility fixes */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
 (Initial Commit for PSLV)
}
/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
 (Initial Commit for PSLV)
}
/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
 (Initial Commit for PSLV)
}
/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
 (Initial Commit for PSLV)
}
