/* Base Styles */
:root {
    --primary-color: #2F3192;
    --secondary-color: #FAA634;
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --border-color: #e5e5e5;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-heading p {
    font-size: 18px;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.secondary-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.outline-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.outline-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

section {
    padding: 100px 0;
}

/* Navbar Styles */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 60px; /* Changed from 40px to 70px */
    margin-right: 10px;
}

.menu ul {
    display: flex;
    gap: 30px;
}

.menu ul li a {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.menu ul li a:hover, .menu ul li a.active {
    color: var(--primary-color);
}

.menu ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu ul li a:hover:after, .menu ul li a.active:after {
    width: 100%;
}

.contact-btn a {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.contact-btn a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-btn i {
    margin-right: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Updated Hero Section with banner.jpg as background */
#hero {
    position: relative;
    padding: 150px 0 100px;
    background: url('../assets/images/banner.jpg') no-repeat center center;
    background-size: cover;
    min-height: 650px;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Add an overlay to ensure text is readable on any background */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.7) 100%);
    z-index: -1;
}

#hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.hero-content {
    max-width: 550px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

@media (max-width: 992px) {
    #hero {
        padding: 120px 0 80px;
        min-height: 550px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    #hero {
        padding: 100px 20px 60px;
        background: url('../assets/images/banner-mob.jpg') no-repeat center center !important;
        background-size: cover;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        max-width: 100%;
        font-size: 16px;
    }
    
    .hero-content a {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    #hero {
        padding: 80px 15px 50px;
        /* min-height: 400px; */
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}


.about-img{
    width: 90%;
}

.about-features {
    margin: 20px 0 30px 0;
}

.feature-text {
    padding-bottom: 10px;
}


/* Updated Contact Section */
#contact {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 15px;
}

.info-card p i {
    font-size: 16px;
    margin-right: 8px;
    margin-bottom: 0;
}

.info-card .btn {
    margin-top: 20px;
}

/* Footer - Simplified */
#footer {
    background-color: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
    text-align: center;
}

#footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer .copyright {
    font-size: 16px;
    margin: 0;
    color: var(--white);
}

/* Responsive styles for contact section */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer - Simplified */
.footer-content,
.footer-logo,
.footer-links,
.footer-contact,
.footer-bottom {
    display: none;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--white);
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu nav ul li a {
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-contact {
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.no-scroll {
    overflow: hidden;
}

/* Additional styles for existing elements */
.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    margin: 15px 0 10px;
    color: var(--white);
}

.footer-links h4, .footer-services h4, .footer-social h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul li, .footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a, .footer-services ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover, .footer-services ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.info-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.map {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

#navbar.sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Simplified image slider (replacing before-after) */
.main-image-display {
    margin-bottom: 30px;
}

.single-image-display {
    width: 500px;
    height: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.single-image-display img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image covers the area without distortion */
    display: block;
    transition: opacity 0.3s ease;
}

.thumbnail-container {
    margin-top: 20px;
    overflow: hidden;
}

.thumbnails {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(47, 49, 146, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .single-image-display {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 576px) {
    .single-image-display {
        height: 300px;
    }
}

/* Team Section Styles - Restored */
#our-team {
    background-color: var(--light-bg);
}

.team-slider-container {
    position: relative;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.team-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.team-member {
    flex: 0 0 25%; /* 4 members visible at once on desktop */
    padding: 15px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.member-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.member-info {
    text-align: center;
}

.member-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.member-info .position {
    color: var(--text-light);
    display: block;
    font-size: 16px;
    margin-bottom: 0;
}

.team-nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(47, 49, 146, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    margin: 0 10px;
}

.team-nav-arrow:hover {
    background: var(--primary-color);
    color: white;
}

.team-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.team-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive adjustments for team slider */
@media (max-width: 1200px) {
    .team-member {
        flex: 0 0 33.333%; /* 3 members on large screens */
    }
}

@media (max-width: 992px) {
    .team-member {
        flex: 0 0 50%; /* 2 members on medium screens */
    }
}

@media (max-width: 768px) {
    .team-member {
        flex: 0 0 100%; /* 1 member on small screens */
    }
    
    .team-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Testimonials Section - Updated with white background */
#testimonials {
    padding: 80px 0;
    background-color: var(--white); /* Changed from #f8f9fa to white */
}

.testimonials-slider-container {
    position: relative;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 33.333%; /* Show 3 testimonials at once on desktop */
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-content {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 320px; /* Fixed height for uniformity */
    display: flex;
    flex-direction: column;
}

.testimonial-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1; /* Let the text take available space */
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto; /* Push to bottom */
}

.author-image {
    margin-right: 15px;
}

.author-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-info h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0 0 2px;
    line-height: 1.3;
}

.author-info span {
    font-size: 14px;
    color: #777;
    display: block;
    line-height: 1.4;
}

.quote-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--primary-color); /* Using primary color */
    font-size: 25px;
    opacity: 0.8;
}

.testimonial-nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(47, 49, 146, 0.1); /* Primary color with transparency */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color); /* Primary color */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    margin: 0 10px;
}

.testimonial-nav-arrow:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color); /* Primary color */
    transform: scale(1.2);
}

/* Responsive adjustments for testimonials slider */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 50%; /* 2 testimonials on large screens */
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%; /* 1 testimonial on small screens */
    }
    
    .testimonial-content {
        min-height: 280px; /* Smaller height on mobile */
    }
    
    .testimonial-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Center-align the CTA in Treatment Gallery */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-heading h2 {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    #hero {
        background: var(--white);
    }
}

@media (max-width: 768px) {
    .menu, .contact-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    #hero .container, .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    #hero {
        padding-top: 120px;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .hero-image::after {
        display: none;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Dental Education & Events Section */
#dental-education {
    padding: 80px 0;
    background-color: #f5f7fa; /* Same as services section */
}

#dental-education .section-heading h2 {
    color: #1a1a1a;
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

#dental-education .section-heading p {
    color: #666;
    font-size: 18px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.education-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.education-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.education-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.education-card:hover .education-image img {
    transform: scale(1.05);
}

/* Hide date and time badges */
.event-date,
.date-badge,
.time-badge {
    display: none !important;
}

.education-content {
    padding: 25px 20px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.education-content h3 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.education-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Hide Register Now button */
.education-btn {
    display: none !important;
}

/* Responsive adjustments for education section - Same as services */
@media (max-width: 1200px) {
    .education-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .education-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .education-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    #dental-education {
        padding: 60px 0;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
    }
    
    .education-image {
        height: 220px;
    }
    
    #dental-education .section-heading h2 {
        font-size: 28px;
    }
    
    #dental-education .section-heading p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .education-image {
        height: 200px;
    }
    
    .education-content {
        padding: 20px 18px 24px;
    }
    
    .education-content h3 {
        font-size: 18px;
    }
    
    .education-content p {
        font-size: 14px;
    }
    
    .date-badge,
    .time-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}