/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET AND FIX FOR SCROLL ISSUE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden; /* This fixes the horizontal scroll issue */
    /* Hide scrollbar for all browsers */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body{
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100%;
    position: relative;
    /* Hide scrollbar but keep functionality */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* CONTAINER */
.container{
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

/* HEADER */
header{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

header:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #05100326;
    z-index: 25;
}

/* NAVIGATION */
nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(129, 176, 120, 0.3), transparent);
}

nav .nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO */
.logo img{
    height: 100px;
    width: auto;
    position: relative;
    z-index: 102;
}

/* HERO PARALLAX LAYOUT */
.hero-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 30;
    padding: 0 20px;
}

.hero-parallax{
    display: block;
    will-change: transform;
}

.hero-subtitle{
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin: 0.5rem 0;
}

.big-title{
    font-size: 5rem;
    line-height: 1.2;
    margin: 0.5rem 0;
    color: #fff;
}

.big-title span{
    color: #E6B422;
}

/* Typing animation styles */
.typing-text {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgb(255, 255, 255);
    margin: 1rem 0;
    min-height: 2.5rem;
    position: relative;
    z-index: 30;
}

.multiple-text {
    color: #ffffff;
    font-weight: 600;
}

/* Cursor blinking effect */
.typed-cursor {
    color: #E6B422;
    font-weight: 300;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* HERO IMAGES - EXACT ORIGINAL POSITIONS */
.mountain1{
    position: absolute;
    bottom: -100px;
    width: 1500px;
    right: 0;
    z-index: 19;
}

.person{
    position: absolute;
    width: 650px;
    bottom: -100px;
    left: -70px;
    z-index: 20;
}

.mountain2{
    position: absolute;
    width: 1100px;
    bottom: -100px;
    left: 0;
    z-index: 18;
}

.mountain3{
    position: absolute;
    width: 900px;
    bottom: 150px;
    right: 0;
    z-index: 17;
}

.sky{
    position: absolute;
    width: 2100px;
    bottom: 250px;
    right: 0;
    z-index: 15;
}

/* SECTION STYLES */
section{
    width: 100%;
    position: relative;
    padding: 5rem 0;
}

#about {
    background-color: #34495e;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.section-border {
    width: 80px;
    height: 4px;
    background-color: #E6B422;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

/* ABOUT SECTION */
#about .container{
    padding: 3rem 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#about img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

#about .container > *{
    margin: 2rem;
}

.content{
    color: #fff;
    transform: translateY(-50px);
}

.imgContainer{
    transform: translateY(50px);
}

.title{
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    position: relative;
}

.border{
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #fff;
    bottom: 0;
    left: 0;
    transition: width 0.5s ease;
}

