* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #160724;
    --secondary-color: #4a0769;
    --accent-color: #e74c3c;
    --light-color: #f9f9f9;
    --dark-color: #2c3e50;
    --success-color: #27ae60;
    --text-color: #333;
    --text-light: #777;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
    font-size: 14px;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-block {
    width: 100%;
    display: block;
}

section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.2;
    color: var(--primary-color);
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    margin: 10px 0;
    text-align: center;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: 60px;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 15px;
    width: 100%;
}

.text-overlay {
    background-color: rgba(22, 7, 36, 0.85);
    padding: 25px 20px;
    border-radius: 8px;
    max-width: 90%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.text-overlay h1 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s both;
}

.text-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-btns .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.hero-carousel-btn {
    display: none;
}

.hero-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.hero-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* Features Section */
.features {
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-card {
    background-color: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
}

/* Courses Preview */
.courses-preview {
    padding-bottom: 40px;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.course-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-img {
    height: 150px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.course-content {
    padding: 20px;
}

.course-content h3 {
    margin-bottom: 10px;
}

.preview-details {
    margin: 15px 0;
    padding: 12px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 5px;
    border-left: 3px solid var(--secondary-color);
}

.preview-details p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.preview-details i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-color);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Events Section */
.events-section {
    background-color: #fff;
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.video-carousel-col, .image-gallery-col {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.video-header, .gallery-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.2);
}

.video-header h3, .gallery-header h3 {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.video-header h3 i, .gallery-header h3 i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.video-header p, .gallery-header p {
    font-size: 0.9rem;
}

.video-carousel {
    position: relative;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none;
    animation: fadeIn 0.8s ease;
}

.carousel-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.video-wrapper {
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover .video-placeholder img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(231, 76, 60, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 15px;
    z-index: 1;
}

.video-overlay h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
}

.video-overlay p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-size: 0.8rem;
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.video-info p {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.video-info i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.carousel-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Image Gallery */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 6px 12px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 12px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    width: 100%;
}

.overlay-content h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
}

.overlay-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.event-date {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--secondary-color);
}

.event-date i {
    margin-right: 5px;
}

.gallery-cta {
    background-color: white;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gallery-cta p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.gallery-cta i {
    margin-right: 8px;
    color: var(--accent-color);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    width: 100%;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-image-container {
    height: 300px;
    overflow: hidden;
}

.lightbox-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-info {
    padding: 20px;
}

.lightbox-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.lightbox-info p {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.lightbox-meta {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Media & Awards Section */
.media-awards-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.media-awards-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
}

.awards-carousel-section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.awards-carousel-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #FFD700, #FFA500, #FFD700);
}

.carousel-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.carousel-header h3 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0;
}

.carousel-header h3 i {
    margin-right: 8px;
    color: #FFD700;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-nav-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.carousel-nav-btn:hover:not(:disabled) {
    background-color: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.awards-carousel {
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    padding: 10px 5px;
}

.awards-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    gap: 20px;
}

.award-card {
    min-width: 250px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 10px;
    padding: 25px 20px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    flex-shrink: 0;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.award-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    z-index: 2;
}

.award-content {
    margin-top: 10px;
}

.award-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.award-by {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.award-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.award-date {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

.award-date i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.award-ribbon {
    position: absolute;
    top: 8px;
    right: -6px;
    width: 30px;
    height: 40px;
    background-color: #e74c3c;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
    z-index: 1;
}

.award-ribbon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: #c0392b;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Milestones Timeline */
.milestones-section {
    margin-bottom: 40px;
}

.section-subtitle {
    margin-bottom: 25px;
}

.section-subtitle h3 {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.section-subtitle h3 i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.section-subtitle p {
    font-size: 0.95rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    z-index: 1;
}

.milestone {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.milestone.visible {
    opacity: 1;
    transform: translateY(0);
}

.milestone.left {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
}

.milestone.right {
    justify-content: flex-start;
    padding-left: 60px;
    padding-right: 0;
}

.milestone-content {
    background-color: white;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    position: relative;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.milestone-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.milestone-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.milestone-date {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.milestone-icon {
    position: absolute;
    left: 30px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    border: 3px solid var(--secondary-color);
}

/* Partners Section */
.partners-section {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.partners-track {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    gap: 30px;
    padding: 10px;
    width: max-content;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 6 - 30px * 6));
    }
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo-container {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.partner-logo:hover .logo-container {
    transform: translateY(-8px) scale(1.1);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
}

.partner-logo span {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    font-size: 0.85rem;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

/* Achievement CTA */
.achievement-cta {
    background: linear-gradient(135deg, var(--primary-color), #1a252f);
    color: white;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-content h3 {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cta-content h3 i {
    margin-right: 8px;
    color: #FFD700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.achievement-cta .btn {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 300px;
    margin: 0 auto;
}

.achievement-cta .btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Lead Form Section */
.lead-form-section {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

.lead-form-section h2 {
    color: white;
}

.lead-form-section h2:after {
    background-color: white;
}

.lead-form-container {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-row .form-group {
    width: 100%;
}

/* Courses Page */
.courses-hero {
    background: linear-gradient(rgba(16, 1, 29, 0.9), rgba(52, 1, 87, 0.9)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0 60px;
    margin-top: 60px;
}

.courses-hero h1 {
    color: white;
    font-size: 1.8rem;
}

.courses-hero p {
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-section {
    background-color: var(--light-color);
}

.team-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.intro-content h3 {
    color: white;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.intro-content h3 i {
    margin-right: 8px;
    color: #FFD700;
}

.intro-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.team-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.team-filter-btn {
    padding: 8px 15px;
    background-color: white;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
    font-size: 0.85rem;
}

.team-filter-btn.active, .team-filter-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 60px;
}

.team-card {
    perspective: 1000px;
    height: 420px;
    margin-bottom: 80px;
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.team-card.flipped .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-front, .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.team-card-front {
    background-color: white;
    display: flex;
    flex-direction: column;
}

.team-card-back {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.team-overlay span {
    font-size: 0.75rem;
    display: inline-block;
}

.experience {
    color: #FFD700;
    font-weight: 600;
}

.team-info {
    padding: 18px;
    flex-grow: 1;
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.specialization {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.subject-tag {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.team-quote {
    display: flex;
    align-items: flex-start;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

.team-quote i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1rem;
    margin-top: 3px;
}

.team-quote p {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.team-action {
    padding: 0 18px 18px;
}

.view-profile {
    width: 100%;
    padding: 10px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.view-profile:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Back Card Styles */
.profile-content h3 {
    color: white;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.2rem;
}

.impact-list {
    list-style: none;
    margin-bottom: 20px;
}

.impact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
}

.impact-list i {
    color: #4cd964;
    margin-right: 8px;
    margin-top: 3px;
    font-size: 0.9rem;
}

.expertise-detail {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.expertise-detail h4 {
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.expertise-detail p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.close-profile {
    width: 100%;
    padding: 10px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
}

.close-profile:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Expertise Path */
.expertise-path {
    position: relative;
    height: 80px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.path-line {
    position: absolute;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
    top: 50%;
    transform: translateY(-50%);
}

.path-point {
    position: relative;
    width: 33.33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: pointReveal 0.5s ease forwards;
    animation-delay: var(--delay);
}

@keyframes pointReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.point-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    transition: var(--transition);
}

.team-card:hover .point-icon {
    transform: translateY(-8px);
    background-color: var(--secondary-color);
    color: white;
}

.path-point p {
    font-size: 0.7rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0;
}

/* Team CTA */
.team-impact-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 30px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    box-shadow: var(--shadow);
}

.impact-message h3 {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.impact-message h3 i {
    margin-right: 8px;
}

.impact-message p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.team-impact-cta .btn {
    background-color: white;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 300px;
    margin: 0 auto;
}

.team-impact-cta .btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Course Categories */
.course-category {
    margin-bottom: 50px;
}

.category-title {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.category-title .subtitle {
    font-size: 1rem;
    margin-top: -12px;
    margin-bottom: 0;
}

.category-courses {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.detailed-course {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.detailed-course:hover {
    transform: translateY(-5px);
}

.course-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 18px;
}

.course-header h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.course-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-weight: 400;
}

.course-body {
    padding: 20px;
}

.course-details {
    margin-bottom: 18px;
}

.course-details li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
    font-size: 0.9rem;
}

.course-details span:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.course-details span:last-child {
    color: var(--text-light);
}

.course-features {
    background-color: rgba(52, 152, 219, 0.05);
    padding: 15px;
    border-radius: 5px;
    margin: 18px 0;
}

.course-features h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.course-features ul {
    list-style-type: disc;
    padding-left: 18px;
}

.course-features li {
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.course-features li strong {
    color: var(--primary-color);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(16, 1, 29, 0.9), rgba(52, 1, 87, 0.9)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0 60px;
    margin-top: 60px;
}

.contact-hero h1 {
    color: white;
    font-size: 1.8rem;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail i {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.lead-form-container h3 {
    margin-bottom: 10px;
}

.lead-form-container > p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Form Messages */
#form-messages {
    margin-bottom: 20px;
}

.alert {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.alert-success {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.alert-error {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.alert i {
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Map Section */
.map-section {
    padding-top: 0;
}

.map-section .section-title {
    margin-bottom: 25px;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-content {
    height: 300px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
}

.map-content i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.map-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.map-content p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-image: linear-gradient(to bottom right, rgb(25, 3, 36), rgb(55, 2, 90));
    color: white;
    padding: 50px 0 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
}

.footer-contact i {
    margin-right: 10px;
    color: white;
    margin-top: 3px;
    flex-shrink: 0;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255, 255, 255, 0.945);
    font-size: 0.85rem;
}

.copyright p {
    color: rgba(255, 255, 255, 0.856);
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease;
}

/* Page Content */
.page-content {
    display: none;
}

.page-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* =============== RESPONSIVE MEDIA QUERIES =============== */

/* Mobile M (375px) */
@media (min-width: 375px) {
    body {
        font-size: 14.5px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    h1 {
        font-size: 2.1rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .logo-text h1 {
        font-size: 1.15rem;
    }
    
    .text-overlay h1 {
        font-size: 1.9rem;
    }
    
    .text-overlay p {
        font-size: 1rem;
    }
    
    .hero-btns .btn {
        padding: 11px 22px;
        font-size: 0.92rem;
    }
}

/* Mobile L (425px) */
@media (min-width: 425px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.75rem;
    }
    
    .hero-carousel {
        height: 75vh;
    }
    
    .text-overlay {
        padding: 30px 25px;
    }
    
    .text-overlay h1 {
        font-size: 2.1rem;
    }
    
    .text-overlay p {
        font-size: 1.05rem;
    }
    
    .hero-btns {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-btns .btn {
        width: auto;
        max-width: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-courses {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (768px) */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    
    section {
        padding: 70px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        width: auto;
    }
    
    .nav-links li {
        margin: 0 0 0 25px;
        text-align: left;
    }
    
    .hero-carousel {
        height: 85vh;
        margin-top: 70px;
    }
    
    .hero-carousel-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(224, 3, 3, 0.89);
        color: white;
        border: none;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        font-size: 1.4rem;
    }
    
    .hero-carousel-btn:hover {
        background-color: var(--secondary-color);
        transform: translateY(-50%) scale(1.1);
    }
    
    .prev-btn {
        left: 25px;
    }
    
    .next-btn {
        right: 25px;
    }
    
    .text-overlay {
        padding: 40px 35px;
        max-width: 85%;
    }
    
    .text-overlay h1 {
        font-size: 2.5rem;
    }
    
    .text-overlay p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-card {
        margin-bottom: 0;
    }
    
    .events-container {
        flex-direction: row;
    }
    
    .video-carousel-col, .image-gallery-col {
        flex: 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .award-card {
        min-width: 280px;
    }
    
    .milestone.left {
        padding-left: calc(50% + 20px);
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .milestone.right {
        padding-left: 0;
        padding-right: calc(50% + 20px);
        justify-content: flex-end;
    }
    
    .timeline-line {
        left: 50%;
    }
    
    .milestone-icon {
        left: 50%;
    }
    
    .partners-track {
        animation-duration: 35s;
    }
    
    .form-row {
        flex-direction: row;
        gap: 20px;
    }
    
    .form-row .form-group {
        flex: 1;
    }
    
    .courses-hero, .contact-hero {
        padding: 120px 0 80px;
        margin-top: 70px;
    }
    
    .courses-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .team-card {
        height: 450px;
    }
    
    .category-courses {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .impact-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Laptop (1024px) */
@media (min-width: 1024px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    .header-container {
        padding: 15px 30px;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-text h1 {
        font-size: 1.6rem;
    }
    
    .logo-text span {
        font-size: 0.85rem;
    }
    
    .nav-links li {
        margin-left: 30px;
    }
    
    .hero-carousel {
        height: 90vh;
    }
    
    .text-overlay {
        max-width: 800px;
        padding: 50px 40px;
    }
    
    .text-overlay h1 {
        font-size: 3rem;
    }
    
    .text-overlay p {
        font-size: 1.3rem;
    }
    
    .hero-carousel-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .prev-btn {
        left: 40px;
    }
    
    .next-btn {
        right: 40px;
    }
    
    .hero-indicators {
        bottom: 30px;
    }
    
    .hero-indicator {
        width: 12px;
        height: 12px;
    }
    
    .features-grid, .courses-grid {
        gap: 35px;
    }
    
    .feature-card, .course-card {
        padding: 35px 30px;
    }
    
    .course-img {
        height: 200px;
        font-size: 4rem;
    }
    
    .video-placeholder {
        height: 250px;
    }
    
    .gallery-img {
        height: 220px;
    }
    
    .lightbox-image-container {
        height: 450px;
    }
    
    .awards-track {
        gap: 25px;
    }
    
    .award-card {
        min-width: 300px;
    }
    
    .partner-logo {
        min-width: 150px;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-card {
        height: 480px;
    }
    
    .category-courses {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-container {
        gap: 50px;
    }
    
    .contact-info, .lead-form-container {
        padding: 35px 30px;
    }
}

/* Laptop Large (1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 50px;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .header-container {
        padding: 20px 50px;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .logo-text span {
        font-size: 0.9rem;
    }
    
    .hero-carousel {
        height: 95vh;
    }
    
    .text-overlay {
        max-width: 900px;
        padding: 60px 50px;
    }
    
    .text-overlay h1 {
        font-size: 3.5rem;
    }
    
    .text-overlay p {
        font-size: 1.5rem;
    }
    
    .hero-carousel-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .prev-btn {
        left: 60px;
    }
    
    .next-btn {
        right: 60px;
    }
    
    .hero-indicators {
        bottom: 40px;
    }
    
    .hero-indicator {
        width: 14px;
        height: 14px;
    }
    
    section {
        padding: 100px 0;
    }
    
    .features-grid, .courses-grid {
        gap: 40px;
    }
    
    .feature-card, .course-card {
        padding: 40px 35px;
    }
    
    .course-img {
        height: 220px;
        font-size: 4.5rem;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .gallery-grid {
        gap: 25px;
    }
    
    .gallery-img {
        height: 250px;
    }
    
    .lightbox-content {
        max-width: 1100px;
    }
    
    .lightbox-image-container {
        height: 550px;
    }
    
    .awards-track {
        gap: 30px;
    }
    
    .award-card {
        min-width: 320px;
        padding: 35px 30px 30px;
    }
    
    .award-badge {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -20px;
        left: 30px;
    }
    
    .partner-logo {
        min-width: 180px;
    }
    
    .logo-container {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .team-card {
        height: 500px;
    }
    
    .category-courses {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .contact-container {
        gap: 60px;
    }
    
    .contact-info, .lead-form-container {
        padding: 40px 35px;
    }
    
    .footer-container {
        gap: 50px;
    }
}




/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Social Media Brand Colors on Hover */
.social-links a:nth-child(1):hover { /* Instagram */
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-links a:nth-child(2):hover { /* Facebook */
    background-color: #1877F2;
}

.social-links a:nth-child(3):hover { /* LinkedIn */
    background-color: #0077B5;
}

.social-links a:nth-child(4):hover { /* YouTube */
    background-color: #FF0000;
}

/* Responsive adjustments */
@media (min-width: 425px) {
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .social-links {
        gap: 18px;
        margin-top: 20px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .social-links {
        gap: 20px;
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}