/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 219, 75, 0.5);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(255, 219, 75, 0.8), 0 0 30px rgba(255, 219, 75, 0.6);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 219, 75, 0.5);
    }
}

/* Outfit Font Classes */
.outfit-thin {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
}

.outfit-light {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.outfit-regular {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.outfit-medium {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.outfit-semibold {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.outfit-bold {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.outfit-extrabold {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.outfit-black {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'Lexend', sans-serif;
    font-optical-sizing: auto;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    position: fixed;
    top: 15px;
    left: 35px;
    right: 35px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 25px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 24px;
    color: white;
}

.logo-text h1 {
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.logo-text p {
    color: white;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.logo img {
    width: 200px;
}
.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}
.nav-menu a {
    color: #2F3F88;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2F3F88;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 30px;
}

.mobile-nav a {
    color: #2F3F88;
    text-decoration: none;
    font-weight: 600;
    font-size: 24px;
    padding: 15px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav a:hover {
    background: #2F3F88;
    color: white;
    transform: translateY(-2px);
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    background-image: url(./img/banner_1.png);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-position: bottom;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h2 {
    color: #FFDB4B;
    font-size: 31px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 50px;
    line-height: 1.2;
}

.hero-left h3 {
    color: white;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    animation: pulseGlow 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 219, 75, 0.5);
}

/* Countdown Timer */
.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.countdown-item {
    background: none;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    color: white;
    font-size: 32px;
    width: 96px;
    border: 1px solid white;
    font-weight: 800;
    background: white;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    background-color: #1D2A60;
}

.countdown-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* Registration Form */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #E3E3E3;
    border-radius: 29px;
}

.registration-form input,
.registration-form select {
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    color: #333;
}

.registration-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23494c4e' d='M13.708 6.29A1.006 1.006 0 0 0 13 6H5.005A1 1 0 0 0 4.3 7.71l4 4a1.013 1.013 0 0 0 1.42 0l4-4a1.01 1.01 0 0 0-.013-1.42z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

.registration-form input::placeholder {
    color: #666;
}

.btn-register {
    background: #1E3A8A;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-register:hover {
    background: #1E40AF;
}

.hero-info {
    text-align: center;
}

.hero-info-1 {
    color: #313E88;
    font-style: italic;
    font-size: 20px;
    padding: 2px 17px;
    background-color: #FAD300;
    border-radius: 25px;
    width: fit-content;
    margin: 0 auto;
}

.hero-info-2 {
    color: white;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

.hero-info p {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0;
}

/* Hero Right Side */
.hero-right {
    text-align: center;
}

.hero-image {
    position: relative;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.hero-overlay h2 {
    color: #FF6B35;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-overlay h3 {
    color: #FF6B35;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-guarantee {
    color: white;
    font-size: 18px;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Class Selection Section */
.class-selection {
    padding: 80px 0;
    position: relative;
}

.class-selection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0,0,0,0.03) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(0,0,0,0.03) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(0,0,0,0.03) 2px, transparent 2px);
    background-size: 80px 80px, 100px 100px, 60px 60px;
}

/* Create two rows */
.class-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.class-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.class-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 0;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    width: 220px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.class-card:hover {
    transform: translateY(-5px);
}

.class-card h3 {
    background: linear-gradient(135deg, #ff7b00, #ff4500);
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    padding: 20px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.subjects {
    padding: 20px;
    background: white;
}

.subjects p {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.subjects p:last-child {
    border-bottom: none;
}

.subjects span {
    font-size: 18px;
    font-weight: bold;
    color: #666;
}

/* Featured Courses Section */
.featured-courses {
    padding: 80px 0;
}

.featured-courses h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #c81b1b;
    margin-bottom: 50px;
}

.course-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background: #FFD700;
    color: #333;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Tutor Course Content */
.course-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.course-left {
    text-align: center;
    position: relative;
}

.tutor-badge {
    background: #FFD700;
    color: #1E3A8A;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tutor-badge i {
    font-size: 18px;
}

.student-image {
    position: relative;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B35, #FF4500);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.student-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    object-fit: cover;
}

.course-info-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.info-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-badge i {
    color: #FF6B35;
    font-size: 16px;
}

.course-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.course-card {
    border-radius: 20px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card-header {
    background: white;
    padding: 15px 25px;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 20px;
}

.course-card-header h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #1E3A8A;
}

.course-card img {
    width: 311px;
    margin-top: 82px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.course-card img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.course-card-content {
    color: white;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.course-card ul {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.course-card li {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

.btn-study {
    background: #1E3A8A;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-study:hover {
    background: #1E40AF;
}

/* Material Course Content */
.material-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.material-left {
    display: flex;
    flex-direction: column;
}

.material-courses {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.title-inner {
    width: fit-content;
    color: white;
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, #FF6B35, #FF4500);
    border-radius: 16px;
}

.logo-text img {
    width: 225px;
}

.title-block {
    padding: 10px;
    background-color: white;
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -40px;
    border-radius: 16px;
}

.material-card {
    background: linear-gradient(135deg, #FF6B35, #FF4500);
    border-radius: 20px;
    padding: 20px;
    color: white;
    box-shadow: 0 8px 25px rgba(255,107,53,0.3);
}

.material-card-header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.material-card-header h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: white;
    text-align: center;
}

.material-card-content {
    color: white;
    display: flex;
    flex-direction: column;
}

.material-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.material-card li {
    margin: 12px 0;
    font-size: 14px;
    line-height: 1.5;
    color: white;
}

.btn-register-material {
    background: #1E3A8A;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-register-material:hover {
    background: #1E40AF;
}

.material-info {
    text-align: center;
    margin-top: 20px;
}

.material-info p {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.material-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.material-badge {
    background: #FFD700;
    color: #1E3A8A;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.material-badge i {
    font-size: 18px;
}

.file-explorer-container {
    position: relative;
}

.file-explorer-circle {
    background: white;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    height: 250px;
    justify-content: center;
}

.file-explorer {
    text-align: center;
    margin-bottom: 15px;
}

.file-explorer img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

.file-explorer-circle p {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Expert Advisors Section */
.expert-advisors {
    padding: 80px 0;
}

.expert-advisors h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
    color: #c81b1b;
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advisor-card {
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: transform 0.3s;
}
.advisors-grid img {
    width: 330px;
}
.feedback-grid img {
    width: 100%;
}
.advisor-card:hover {
    transform: translateY(-5px);
}
.container-wrap {
    background: linear-gradient(135deg, #ff7b00, #ff4500);
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    padding-top: 65px;
    position: relative;
    margin-top: 80px;
}

.advisor-image {
    margin-bottom: 20px;
}

.advisor-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
}

.advisor-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.advisor-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.9;
}

.advisor-card ul {
    list-style: none;
    text-align: left;
}

.advisor-card li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.advisor-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Student Feedback Section */
.student-feedback {
    background: white;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feedback-card {
    background: white;
    border: 2px solid #E53E3E;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feedback-card:hover {
    transform: translateY(-5px);
}

.student-image {
    margin-bottom: 20px;
}

.student-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #FF6B35;
}

.feedback-card h4 {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feedback-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.stars i {
    color: #FFD700;
    font-size: 20px;
}

/* Footer */
.footer {
    background-image: url(./img/background-main.png);
    padding: 10px 0 40px;
    background-repeat: repeat;
    background-size: contain;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-title {
    color: #971412;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.address-title {
    color: #971412;
    font-weight: 800;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-icon i {
    font-size: 20px;
    color: white;
}

.footer-logo .logo-text h3 {
    color: #333;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.footer-logo .logo-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.footer-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 16px;
}

.footer-address i {
    color: #2F3F8C;
    font-size: 18px;
}


.footer-right {
    padding-top: 125px;
}

.contact-info p {
    color: #666;
    font-size: 16px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3490E9;
    margin-bottom: 0px;
    margin-top: 0px;
}

.contact-info p:first-child {
    margin-top: 20px;
}

.contact-info p a {
    color: #3490E9 !important;
}

.contact-info p span {
    color: #2D2D2D;
}

.contact-info i {
    color: #FF6B35;
    font-size: 18px;
    width: 20px;
}

.contact-info a {
    color: #1E3A8A;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.course-content-mobile-item img {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Styles */

    .course-content-2 {
        display: none;
    }

    .course-content-mobile {
        display: block !important;
    }

    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .container-header {
        padding: 0 20px;
    }
    
    .header {
        left: 15px;
        right: 15px;
        top: 10px;
        border-radius: 20px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .countdown {
        justify-content: center;
    }
    
    .course-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .course-right {
        grid-template-columns: 1fr;
    }
    
    .material-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .material-right {
        order: -1;
    }
    
    .file-explorer-circle {
        width: 200px;
        height: 200px;
    }
    
    .advisors-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .class-row {
        flex-direction: column;
        align-items: center;
    }
    
    .class-card {
        width: 280px;
        max-width: 90%;
    }

    .hero {
        background-image: unset;
        background-color: #bf0807;
    }
    
    .course-card {
        display: block;
        text-align: center;
    }

    .course-left img {
        width: 100% !important;
    }

    .footer-right {
        padding-top: 0px;
    }

    .feedback-grid-mobile {
        display: block !important;
    }

    .feedback-grid {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-left h2 {
        font-size: 28px;
    }
    
    .hero-left h3 {
        font-size: 22px;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .class-row {
        flex-direction: column;
        align-items: center;
    }
    
    .class-card {
        width: 260px;
        max-width: 95%;
    }
}

.course-left img {
    width: 430px;
}

.course-content-2 img {
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.course-content-2 img:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.body-wrap {
    background-image: url(./img/background-body.png);
    background-repeat: none;
    background-size: cover;
}

.feedback-item img {
    width: 100%;
}