.text{
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.shadow{
    position: absolute;
    bottom: 100%;
    height: 300px;
    width: 100%;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, #151515, transparent);
}

.opacity{
    opacity: 0;
}

/* VISION & MISSION SECTION */
.vision-mission-section {
    background-color: #2c3e50;
}

.vision-mission-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-mission-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

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

.vision-mission-icon {
    font-size: 3rem;
    color: #E6B422;
    margin-bottom: 1.5rem;
}

.vision-mission-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.vision-mission-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* COURSES SECTION */
.courses-section {
    background-color: #34495e;
}

.courses-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.course-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

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

.course-level {
    padding: 1.5rem;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.course-level i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.course-level h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Different colors for different course types */
.course-card:nth-child(2) .course-level {
    background: linear-gradient(135deg, #f39c12, #f1c40f);
}

.course-card:nth-child(3) .course-level {
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.course-card:nth-child(4) .course-level {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.course-card:nth-child(5) .course-level {
    background: linear-gradient(135deg, #d35400, #e67e22);
}

.course-card:nth-child(6) .course-level {
    background: linear-gradient(135deg, #16a085, #1abc9c);
}

.course-title {
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.course-features {
    padding: 1.5rem;
    list-style: none;
}

.course-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.course-features i {
    color: #E6B422;
    margin-right: 10px;
    font-size: 1.1rem;
}

.course-btn {
    display: block;
    width: 80%;
    margin: 0 auto 1.5rem;
    padding: 12px 20px;
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.course-btn:hover {
    background-color: #d4a017;
}

/* Course Modal - Hide scrollbar but keep scrolling */
.course-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.modal-content {
    background-color: #2c3e50;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Hide scrollbar but keep scrolling */
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-content::-webkit-scrollbar {
    display: none;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #E6B422;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
    background-color: rgba(44, 62, 80, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #fff;
    background-color: #E6B422;
}

#modalTitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #E6B422;
    padding-right: 40px;
}

#modalContent {
    line-height: 1.7;
    max-height: calc(90vh - 150px);
    /* Hide scrollbar but keep scrolling */
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-right: 10px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#modalContent::-webkit-scrollbar {
    display: none;
}

#modalContent h4 {
    color: #E6B422;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

#modalContent ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

#modalContent ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

#modalContent p {
    margin-bottom: 1rem;
}

/* GALLERY SECTION */
.gallery-section {
    background-color: #2c3e50;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(230, 180, 34, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
}

.gallery-btn-container {
    text-align: center;
    margin-top: 3rem;
}

.gallery-btn {
    padding: 15px 40px;
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.gallery-btn:hover {
    background-color: #d4a017;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Full Gallery Modal - Hide scrollbar */
.full-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1100;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.full-gallery-content {
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background-color: #2c3e50;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    color: white;
    /* Hide scrollbar but keep scrolling */
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.full-gallery-content::-webkit-scrollbar {
    display: none;
}

.close-full-gallery {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: #E6B422;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1101;
    background-color: rgba(44, 62, 80, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-full-gallery:hover {
    color: #fff;
    background-color: #E6B422;
}

.full-gallery-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #E6B422;
}

.full-gallery-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.full-gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.full-gallery-container img.active {
    display: block;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    gap: 2rem;
}

.gallery-controls button {
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-controls button:hover {
    background-color: #d4a017;
}

#imageCounter {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    min-width: 80px;
    text-align: center;
}

/* CONTACT SECTION - UPDATED FOR MOBILE */
.contact-section {
    background-color: #2c3e50;
    padding: 4rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    order: 2; /* Change order for mobile */
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    order: 1; /* Change order for mobile */
}

.contact-form h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    background-color: #E6B422;
    color: #2c3e50;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E6B422;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(230, 180, 34, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* FOOTER */
.footer {
    background-color: #1a252f;
    padding: 3rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-logo img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-social h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E6B422;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #E6B422;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* NAVIGATION STYLES - DESKTOP */
.nav-links{
    list-style: none;
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 101;
}

.nav-links li a{
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links li a:hover{
    color: #E6B422;
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle{
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    position: relative;
    z-index: 1000;
}

/* GALLERY PAGE SPECIFIC STYLES */

/* Navigation for Gallery Page */
.gallery-nav {
    background-color: #2c3e50;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-nav .nav-links li a.active {
    color: #E6B422;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Gallery Header */
.gallery-header {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
                url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px; /* Offset for fixed nav */
}

.gallery-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.gallery-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: #E6B422;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-text {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* GALLERY PARALLAX SECTION */
.gallery-parallax-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #1a252f;
}

.parallax-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Parallax Images for Gallery Page */
.person-gallery {
    position: absolute;
    width: 650px;
    bottom: -100px;
    left: -70px;
    z-index: 20;
}

.mountain1-gallery {
    position: absolute;
    bottom: -100px;
    width: 1500px;
    right: 0;
    z-index: 19;
}

.mountain2-gallery {
    position: absolute;
    width: 1100px;
    bottom: -100px;
    left: 0;
    z-index: 18;
}

.mountain3-gallery {
    position: absolute;
    width: 900px;
    bottom: 150px;
    right: 0;
    z-index: 17;
}

.sky-gallery {
    position: absolute;
    width: 2100px;
    bottom: 250px;
    right: 0;
    z-index: 15;
}

.parallax-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
}

.parallax-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(5, 16, 3, 0.4);
    z-index: -1;
}

.parallax-text {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    z-index: 30;
}

.parallax-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.parallax-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Gallery Filter Section */
.gallery-filter-section {
    background-color: #34495e;
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

.filter-container {
    text-align: center;
}

.filter-container h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: #E6B422;
    color: #2c3e50;
    border-color: #E6B422;
}

/* Main Gallery Section */
.main-gallery-section {
    background-color: #2c3e50;
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item-page {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-page:hover img {
    transform: scale(1.1);
}

.gallery-overlay-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-page:hover .gallery-overlay-page {
    opacity: 1;
}

.gallery-category {
    background-color: #E6B422;
    color: #2c3e50;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.8rem;
    align-self: flex-start;
}

.gallery-title-page {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-date i {
    color: #E6B422;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.load-more-btn {
    padding: 15px 40px;
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background-color: #d4a017;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.load-more-btn i {
    font-size: 1.2rem;
}

/* Video Gallery Section */
.video-gallery-section {
    background-color: #34495e;
    padding: 4rem 0;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-item:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(230, 180, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background-color: #E6B422;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.video-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-duration {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials in Gallery */
.gallery-testimonials {
    background-color: #2c3e50;
    padding: 4rem 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content i.fa-quote-left {
    font-size: 2.5rem;
    color: #E6B422;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-content p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E6B422;
}

.testimonial-author h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-align: left;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: left;
    display: block;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.slider-prev,
.slider-next {
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: #d4a017;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #E6B422;
}

/* Back to Home Section */
.back-to-home {
    background-color: #34495e;
    padding: 4rem 0;
    text-align: center;
}

.back-home-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.back-home-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: #E6B422;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background-color: #d4a017;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.back-home-btn i {
    font-size: 1.2rem;
}

/* Fullscreen Image Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.fullscreen-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background-color: #2c3e50;
    border-radius: 15px;
    overflow: hidden;
}

.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #E6B422;
    cursor: pointer;
    z-index: 2001;
    background-color: rgba(44, 62, 80, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-fullscreen:hover {
    color: #fff;
    background-color: #E6B422;
}

#fullscreenImage {
    width: 100%;
    height: 60vh;
    object-fit: contain;
    background-color: #000;
}

.image-info {
    padding: 2rem;
    color: #fff;
}

.image-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #E6B422;
}

.image-info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.image-meta {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.image-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.image-meta i {
    color: #E6B422;
}

.fullscreen-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.fullscreen-controls button {
    pointer-events: all;
    background-color: rgba(230, 180, 34, 0.8);
    color: #2c3e50;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-controls button:hover {
    background-color: #E6B422;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background-color: #2c3e50;
    border-radius: 15px;
    overflow: hidden;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #E6B422;
    cursor: pointer;
    z-index: 2001;
    background-color: rgba(44, 62, 80, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-video:hover {
    color: #fff;
    background-color: #E6B422;
}

.video-container {
    width: 100%;
    height: 500px;
    background-color: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info-modal {
    padding: 2rem;
    color: #fff;
}

.video-info-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #E6B422;
}

.video-info-modal p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .gallery-title {
        font-size: 3rem;
    }
    
    .gallery-stats {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .video-gallery {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .parallax-text h2 {
        font-size: 3rem;
    }
    
    .parallax-text p {
        font-size: 1.1rem;
    }
    
    .person-gallery {
        width: 550px;
        left: -100px;
    }
    
    .mountain1-gallery {
        width: 1300px;
    }
    
    .mountain2-gallery {
        width: 950px;
    }
    
    .mountain3-gallery {
        width: 750px;
    }
    
    .sky-gallery {
        width: 1800px;
    }
}

@media (max-width: 992px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info {
        order: 2; /* Info comes after form on mobile */
    }
    
    .contact-form {
        order: 1; /* Form comes first on mobile */
    }
}

@media (max-width: 850px) {
    section .container{
        padding: 2rem 20px;
    }
    
    #about .container {
        grid-template-columns: 1fr;
        padding: 2rem 20px;
    }

    /* MOBILE MENU STYLES */
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 10000 !important;
        background-color: rgba(0, 0, 0, 0.9);
        border-radius: 6px;
        padding: 8px 12px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    }

    /* Make hero text non-interactive so menu toggle can be clicked */
    .hero-center, .typing-text, .hero-subtitle, .big-title {
        pointer-events: none;
        user-select: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background-color: rgba(10, 25, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 9999;
        padding-top: 80px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        /* Hide scrollbar but keep scrolling */
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links li:nth-child(6) { transition-delay: 0.6s; }

    .nav-links li a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
        pointer-events: auto;
    }

    .nav-links li a:hover {
        background-color: rgba(230, 180, 34, 0.1);
        padding-left: 2.5rem;
        color: #E6B422;
    }

    /* Overlay when menu is open */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .nav-links.active::before {
        opacity: 1;
        pointer-events: all;
        right: 280px;
        left: -100%;
    }
    
    /* Typing text responsive */
    .typing-text {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .full-gallery-container {
        height: 400px;
    }
    
    .gallery-header {
        padding: 120px 0 60px;
        margin-top: 70px;
    }
    
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-subtitle {
        font-size: 1.1rem;
    }
    
    .gallery-stats {
        gap: 2rem;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .filter-buttons {
        gap: 0.8rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item-page {
        height: 250px;
    }
    
    .video-container {
        height: 400px;
    }
    
    #fullscreenImage {
        height: 50vh;
    }
    
    .gallery-parallax-section {
        height: 80vh;
    }
    
    .parallax-text h2 {
        font-size: 2.5rem;
    }
    
    .parallax-text p {
        font-size: 1rem;
    }
    
    .person-gallery {
        width: 450px;
        left: -120px;
        bottom: -150px;
    }
    
    .mountain1-gallery {
        width: 1100px;
        bottom: -150px;
    }
    
    .mountain2-gallery {
        width: 800px;
        bottom: -150px;
    }
    
    .mountain3-gallery {
        width: 600px;
        bottom: 100px;
    }
    
    .sky-gallery {
        width: 1500px;
        bottom: 200px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-container {
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 1.2rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1.2rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .big-title{
        font-size: 3rem;
    }

    .text{
        font-size: .9rem;
    }

    .title{
        font-size: 1.5rem;
    }

    .hero-subtitle{
        font-size: 0.85rem;
    }

    .logo img{
        height: 40px;
    }
    
    .menu-toggle {
        top: 15px;
        right: 15px;
        padding: 8px 10px;
        font-size: 1.8rem;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        width: 250px;
    }
    
    .typing-text {
        font-size: 1.3rem;
        min-height: 2.2rem;
    }
    
    .vision-mission-container,
    .courses-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .full-gallery-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .full-gallery-container {
        height: 300px;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .gallery-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .stat-item i {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-page {
        height: 280px;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        height: 300px;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    #fullscreenImage {
        height: 40vh;
    }
    
    .image-info {
        padding: 1.5rem;
    }
    
    .image-info h3 {
        font-size: 1.5rem;
    }
    
    .fullscreen-controls button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-parallax-section {
        height: 70vh;
    }
    
    .parallax-text h2 {
        font-size: 2rem;
    }
    
    .parallax-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .person-gallery {
        width: 400px;
        left: -150px;
        bottom: -200px;
    }
    
    .mountain1-gallery {
        width: 900px;
        bottom: -200px;
    }
    
    .mountain2-gallery {
        width: 700px;
        bottom: -200px;
    }
    
    .mountain3-gallery {
        width: 500px;
        bottom: 50px;
    }
    
    .sky-gallery {
        width: 1200px;
        bottom: 150px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-container {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .contact-icon {
        align-self: flex-start;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .submit-btn {
        padding: 12px;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    /* Better spacing for contact items on very small screens */
    .contact-item:nth-child(1) .contact-details p,
    .contact-item:nth-child(2) .contact-details p,
    .contact-item:nth-child(3) .contact-details p,
    .contact-item:nth-child(4) .contact-details p {
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 480px) {
    .typing-text {
        font-size: 1.1rem;
        min-height: 2rem;
    }
    
    .menu-toggle {
        top: 12px;
        right: 12px;
        padding: 6px 8px;
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
    }
    
    .vision-mission-card,
    .course-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .big-title {
        font-size: 2.5rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 80%;
    }
    
    .gallery-item-page {
        height: 250px;
    }
    
    .video-container {
        height: 250px;
    }
    
    .back-home-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    /* Stack contact info vertically for very small screens */
    .contact-info {
        display: flex;
        flex-direction: column;
    }
    
    /* Make form inputs more compact */
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .gallery-parallax-section {
        height: 60vh;
    }
    
    .person-gallery {
        width: 350px;
        left: -180px;
        bottom: -250px;
    }
    
    .mountain1-gallery {
        width: 800px;
        bottom: -250px;
    }
    
    .mountain2-gallery {
        width: 600px;
        bottom: -250px;
    }
    
    .mountain3-gallery {
        width: 450px;
        bottom: 0px;
    }
    
    .sky-gallery {
        width: 1000px;
        bottom: 100px;
    }
}

/* Ensure contact form looks good on all devices */
.contact-form .form-group:last-of-type {
    margin-bottom: 0;
}

/* Ensure contact info items don't get too wide on large screens */
@media(min-width: 1200px) {
    .contact-container {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info {
        max-width: 500px;
    }
    
    .contact-form {
        max-width: 500px;
    }
}

/* Improve form validation styles */
.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.1);
}

/* Loading state for submit button */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #2c3e50;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success message styles */
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background-color: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    border-radius: 10px;
    color: #fff;
    margin-top: 1rem;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-success i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.form-success h4 {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ABOUT PAGE SPECIFIC STYLES */

/* About Institute Section */
.about-section {
    background-color: #445b3f;
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-text h3 {
    color: #E6B422;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #E6B422;
    margin-bottom: 0.5rem;
}

.stat-text {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Chairman's Message Section */
.message-section {
    background-color: #2c3e50;
    padding: 5rem 0;
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.message-image {
    text-align: center;
    position: sticky;
    top: 100px;
}

.message-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.chairman-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chairman-info h4 {
    color: #E6B422;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.chairman-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.message-text {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: #E6B422;
    opacity: 0.3;
}

.message-text h3 {
    color: #E6B422;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-left: 50px;
}

.message-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.signature {
    color: #E6B422 !important;
    font-weight: 600;
    margin-top: 2rem !important;
}

.signature-block {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-block p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 0.3rem !important;
}

.signature-block p:first-child {
    color: #E6B422 !important;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    background-color: #34495e;
    padding: 5rem 0;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: #E6B422;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.value-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.value-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Responsive adjustments for 8 cards */
@media (max-width: 1200px) {
    .values-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        min-height: auto;
    }
}

/* Team Section */
.team-section {
    background-color: #2c3e50;
    padding: 5rem 0;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    color: #E6B422;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.team-qualification,
.team-experience,
.team-specialty {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-qualification:before {
    content: "🎓";
}

.team-experience:before {
    content: "⏱️";
}

.team-specialty:before {
    content: "⭐";
}

/* Accreditations Section */
.accreditations-section {
    background-color: #34495e;
    padding: 5rem 0;
}

.accreditations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.accreditation-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accreditation-item:hover {
    transform: translateY(-5px);
}

.accreditation-icon {
    font-size: 2.5rem;
    color: #E6B422;
    margin-bottom: 1.5rem;
}

.accreditation-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.accreditation-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Call to Action */
.about-cta {
    background: linear-gradient(135deg, #445b3f, #2c3e50);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background-color: #E6B422;
    color: #2c3e50;
}

.cta-btn.primary:hover {
    background-color: #d4a017;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #E6B422;
}

.cta-btn.secondary:hover {
    background-color: #E6B422;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .about-content,
    .message-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .message-image {
        position: static;
        text-align: center;
    }
    
    .message-image img {
        max-width: 250px;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-item:before {
        left: 10px;
    }
    
    .timeline-year {
        left: 0;
        top: -5px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .achievement-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-container,
    .team-container,
    .accreditations-container {
        grid-template-columns: 1fr;
    }
    
    .message-text {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-text h3,
    .message-text h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-year {
        font-size: 1rem;
        padding: 3px 10px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
}

/* COURSES PAGE SPECIFIC STYLES */

/* Courses Overview Section */
.courses-overview {
    background-color: #445b3f;
    padding: 5rem 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.overview-text h3 {
    color: #E6B422;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.overview-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature i {
    font-size: 2rem;
    color: #E6B422;
    margin-bottom: 1rem;
    display: block;
}

.feature h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* All Courses Section */
.all-courses-section {
    background-color: #2c3e50;
    padding: 5rem 0;
}

.course-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.category-btn.active {
    background-color: #E6B422;
    color: #2c3e50;
    border-color: #E6B422;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card-detailed {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #E6B422;
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.course-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.9), rgba(44, 62, 80, 0.9));
}

.course-icon {
    width: 60px;
    height: 60px;
    background-color: #E6B422;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #2c3e50;
    flex-shrink: 0;
}

.course-title-section {
    flex-grow: 1;
}

.course-title-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.course-level {
    display: inline-block;
    padding: 3px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #E6B422;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.course-body {
    padding: 1.5rem 2rem;
}

.course-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.detail i {
    color: #E6B422;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.detail span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.course-features-detailed h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-features-detailed ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.course-features-detailed li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.course-features-detailed i {
    color: #E6B422;
    margin-top: 3px;
    flex-shrink: 0;
}

.course-pricing {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.original-price {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.current-price {
    color: #E6B422;
    font-size: 2rem;
    font-weight: 700;
}

.per-month {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: block;
}

.course-footer {
    padding: 1.5rem 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 1rem;
}

.enroll-btn, .details-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.enroll-btn {
    background-color: #E6B422;
    color: #2c3e50;
}

.enroll-btn:hover {
    background-color: #d4a017;
    transform: translateY(-2px);
}

.details-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.details-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #E6B422;
}

/* Comparison Table Section */
.comparison-section {
    background-color: #34495e;
    padding: 5rem 0;
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background-color: #E6B422;
    color: #2c3e50;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 3px solid #2c3e50;
}

.comparison-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.comparison-table tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Methodology Section */
.methodology-section {
    background-color: #2c3e50;
    padding: 5rem 0;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    background-color: #E6B422;
    color: #2c3e50;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #34495e;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 2rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2.5rem;
    color: #E6B422;
    opacity: 0.3;
}

.testimonial-content p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    padding-left: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #E6B422;
}

.testimonial-author h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

/* Enrollment CTA */
.enrollment-cta {
    background: linear-gradient(135deg, #445b3f, #2c3e50);
    padding: 5rem 0;
    text-align: center;
}

.enrollment-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.enrollment-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: #E6B422;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0 auto 1.5rem;
}

.enrollment-step h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.enrollment-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    justify-content: center;
}

.cta-btn.primary {
    background-color: #E6B422;
    color: #2c3e50;
}

.cta-btn.primary:hover {
    background-color: #d4a017;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #E6B422;
}

.cta-btn.secondary:hover {
    background-color: #E6B422;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Course Detail Modal */
.course-detail-modal,
.enrollment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.course-detail-modal .modal-content,
.enrollment-modal .modal-content {
    background-color: #2c3e50;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.course-detail-modal .modal-content::-webkit-scrollbar,
.enrollment-modal .modal-content::-webkit-scrollbar {
    display: none;
}

.course-detail-modal .close-modal,
.enrollment-modal .close-enrollment-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #E6B422;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
    background-color: rgba(44, 62, 80, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-detail-modal .close-modal:hover,
.enrollment-modal .close-enrollment-modal:hover {
    color: #fff;
    background-color: #E6B422;
}

#modalCourseContent h2 {
    font-size: 2rem;
    color: #E6B422;
    margin-bottom: 1.5rem;
    padding-right: 40px;
}

#modalCourseContent h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

#modalCourseContent h4 {
    font-size: 1.2rem;
    color: #E6B422;
    margin: 1.5rem 0 1rem;
}

#modalCourseContent p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    color: #E6B422;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.course-structure {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.module {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.module:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.module h5 {
    color: #E6B422;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.module ul {
    list-style: none;
    padding-left: 1.5rem;
}

.module li {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    position: relative;
}

.module li:before {
    content: "•";
    color: #E6B422;
    position: absolute;
    left: -1rem;
}

.materials-list {
    list-style: none;
    padding-left: 0;
}

.materials-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.materials-list i {
    color: #E6B422;
}

.modal-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.enroll-from-modal {
    padding: 15px 40px;
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enroll-from-modal:hover {
    background-color: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enrollment Form */
.enrollment-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E6B422;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(230, 180, 34, 0.2);
}

.submit-enrollment {
    width: 100%;
    padding: 15px;
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-enrollment:hover {
    background-color: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-image {
        order: -1;
    }
    
    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enrollment-steps {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .enrollment-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .enrollment-step {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .course-footer {
        flex-direction: column;
    }
    
    .comparison-table-container {
        padding: 0.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .course-detail-modal .modal-content,
    .enrollment-modal .modal-content {
        padding: 1.5rem;
    }
    
    .modal-features {
        grid-template-columns: 1fr;
    }
}

/* CONTACT PAGE SPECIFIC STYLES */

/* Contact Info Section */
.contact-info-section {
    background-color: #445b3f;
    padding: 5rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    background-color: #E6B422;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-action {
    margin-top: auto;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #E6B422;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-link:hover {
    background-color: #E6B422;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    background-color: #2c3e50;
    padding: 5rem 0;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

#academyMap {
    height: 400px;
    width: 100%;
    border-radius: 10px;
}

.map-info {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.map-info h3 {
    color: #E6B422;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.map-info strong {
    color: #fff;
    font-weight: 600;
}

.transport-options {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.transport-options h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.transport-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.transport-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.transport-icon i {
    color: #E6B422;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #34495e;
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-detailed {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-half {
    flex: 1;
}

.form-group-full {
    width: 100%;
}

.contact-form-detailed label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.contact-form-detailed label i {
    color: #E6B422;
    font-size: 1.1rem;
}

.contact-form-detailed input,
.contact-form-detailed select,
.contact-form-detailed textarea {
    width: 100%;
    padding: 14px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form-detailed input:focus,
.contact-form-detailed select:focus,
.contact-form-detailed textarea:focus {
    outline: none;
    border-color: #E6B422;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(230, 180, 34, 0.1);
}

.contact-form-detailed input::placeholder,
.contact-form-detailed textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.file-upload {
    margin-top: 1rem;
}

.file-upload input[type="file"] {
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
}

.file-upload input[type="file"]:hover {
    border-color: #E6B422;
}

.file-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #E6B422;
    border-color: #E6B422;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2c3e50;
    font-size: 12px;
    font-weight: bold;
}

.privacy-link {
    color: #E6B422;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.submit-btn,
.reset-btn {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn {
    background-color: #E6B422;
    color: #2c3e50;
}

.submit-btn:hover {
    background-color: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reset-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.reset-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card h3 {
    color: #E6B422;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: #E6B422;
}

.quick-link i {
    font-size: 1.5rem;
    color: #E6B422;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-link div {
    flex-grow: 1;
}

.quick-link strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.quick-link span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.response-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.response-item i {
    font-size: 1.5rem;
    color: #E6B422;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.response-item strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.response-item span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.info-list li:before {
    content: "•";
    color: #E6B422;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Appointment Section */
.appointment-section {
    background-color: #2c3e50;
    padding: 5rem 0;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.appointment-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.appointment-info h3 {
    color: #E6B422;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.appointment-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
}

.appointment-info li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.appointment-info li i {
    color: #E6B422;
    margin-top: 3px;
    flex-shrink: 0;
}

.consultation-types {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.consultation-types h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.type-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.type-option {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.type-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #E6B422;
}

.type-option i {
    font-size: 2rem;
    color: #E6B422;
    margin-bottom: 1rem;
    display: block;
}

.type-option h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.type-option p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.appointment-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.appointment-form .form-group {
    margin-bottom: 1.5rem;
}

.appointment-form label {
    display: block;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 14px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #E6B422;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(230, 180, 34, 0.1);
}

.appointment-submit {
    width: 100%;
    padding: 16px;
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.appointment-submit:hover {
    background-color: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    background-color: #34495e;
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #E6B422;
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #E6B422;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.5;
}

.faq-answer li:before {
    content: "•";
    color: #E6B422;
    position: absolute;
    left: -1rem;
    font-size: 1.2rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.faq-cta a {
    color: #E6B422;
    text-decoration: none;
    font-weight: 600;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* Branches Section */
.branches-section {
    background-color: #2c3e50;
    padding: 5rem 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.branch-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.branch-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #E6B422;
}

.branch-header {
    background: linear-gradient(135deg, #E6B422, #d4a017);
    padding: 2rem;
    text-align: center;
}

.branch-header i {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: block;
}

.branch-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.branch-info {
    padding: 2rem;
}

.branch-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.branch-info i {
    color: #E6B422;
    margin-top: 3px;
    flex-shrink: 0;
}

.branch-link {
    display: block;
    text-align: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: #E6B422;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.branch-link:hover {
    background-color: #E6B422;
    color: #2c3e50;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.success-modal .modal-content {
    background-color: #2c3e50;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.success-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
}

.success-modal h3 {
    color: #2ecc71;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-modal p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.close-success-modal {
    padding: 12px 40px;
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success-modal:hover {
    background-color: #d4a017;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Contact Info */
.footer-contact {
    margin-top: 1.5rem;
}

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

.footer-contact i {
    color: #E6B422;
    margin-top: 3px;
    flex-shrink: 0;
}

.newsletter-title {
    margin-top: 2rem;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 5px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: #E6B422;
    color: #2c3e50;
    border: none;
    width: 45px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #d4a017;
}

.footer-bottom a {
    color: #E6B422;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-sidebar {
        order: -1;
    }
}

@media (max-width: 992px) {
    .map-container,
    .appointment-container {
        grid-template-columns: 1fr;
    }
    
    .type-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* CONTACT PAGE SPECIFIC STYLES - MOBILE FIXES */

/* Contact Form Section - Mobile Fixes */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .form-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .contact-form-detailed {
        padding: 1.5rem;
        width: 100%;
        order: 1; /* Form comes after sidebar on mobile */
    }
    
    .form-sidebar {
        order: -1; /* Sidebar comes first on mobile */
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group-half,
    .form-group-full {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .contact-form-detailed label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form-detailed input,
    .contact-form-detailed select,
    .contact-form-detailed textarea {
        padding: 12px;
        font-size: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-submit {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .submit-btn,
    .reset-btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
    
    /* Fix file upload on mobile */
    .file-upload input[type="file"] {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
    
    /* Fix checkboxes on mobile */
    .checkbox-label {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-top: 3px;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .contact-form-detailed {
        padding: 1.2rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-form-detailed label {
        font-size: 0.95rem;
    }
    
    .contact-form-detailed label i {
        font-size: 1rem;
    }
    
    /* Improve select dropdown appearance on mobile */
    .contact-form-detailed select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E6B422' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 15px;
        padding-right: 45px;
    }
    
    /* Fix textarea height */
    .contact-form-detailed textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    /* Fix form sidebar cards */
    .sidebar-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .quick-link {
        padding: 12px;
    }
    
    .quick-link i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .quick-link strong {
        font-size: 0.95rem;
    }
    
    .quick-link span {
        font-size: 0.85rem;
    }
    
    .response-item {
        gap: 12px;
    }
    
    .response-item i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .info-list li {
        font-size: 0.95rem;
        padding-left: 1.2rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-form-detailed {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .form-submit {
        gap: 0.8rem;
    }
    
    .submit-btn,
    .reset-btn {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    /* Fix spacing for very small screens */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form-detailed label {
        margin-bottom: 0.4rem;
    }
    
    /* Better spacing between form groups */
    .form-row:not(:last-child) {
        margin-bottom: 1.2rem;
    }
    
    /* Improve checkbox label wrapping */
    .checkbox-label {
        align-items: flex-start;
    }
    
    .checkbox-label span:not(.checkmark) {
        flex: 1;
        word-wrap: break-word;
    }
}

/* Additional fixes for the entire contact page on mobile */
@media (max-width: 768px) {
    /* Contact Info Section */
    .contact-info-section {
        padding: 3rem 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.3rem;
    }
    
    .action-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Map Section */
    .map-section {
        padding: 3rem 0;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #academyMap {
        height: 300px;
    }
    
    .map-info {
        padding: 1.5rem;
    }
    
    .map-info h3 {
        font-size: 1.3rem;
    }
    
    /* Appointment Section */
    .appointment-section {
        padding: 3rem 0;
    }
    
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appointment-info,
    .appointment-form {
        padding: 1.5rem;
    }
    
    .type-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .type-option {
        padding: 1.2rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 2rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1rem;
    }
    
    /* Branches Section */
    .branches-section {
        padding: 3rem 0;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .branch-card {
        padding: 0;
    }
    
    .branch-header {
        padding: 1.5rem;
    }
    
    .branch-info {
        padding: 1.5rem;
    }
}

/* Fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    .contact-form-detailed input,
    .contact-form-detailed select,
    .contact-form-detailed textarea {
        font-size: 16px; /* Prevent zoom on focus in iOS */
    }
    
    .contact-form-detailed input:focus,
    .contact-form-detailed select:focus,
    .contact-form-detailed textarea:focus {
        font-size: 16px;
    }
}

/* Fix for Android devices */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .contact-form-detailed select {
        background-image: none;
        padding-right: 15px;
    }
}

/* Ensure proper touch targets for mobile */
@media (max-width: 768px) {
    .submit-btn,
    .reset-btn,
    .action-link,
    .quick-link,
    .branch-link,
    .type-option,
    .faq-question {
        min-height: 44px; /* Minimum touch target size */
    }
    
    .contact-form-detailed input[type="checkbox"] + .checkmark {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Improve form field spacing on very small screens */
@media (max-width: 360px) {
    .contact-form-detailed {
        padding: 0.8rem;
    }
    
    .form-row {
        gap: 0.8rem;
    }
    
    .contact-form-detailed input,
    .contact-form-detailed select,
    .contact-form-detailed textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .submit-btn,
    .reset-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
    }
}

