/* styles.css - Main Stylesheet for Tikara Karate Club */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: white;
    line-height: 1.6;
}
.full-width-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(30, 60, 114, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4fc3f7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover, .nav-links a.active {
    color: #4fc3f7;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section (Home Page) */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active-slide {
    opacity: 1;
}

.slide1 { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(30,60,114,0.5)), 
                url('p1.jpg'); 
    background-size: cover;
    background-position: center 15%;
}

.slide2 { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(30,60,114,0.5)), 
                url('p2.jpg'); 
    background-size: cover;
    background-position: center 15%;
}

.slide3 { 
    background: linear-gradient(rgba(0,0,0,0.5), rgba(30,60,114,0.5)), 
                url('p3.jpg'); 
    background-size: cover;
    background-position: center 15%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.cta-btn {
    background: linear-gradient(45deg, #1e3c72, #4fc3f7);
    color: white;
    margin-top: 30px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
}

/* Section Styling */
.section {
    padding: 4rem 0;
}

.section-title {
    color: #4fc3f7;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
}


/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2 {
    color: #4fc3f7;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.about-text-2 p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}  
.about-text-2 h2 {
    color: #4fc3f7;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    
}


.about-image {
    background: linear-gradient(45deg, #1e3c72, #4fc3f7);
    height: 500px;
    width: 600px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.about-image-2 {
    background: linear-gradient(45deg, #1e3c72, #4fc3f7);
    height: 350px; 
    max-width: 350px; 
    margin-left: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 10px;
}

.slideshow-img.active {
    opacity: 1;
}

/* Ensure the slideshow container fills the about-image box completely */
.image-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}


.gallery-section {
    margin-top: 4rem;
    background: #111;
    padding: 3rem;
    border-radius: 10px;
}

.gallery-section h3 {
    color: #4fc3f7;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.photo-gallery {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 25px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }


.gallery-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dot.active {
    background: #4fc3f7;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-arrow:hover {
    background: rgba(79, 195, 247, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.prev {
    left: 20px;
}

.gallery-arrow.next {
    right: 20px;
}

.gallery-caption {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.gallery-caption h4 {
    color: #4fc3f7;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-caption p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}




/* Classes Grid */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.class-card {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}
.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 3rem;
}

.location-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
    border-radius: 24px 24px 0 0;
}

.location-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
    z-index: -1;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
    border-color: rgba(96, 165, 250, 0.3);
}

.location-card:hover::after {
    top: -25%;
    right: -25%;
    opacity: 1;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.3);
}

.location-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #183b6c;
}

.location-info .address {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 400;
    color: #6b7280;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover::before {
    opacity: 1;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    transition: all 0.3s ease;
}

.location-features {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.class-card:hover {
    transform: translateY(-5px);
}

.class-card h3 {
    color: #4fc3f7;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.class-card p {
    margin-bottom: 0.5rem;
}

/* Timetable */
.timetable {
    width: 100%;
    margin: 0 auto;
    background: #111;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
}

.timetable h3 {
    color: #4fc3f7;
    margin-bottom: 2rem;
    text-align: center;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.schedule-table th, .schedule-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #333;
}

.schedule-table th {
    background: linear-gradient(45deg, #1e3c72, #4fc3f7);
    color: white;
}

.schedule-table td {
    background: #222;
}

/* Booking Form */
.booking-section {
    padding: 2rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
}

.booking-form h2 {
    color: #4fc3f7;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4fc3f7;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    background: #222;
    color: white;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #4fc3f7;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #1e3c72, #4fc3f7);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #111;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4fc3f7;
    margin-bottom: 1rem;
}
.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;

}
.social-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 50px; 
  height: 50px;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #4fc3f7;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #4fc3f7;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #4fc3f7;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border: 1px solid #4fc3f7;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4fc3f7;
    color: #000;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-form-container {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
}

.contact-form {
    background: #111;
    padding: 2rem;
    border-radius: 10px;
}

.contact-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #222;
    border-radius: 5px;
    font-size: 0.9rem;
}

.contact-note p {
    margin-bottom: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Events Page Styles */
.no-events-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.no-events-box {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.no-events-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-events-box h2 {
    color: #4fc3f7;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-events-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cta-link {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: bold;
}

.cta-link:hover {
    text-decoration: underline;
}
/* Creative Timeline Events Section */
.events-timeline-section {
    background: radial-gradient(circle at 20% 50%, rgba(30, 60, 114, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(79, 195, 247, 0.2) 0%, transparent 50%),
                #0a0a0a;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.events-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(79,195,247,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(79,195,247,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(79,195,247,0.1)"/><circle cx="90" cy="10" r="1" fill="rgba(79,195,247,0.1)"/><circle cx="10" cy="90" r="1" fill="rgba(79,195,247,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.timeline-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #4fc3f7, #1e88e5, #4fc3f7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.karate-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.timeline-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 300;
}

.calendar-disclaimer {
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #4fc3f7 10%, 
        #1e88e5 50%, 
        #4fc3f7 90%, 
        transparent 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.5);
}

.timeline-event {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 0.8s ease-out forwards;
}

.timeline-event:nth-child(2) { animation-delay: 0.2s; }
.timeline-event:nth-child(3) { animation-delay: 0.4s; }
.timeline-event:nth-child(4) { animation-delay: 0.6s; }
.timeline-event:nth-child(5) { animation-delay: 0.8s; }
.timeline-event:nth-child(6) { animation-delay: 1s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-event.left {
    text-align: right;
    padding-right: calc(50% + 3rem);
}

.timeline-event.right {
    text-align: left;
    padding-left: calc(50% + 3rem);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(79, 195, 247, 0.1) 0%, 
        rgba(30, 136, 229, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(79, 195, 247, 0.4);
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-event.highlight .timeline-content {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(79, 195, 247, 0.05) 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

.event-badge {
    position: absolute;
    top: -10px;
    left: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-badge.international {
    margin-top: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
}

.event-badge.local {
    margin-top: 20px;
    background: linear-gradient(45deg, #4fc3f7, #1e88e5);
    color: white;
}

.event-badge.world-cup {
    margin-top: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.timeline-date {
    font-size: 2rem;
    font-weight: 800;
    color: #4fc3f7;
    margin: 1rem 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(79, 195, 247, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
}

.location-flag {
    font-size: 1.2rem;
}

.participants-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.participants-tag.sport-group {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.participants-tag.all-members {
    background: rgba(79, 195, 247, 0.2);
    color: #4fc3f7;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

.event-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4fc3f7, #1e88e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.6);
    z-index: 10;
}

.timeline-marker.highlight-marker {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
    to { box-shadow: 0 0 50px rgba(255, 215, 0, 0.8); }
}

.marker-inner {
    font-size: 1.5rem;
    color: white;
}

.timeline-marker.highlight-marker .marker-inner {
    color: #000;
}

.timeline-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(79, 195, 247, 0.1) 0%, 
        rgba(30, 136, 229, 0.05) 100%);
    border-radius: 25px;
    border: 1px solid rgba(79, 195, 247, 0.2);
}

.cta-content h3 {
    font-size: 2rem;
    color: #4fc3f7;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.timeline-cta-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #4fc3f7, #1e88e5);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
}

.timeline-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(79, 195, 247, 0.4);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.timeline-cta-btn:hover .btn-shine {
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}
.seminar-section {
    background: #111;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.seminar-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.seminar-image {
    position: sticky;
    top: 100px;
}

.seminar-photo {
    background: linear-gradient(135deg, #1e3c72, #4fc3f7);
    border-radius: 10px;
    overflow: hidden;
}

.coach-image {
    height: 400px;
    padding: 2rem;
    text-align: center;
    color: white;
    background:url('IMG_1.JPG');
    background-size: cover;
    background-position: center 15%;
}



.seminar-info {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    color: #4fc3f7;
    font-weight: bold;
    min-width: 120px;
    margin-right: 1rem;
}

.info-value {
    flex: 1;
}

.seminar-highlights {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.highlights-list {
    list-style: none;
    padding-left: 0;
}

.highlights-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.highlights-list li:before {
    content: "🥋";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.coach-bio {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.seminar-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e3c72, #4fc3f7);
    border-radius: 10px;
    margin-top: 2rem;
}

.stay-updated-section {
    background: #111;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.update-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.update-card {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.update-card h3 {
    color: #4fc3f7;
    margin-bottom: 1rem;
}

.update-card p {
    margin-bottom: 1.5rem;
}

.update-card .cta-btn {
    margin-top: 1rem;
}

.camp-section {
    background: #111;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    position: relative;
}

.camp-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.camp-images, .camp-images-right {
    position: sticky;
    top: 100px;
}

.camp-image-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.camp-photo {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.camp-photo:hover {
    transform: scale(1.05);
}

.camp-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.camp-img-2 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.camp-img:hover {
    filter: brightness(1.1);
}

/* Camp info styling - similar to seminar */
.camp-info {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.camp-highlights {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.camp-focus {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.camp-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e3c72, #4fc3f7);
    border-radius: 10px;
    margin-top: 2rem;
}

.seminar-section, .camp-section {
    position: relative;
    z-index: 1;
}

.feedback-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.feedback-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.feedback-bubble:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.seminar-feedback .bubble-1 {
    top: 270px;
    left: -70px;
}

.seminar-feedback .bubble-2 {
    top: 30px;
    right: -80px;
}

.seminar-feedback .bubble-3 {
    bottom: 150px;
    left: -90px;
}

.seminar-feedback .bubble-4 {
    bottom: 90px;
    right: -90px;
}

/* Specific positioning for camp feedback bubbles */
.camp-feedback .bubble-5 {
    top: 70px;
    left: -80px;
}

.camp-feedback .bubble-6 {
    top: 250px;
    right: -80px;
}

.camp-feedback .bubble-7 {
    bottom: 200px;
    left: -80px;
}

.camp-feedback .bubble-8 {
    bottom: 120px;
    right: -80px;
}

/* Remove sticky positioning from images */
.seminar-image, .camp-images, .camp-images-right {
    position: static;
    top: auto;
}

/* Speech bubble tails */
.feedback-bubble::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}
.bubble-1::before, .bubble-3::before, .bubble-5::before, .bubble-7::before {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.bubble-2::before, .bubble-4::before, .bubble-6::before, .bubble-8::before {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 8px 8px 0;
    border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
}

.reviewer-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-left: -10px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #4fc3f7;
    background-color : grey;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-content {
    flex: 1;
    min-width: 0;
}

.feedback-content h4 {
    color: #1e3c72;
    font-size:0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feedback-content p {
    color: #333;
    font-size: 0.65rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}
/* Mobile-Responsive CSS for Tikara Karate Club - Add to existing styles.css */

/* Mobile Styles - 390px width target */
@media screen and (max-width: 480px) {
    
    /* Base Reset for Mobile */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Arial', sans-serif;
        background-color: #000;
        color: white;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Container adjustments */
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .full-width-section {
        width: 100%;
        margin: 0;
        padding: 0 15px;
    }

    /* Header Mobile */
    header {
        background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
        padding: 0.8rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(30, 60, 114, 0.3);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .logo {
        font-size: 1.3rem;
        font-weight: bold;
        color: #4fc3f7;
    }

    /* Mobile Navigation */
    /* Mobile Navigation */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.nav-links.mobile-active {
    right: 0;
}

.nav-links li {
    width: 100%;
    text-align: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px;
    display: block;
    width: 100%;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
}
    /* Main Content */
    main {
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }

    /* Hero Section Mobile */
    .hero {
        position: relative;
        height: 70vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slideshow-container {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        background-size: cover;
        background-position: center;
    }

    .slide.active-slide {
        opacity: 1;
    }

    .slide1,
    .slide2,
    .slide3 {
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    }

    .cta-btn {
        background: linear-gradient(45deg, #1e3c72, #4fc3f7);
        color: white;
        margin-top: 20px;
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.3s;
        text-decoration: none;
        display: inline-block;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
    }

    /* Section Styling Mobile */
    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        color: #4fc3f7;
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    /* Classes Grid Mobile */
    .classes-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .class-card {
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        padding: 1.5rem;
        border-radius: 10px;
        text-align: center;
        transition: transform 0.3s;
    }

    .class-card:hover {
        transform: translateY(-5px);
    }

    .class-card h3 {
        color: #4fc3f7;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* About Page Mobile */
    .about-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .about-text h2 {
        color: #4fc3f7;
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .about-text p {
        font-size: 0.7rem;
        margin-bottom: 1rem;
        text-align: justify;
        margin-left: 10px;
        margin-right: 10px;
    }
.about-text-2 p {
    font-size: 0.8rem;
        margin-bottom: 1rem;
        margin-left: 0px;
        margin-right: 0px;
}  
.about-text-2 h2 {
    color: #4fc3f7;
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-right: 0px;
}
.about-text-2 h4 {
    color: #4fc3f7;
    font-size: 4rem;
    margin-bottom: 1rem;
    margin-right: 0px;
}

    .about-image {
        background: linear-gradient(45deg, #1e3c72, #4fc3f7);
        height: 300px;
        width: 100%;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        text-align: center;
        padding: 0;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
    }
.image-2 {
        height: 100px;
        width: 230px;
        padding: 0;
        margin-right: 20px;
    }

    .image-slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        overflow: hidden;
    }

    .slideshow-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        border-radius: 10px;
    }

    .slideshow-img.active {
        opacity: 1;
    }

    /* Gallery Section Mobile */
    .gallery-section {
        margin-top: 2rem;
        background: #111;
        padding: 2rem 1rem;
        border-radius: 10px;
    }

    .gallery-section h3 {
        color: #4fc3f7;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .photo-gallery {
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 15px;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .gallery-container {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .gallery-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .gallery-arrow.prev {
        left: 10px;
    }

    .gallery-arrow.next {
        right: 10px;
    }

    .gallery-nav {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .gallery-dot {
        width: 2px;
        height: 2px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .gallery-dot.active {
        background: #4fc3f7;
        transform: scale(1.2);
    }

    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
        color: white;
        padding: 15px;
        text-align: center;
    }

    .gallery-caption h4 {
        color: #4fc3f7;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .gallery-caption p {
        margin: 0;
        font-size: 0.8rem;
        opacity: 0.9;
    }

    /* Timetable Mobile */
    .timetable {
        width: 100%;
        margin: 0 auto;
        background: #111;
        border-radius: 10px;
        padding: 1rem 0.5rem;
        margin-top: 2rem;
        overflow-x: auto;
    }

    .timetable h3 {
        color: #4fc3f7;
        margin-bottom: 1.5rem;
        text-align: center;
        font-size: 1.0rem;
    }

    .schedule-table {
        width: 20%;
        border-collapse: collapse;
        min-width: 500px;
        font-size: 0.8rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px 4px;
        text-align: center;
        border: 1px solid #333;
        word-wrap: break-word;
    }

    .schedule-table th {
        background: linear-gradient(45deg, #1e3c72, #4fc3f7);
        color: white;
        font-size: 0.7rem;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .schedule-table td {
        background: #222;
        font-size: 0.5rem;
    }

    /* Locations Mobile */
    .locations-container {
        max-width: 100%;
        margin: 2rem auto 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }

    .location-card {
        position: relative;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    }

    .location-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .location-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #60a5fa, #a78bfa);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }

    .location-info h2 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #4fc3f7;
    }

    .location-info .address {
        font-size: 0.9rem;
        opacity: 0.7;
        font-weight: 400;
        color: #6b7280;
    }

    .map-container {
        border-radius: 15px;
        overflow: hidden;
        margin-top: 1.5rem;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    }

    .map-container iframe {
        width: 100%;
        height: 250px;
        border: 0;
    }

    /* Booking Form Mobile */
    .booking-section {
        padding: 1.5rem 0;
        max-width: 100%;
        margin: 0 auto;
    }

    .booking-form {
        background: #111;
        padding: 1.5rem;
        border-radius: 10px;
        margin: 0 15px;
    }

    .booking-form h2 {
        color: #4fc3f7;
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #4fc3f7;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #333;
        background: #222;
        color: white;
        border-radius: 5px;
        font-family: inherit;
        font-size: 1rem;
    }

    .form-group textarea {
        height: 80px;
        resize: vertical;
    }

    .submit-btn {
        width: 100%;
        background: linear-gradient(45deg, #1e3c72, #4fc3f7);
        color: white;
        padding: 15px;
        border: none;
        border-radius: 5px;
        font-size: 1.1rem;
        cursor: pointer;
        transition: transform 0.3s;
    }

    /* Contact Page Mobile */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .contact-info {
        background: #111;
        padding: 1.5rem;
        border-radius: 10px;
        order: 1;
    }

    .contact-form-container {
        background: #111;
        padding: 1.5rem;
        border-radius: 10px;
        order: 2;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #333;
    }

    .contact-icon {
        font-size: 1.3rem;
        margin-right: 1rem;
        width: 35px;
        flex-shrink: 0;
    }

    .contact-details h3 {
        color: #4fc3f7;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }

    .social-links {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }

    .social-link {
        color: #4fc3f7;
        text-decoration: none;
        padding: 0.3rem 0.6rem;
        border: 1px solid #4fc3f7;
        border-radius: 15px;
        font-size: 0.8rem;
        transition: all 0.3s;
    }

    .map-placeholder {
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        padding: 1.5rem;
        border-radius: 10px;
        text-align: center;
    }

    /* FAQ Grid Mobile */
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        background: #222;
        padding: 1.2rem;
        border-radius: 8px;
    }

    .faq-item h3 {
        color: #4fc3f7;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    /* Events Timeline Mobile */
    .events-timeline-section {
        background: radial-gradient(circle at 20% 50%, rgba(30, 60, 114, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(79, 195, 247, 0.2) 0%, transparent 50%),
                    #0a0a0a;
        padding: 2rem 1rem;
        border-radius: 15px;
        margin-bottom: 2rem;
        position: relative;
        overflow: hidden;
    }

    .timeline-header h2 {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(45deg, #4fc3f7, #1e88e5, #4fc3f7);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 3s ease-in-out infinite;
        margin-bottom: 1rem;
        text-align: center;
    }

    .timeline-subtitle {
        font-size: 1rem;
        color: #e0e0e0;
        font-weight: 300;
        text-align: center;
    }

    .timeline-container {
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }

    .timeline-line {
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom,
            transparent 0%,
            #4fc3f7 10%,
            #1e88e5 50%,
            #4fc3f7 90%,
            transparent 100%);
        box-shadow: 0 0 15px rgba(79, 195, 247, 0.5);
    }

    .timeline-event {
        position: relative;
        margin-bottom: 3rem;
        padding-left: 70px;
        opacity: 0;
        transform: translateY(30px);
        animation: slideIn 0.8s ease-out forwards;
    }

    .timeline-event.left,
    .timeline-event.right {
        text-align: left;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-content {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(79, 195, 247, 0.2);
        border-radius: 15px;
        padding: 1.5rem;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .timeline-marker {
        position: absolute;
        left: 15px;
        top: 1.5rem;
        width: 40px;
        height: 40px;
        background: linear-gradient(45deg, #4fc3f7, #1e88e5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 20px rgba(79, 195, 247, 0.6);
        z-index: 10;
    }

    .marker-inner {
        font-size: 1.2rem;
        color: white;
    }

    .timeline-date {
        font-size: 1.3rem;
        font-weight: 800;
        color: #4fc3f7;
        margin: 0.5rem 0;
        text-shadow: 0 0 15px rgba(79, 195, 247, 0.3);
    }

    .timeline-content h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.8rem;
    }

    .event-badge {
        position: absolute;
        top: -8px;
        left: 1rem;
        padding: 0.2rem 0.8rem;
        border-radius: 15px;
        font-size: 0.6rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .event-location {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        color: #e0e0e0;
    }

    .participants-tag {
        display: inline-block;
        padding: 0.3rem 0.8rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
    }

    .event-description {
        font-size: 0.8rem;
        color: #ccc;
        line-height: 1.5;
    }

    /* Seminar/Camp Sections Mobile */
    .seminar-section,
    .camp-section {
        background: #111;
        padding: 2rem 1rem;
        border-radius: 10px;
        margin-bottom: 2rem;
        position: relative;
    }

    .seminar-section h2,
    .camp-section h2 {
        color: #4fc3f7;
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }

    .seminar-content,
    .camp-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .seminar-image,
    .camp-images,
    .camp-images-right {
        order: -1;
    }

    .coach-image {
        height: 250px;
        padding: 1rem;
        text-align: center;
        color: white;
        background: url('IMG_1.JPG');
        background-size: cover;
        background-position: center 15%;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .camp-image-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .camp-img,
    .camp-img-2 {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
    }

    .seminar-info,
    .camp-info {
        background: #222;
        padding: 1.2rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }

    .info-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 0.8rem;
        align-items: flex-start;
    }

    .info-label {
        color: #4fc3f7;
        font-weight: bold;
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    .seminar-highlights,
    .camp-highlights {
        background: #222;
        padding: 1.2rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }

    .highlights-list li {
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    /* Feedback Bubbles - Hide on Mobile */
    .feedback-bubbles {
        display: none;
    }

    /* Footer Mobile */
    footer {
        background: #111;
        padding: 2rem 0;
        text-align: center;
        margin-top: 2rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }

    .footer-section h3 {
        color: #4fc3f7;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .footer-section p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .social-icon img {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 1rem;
        font-size: 0.8rem;
    }

    /* Utility Classes for Mobile */
    .mobile-hidden {
        display: none !important;
    }

    .mobile-center {
        text-align: center !important;
    }

    .mobile-full-width {
        width: 100% !important;
    }

    /* Touch-friendly buttons */
    button,
    .cta-btn,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve touch targets */
    .gallery-arrow,
    .gallery-dot,
    .nav-links a {
        min-height: 10px;
        min-width: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Very small screens (under 350px) */
@media screen and (max-width: 350px) {
    .container,
    .full-width-section {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .timeline-header h2 {
        font-size: 1.5rem;
    }

    .schedule-table {
        min-width: 400px;
        font-size: 0.7rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 6px 3px;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-width: 480px) and (orientation: landscape) {
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 2rem 0;
    }
}

/* Add JavaScript functionality for mobile menu toggle */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
}

/* Fix touch targets for mobile */
@media screen and (max-width: 480px) {
    /* Make gallery dots touchable */
    .gallery-dot {
        width: 12px !important;
        height: 12px !important;
        margin: 0 4px;
        background: rgba(255, 255, 255, 0.5);
    }
    
    .gallery-dot.active {
        background: #4fc3f7;
        transform: scale(1.2);
    }
    
    /* Fix gallery arrows */
    .gallery-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 18px;
    }
    
    /* Make table more mobile-friendly */
    .schedule-table {
        min-width: 600px; /* Reduced from 800px */
        font-size: 0.6rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 4px 2px;
        font-size: 0.55rem;
    }
    
    /* Improve button touch targets */
    .cta-btn,
    .submit-btn {
        min-height: 50px;
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    /* Fix mobile menu toggle */
    .mobile-menu-toggle {
        min-width: 50px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
    }
    
    /* Ensure proper spacing */
    .timeline-event {
        margin-bottom: 2rem;
        padding-left: 60px;
    }
    
    .timeline-marker {
        width: 35px;
        height: 35px;
        left: 12px;
    }
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Tablet styles (481px to 768px) */
@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.mobile-active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 1.3rem;
        padding: 15px;
        display: block;
        width: 100%;
        transition: all 0.3s;
        border-radius: 8px;
        margin: 0 20px;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: #4fc3f7;
        background: rgba(79, 195, 247, 0.1);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Mobile styles (up to 480px) */
@media screen and (max-width: 480px) {
    .nav-links {
        width: 80%;
        padding-top: 70px;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 12px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.6rem;
    }
}

/* Header adjustments for mobile */
@media screen and (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1001;
        background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
        box-shadow: 0 2px 10px rgba(30, 60, 114, 0.3);
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 20px;
    }
    
    .logo {
        font-size: 1.4rem;
        font-weight: bold;
        color: #4fc3f7;
        z-index: 1002;
    }
    
    main {
        margin-top: 70px;
    }
    .feedback-bubbles {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    
    /* Base Reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Arial', sans-serif;
        background-color: #000;
        color: white;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Prevent horizontal scroll */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Container adjustments */
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    .full-width-section {
        width: 100%;
        margin: 0;
        padding: 2rem 20px;
    }

    /* Enhanced Header and Navigation */
    header {
        background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(30, 60, 114, 0.4);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        max-width: 100%;
    }

    .logo {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        font-weight: bold;
        color: #4fc3f7;
        text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
        z-index: 1001;
    }

    /* Enhanced Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(79, 195, 247, 0.1);
        border: 2px solid #4fc3f7;
        color: #4fc3f7;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
        min-width: 48px;
        min-height: 48px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
    }

    .mobile-menu-toggle:hover {
        background: rgba(79, 195, 247, 0.2);
        transform: scale(1.05);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    /* Improved Navigation Links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,60,114,0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        list-style: none;
        margin: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(79, 195, 247, 0.3);
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        width: 90%;
        margin-bottom: 8px;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        padding: 16px 20px;
        display: block;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .nav-links a:hover::before {
        left: 100%;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #4fc3f7;
        background: rgba(79, 195, 247, 0.15);
        transform: translateX(10px);
        box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    }

    /* Overlay for menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Main Content */
    main {
        margin-top: 80px;
        min-height: calc(100vh - 80px);
    }

    /* Enhanced Hero Section */
    .hero {
        position: relative;
        height: clamp(60vh, 70vh, 80vh);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slideshow-container {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Better for mobile */
    }

    .slide.active-slide {
        opacity: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        padding: 0 30px;
        max-width: 90%;
    }

    .hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1.5rem;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
        line-height: 1.2;
        font-weight: 800;
    }

    .hero p {
        font-size: clamp(1rem, 3vw, 1.3rem);
        margin-bottom: 2rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        font-weight: 300;
    }

    .cta-btn {
        background: linear-gradient(45deg, #1e3c72, #4fc3f7);
        color: white;
        margin-top: 20px;
        padding: 16px 32px;
        border: none;
        border-radius: 8px;
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        min-height: 48px;
        box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(79, 195, 247, 0.5);
    }

    /* Enhanced Section Styling */
    .section {
        padding: clamp(2rem, 5vw, 4rem) 0;
    }

    .section-title {
        color: #4fc3f7;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
        text-align: center;
        font-weight: 700;
    }

    .section-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        text-align: center;
        margin-bottom: 2.5rem;
        padding: 0 20px;
        opacity: 0.9;
    }

    /* Improved Classes Grid */
    .classes-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .class-card {
        background: linear-gradient(135deg, #1e3c72, #2a5298);
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        transition: all 0.4s ease;
        border: 1px solid rgba(79, 195, 247, 0.2);
        position: relative;
        overflow: hidden;
    }

    .class-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .class-card:hover::before {
        opacity: 1;
    }

    .class-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 40px rgba(79, 195, 247, 0.2);
    }

    .class-card h3 {
        color: #4fc3f7;
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .class-card p {
        position: relative;
        z-index: 1;
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        line-height: 1.6;
    }

    /* Form Enhancements */
    .form-group {
        margin-bottom: 2rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        color: #4fc3f7;
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 16px;
        border: 2px solid #333;
        background: #222;
        color: white;
        border-radius: 8px;
        font-family: inherit;
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        transition: all 0.3s ease;
        min-height: 48px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #4fc3f7;
        box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.2);
        outline: none;
    }

    /* Enhanced Footer */
    footer {
        background: linear-gradient(135deg, #111, #1e3c72);
        padding: 3rem 0 2rem;
        text-align: center;
        margin-top: 3rem;
        border-top: 1px solid rgba(79, 195, 247, 0.3);
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding: 0 20px;
    }

    .footer-section h3 {
        color: #4fc3f7;
        margin-bottom: 1.5rem;
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        font-weight: 600;
    }

    .footer-section p {
        margin-bottom: 0.8rem;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        opacity: 0.9;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .social-icon img {
        width: clamp(40px, 8vw, 50px);
        height: clamp(40px, 8vw, 50px);
        transition: transform 0.3s ease;
    }

    .social-icon:hover img {
        transform: scale(1.2);
    }

    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 1.5rem;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        opacity: 0.8;
    }

    /* Utility Classes */
    .mobile-hidden {
        display: none !important;
    }

    .mobile-center {
        text-align: center !important;
    }

    .mobile-full-width {
        width: 100% !important;
    }

    /* Touch-friendly improvements */
    button,
    .cta-btn,
    .submit-btn {
        min-height: 48px;
        min-width: 48px;
        cursor: pointer;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Animation for menu items */
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links.mobile-active li {
        animation: slideInLeft 0.4s ease forwards;
    }

    .about-image {
        background: linear-gradient(45deg, #1e3c72, #4fc3f7);
        height: 300px;
        width: 100%;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        text-align: center;
        padding: 0;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
    }

    .nav-links.mobile-active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.mobile-active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.mobile-active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.mobile-active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.mobile-active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.mobile-active li:nth-child(6) { animation-delay: 0.35s; }
}

/* Tablet specific adjustments (481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .nav-links {
        width: 60%;
    }
    
    .hero-content {
        max-width: 80%;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

/* Small mobile devices (up to 480px) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        width: 90%;
    }
    
    .hero {
        height: 60vh;
    }
    
    .section {
        padding: 2rem 0;
    }
}

.mobile-menu-toggle {
    display: none;
}

.desktop-nav {
    display: flex !important;
}

/* Bottom Tab Bar Navigation Styles */
.bottom-tab-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
    display: none; /* Hidden by default, shown only on mobile */
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    border-top: 2px solid #4fc3f7;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 4px;
    transition: all 0.3s ease;
    min-width: 50px;
    border-radius: 12px;
    position: relative;
}

.tab-item:hover,
.tab-item.active {
    color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
    transform: translateY(-2px);
}

.tab-item.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #4fc3f7;
    border-radius: 50%;
    box-shadow: 0 0 10px #4fc3f7;
}

.tab-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
    display: block;
}

.tab-label {
    font-size: 0.7rem;
    text-align: center;
    font-weight: 500;
    line-height: 1;
}

/* Spacer to prevent content from being hidden behind tab bar */
.bottom-tab-spacer {
    height: 0;
}

/* Mobile styles - Show bottom tab navigation */
@media screen and (max-width: 768px) {
    /* Hide desktop navigation */
    .desktop-nav {
        display: none !important;
    }
    
    /* Show bottom tab navigation */
    .bottom-tab-nav {
        display: flex;
    }
    
    /* Add padding to main content to accommodate tab bar */
    main {
        margin-bottom: 70px; /* Space for tab bar */
    }
    
    .bottom-tab-spacer {
        height: 70px; /* Match tab bar height */
    }
    
    /* Update header to remove mobile menu styles */
    header {
        background: linear-gradient(135deg, #000 0%, #1e3c72 100%);
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(30, 60, 114, 0.3);
    }
    
    nav {
        display: flex;
        justify-content: center; /* Center the logo */
        align-items: center;
        padding: 0 20px;
    }
    
    .logo {
        font-size: 1.4rem;
        font-weight: bold;
        color: #4fc3f7;
        text-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
    }
}

/* Small mobile devices adjustments */
@media screen and (max-width: 480px) {
    .tab-item {
        padding: 6px 2px;
        min-width: 45px;
    }
    
    .tab-icon {
        font-size: 1.1rem;
    }
    
    .tab-label {
        font-size: 0.65rem;
    }
    
    /* Adjust main content spacing */
    main {
        margin-bottom: 65px;
    }
    
    .bottom-tab-spacer {
        height: 65px;
    }
}

/* Very small screens */
@media screen and (max-width: 350px) {
    .tab-item {
        padding: 5px 1px;
        min-width: 40px;
    }
    
    .tab-icon {
        font-size: 1rem;
    }
    
    .tab-label {
        font-size: 0.6rem;
    }
}

/* Hover effects for touch devices */
@media (hover: hover) {
    .tab-item:hover {
        background: rgba(79, 195, 247, 0.15);
    }
}

/* Active tab indicator animation */
.tab-item.active {
    animation: tabActivate 0.3s ease;
}

@keyframes tabActivate {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.05);
    }
    100% {
        transform: translateY(-2px) scale(1);
    }
}

/* Remove all burger menu related styles */
/* Comment out or remove these existing styles: */
/*
.mobile-menu-toggle { ... }
.nav-links.mobile-active { ... }
.mobile-menu-overlay { ... }
*/

/* Ensure desktop navigation works properly on larger screens */
@media screen and (min-width: 769px) {
    .bottom-tab-nav {
        display: none;
    }
    
    .desktop-nav {
        display: flex !important;
        list-style: none;
        gap: 2rem;
        margin: 0;
        padding: 0;
    }
    
    .desktop-nav a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: all 0.3s;
    }
    
    .desktop-nav a:hover,
    .desktop-nav a.active {
        color: #4fc3f7;
        background: rgba(79, 195, 247, 0.1);
    }
    
    main {
        margin-bottom: 0;
    }
    
    .bottom-tab-spacer {
        height: 0;
    }
}