/* =========================================
   MATERIAL DESIGN VARIABLES & SYSTEM
   ========================================= */
:root {
    --md-primary: #000000;         /* Primary Color changed to Pure Black */
    --md-primary-light: #333333;   /* A lighter shade of black/dark gray for hover effects */
    --md-secondary: #FFD700;       /* Secondary Color changed to a standard vibrant Yellow */
    --md-whatsapp: #25D366;        /* Keep as is for WhatsApp button */
    --md-surface: #FFFFFF;         /* Keep as is for white backgrounds/cards */
    --md-bg: #F8F9FA;              /* Keep as is for light gray backgrounds */
    --md-text: #202124;            /* Dark text - keep as is */
    --md-text-light: #5F6368;      /* Lighter text - keep as is */
    
    /* ... keep the rest of your shadow and transition variables exactly the same ... */
    
    --md-shadow-1: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --md-shadow-2: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    --md-shadow-3: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    
    --transition-standard: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; background-color: var(--md-bg); color: var(--md-text); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Comfortaa', cursive; line-height: 1.3; }
a { text-decoration: none; }

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    background-color: var(--md-primary); color: var(--md-surface); padding: 15px 5%;
    display: flex; justify-content: space-between; align-items: center; 
    position: sticky; top: 0; z-index: 1000; box-shadow: var(--md-shadow-2);
}
.logo-container { display: flex; flex-direction: column; line-height: 1.1; }
.logo-small { font-size: 13px; font-weight: 400; letter-spacing: 1px; color: #FFD54F; font-family: 'Roboto', sans-serif; }
.logo-main { font-size: 24px; font-weight: 700; letter-spacing: 0.5px; color: var(--md-surface); font-family: 'Comfortaa', cursive; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { color: var(--md-surface); font-weight: 500; font-size: 16px; transition: color var(--transition-standard); position: relative; }
nav ul li a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background-color: var(--md-secondary); transition: width var(--transition-standard); }
nav ul li a:hover::after, nav ul li a.active::after { width: 100%; }

/* =========================================
   HERO / PAGE HEADER SECTION
   ========================================= */
.page-header {
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    color: var(--md-surface);
    padding: 100px 5% 120px; 
    text-align: center; 
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
}
.page-header h1 { font-size: 3.5rem; margin-bottom: 20px; }
.page-header p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; opacity: 0.9; line-height: 1.8; }
/* =========================================
   BUTTONS & RIPPLE EFFECT
   ========================================= */
.cta-container { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.btn { padding: 15px 35px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 16px; transition: transform var(--transition-standard), box-shadow var(--transition-standard); position: relative; overflow: hidden; cursor: pointer; border: none; }
.btn-call { background-color: var(--md-secondary); color: var(--md-surface); box-shadow: var(--md-shadow-2); }
.btn-whatsapp { background-color: var(--md-whatsapp); color: var(--md-surface); box-shadow: var(--md-shadow-2); }
.btn:hover { box-shadow: var(--md-shadow-3); transform: translateY(-3px); }
.ripple-effect { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple 600ms linear; background-color: rgba(255, 255, 255, 0.4); }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* =========================================
   LAYOUT & CARDS
   ========================================= */
.section-padding { padding: 80px 5%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--md-primary); }
.section-title div { width: 80px; height: 4px; background: var(--md-secondary); margin: 15px auto; border-radius: 2px; }

.card { background: var(--md-surface); padding: 40px; border-radius: 15px; box-shadow: var(--md-shadow-2); margin-top: -50px; position: relative; z-index: 10; max-width: 1000px; margin-left: auto; margin-right: auto; text-align: center; }
.card h2 { color: var(--md-primary); margin-bottom: 15px; }
.card p { color: var(--md-text-light); font-size: 1.1rem; }

/* =========================================
   FOOTER
   ========================================= */
footer { background: #111827; color: var(--md-surface); padding: 80px 5% 30px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-col h4 { font-size: 1.5rem; margin-bottom: 30px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; width: 50px; height: 3px; background: var(--md-secondary); bottom: -10px; left: 0; border-radius: 2px; }
.footer-col p, .footer-col ul li a { color: #9CA3AF; text-decoration: none; display: block; margin-bottom: 15px; font-size: 1rem; transition: color var(--transition-standard); }
.footer-col ul { list-style: none; }
.footer-col ul li a:hover { color: var(--md-surface); }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { background: rgba(255,255,255,0.1); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; transition: var(--transition-standard); color: var(--md-surface); }
.social-links a:hover { background: var(--md-secondary); transform: translateY(-5px); color: var(--md-surface); }
.footer-map iframe { width: 100%; height: 200px; border-radius: 10px; border: none; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; font-size: 0.9rem; color: #9CA3AF; }

/* =========================================
   RESPONSIVE DESIGN (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 15px; padding: 15px; text-align: center; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 15px; }
    nav ul li { margin-left: 0; }
    .page-header h1 { font-size: 2.2rem; }
    .page-header { padding: 60px 5% 80px; }
}

/* =========================================
   HOMEPAGE SECTIONS (FEATURES, COURSES, GALLERY, TESTIMONIALS, FAQ, CONTACT)
   ========================================= */

/* Common Section Styling */
.section-subtitle { text-align: center; color: var(--md-text-light); margin-bottom: 40px; font-size: 1.1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.center-btn { text-align: center; margin-top: 40px; }
.btn-outline { background: transparent; border: 2px solid var(--md-primary); color: var(--md-primary); }
.btn-outline:hover { background: var(--md-primary); color: var(--md-surface); }

/* Features (Why Choose Us) */
.feature-card { background: var(--md-surface); padding: 40px 20px; border-radius: 15px; box-shadow: var(--md-shadow-1); text-align: center; transition: var(--transition-standard); }
.feature-card:hover { box-shadow: var(--md-shadow-2); transform: translateY(-5px); }
.feature-icon { font-size: 3rem; color: var(--md-primary-light); margin-bottom: 20px; }
.feature-card h3 { color: var(--md-primary); margin-bottom: 15px; font-size: 1.4rem; }

/* Courses */
.course-card { background: var(--md-surface); border-radius: 15px; box-shadow: var(--md-shadow-1); overflow: hidden; transition: var(--transition-standard); }
.course-card:hover { box-shadow: var(--md-shadow-2); }
.course-header { background: var(--md-primary); color: var(--md-surface); padding: 30px; text-align: center; }
.course-header h3 { font-size: 1.8rem; margin-bottom: 5px; }
.course-header.secondary { background: var(--md-primary-light); }
.course-body { padding: 30px; }
.course-list { list-style: none; }
.course-list li { margin-bottom: 20px; display: flex; gap: 15px; align-items: flex-start; }
.course-list i { color: var(--md-whatsapp); font-size: 1.2rem; margin-top: 3px; }
.course-list strong { display: block; color: var(--md-text); margin-bottom: 5px; }
.course-list p { color: var(--md-text-light); font-size: 0.95rem; margin: 0; }

/* Gallery */
.gallery-img { width: 100%; height: 250px; object-fit: cover; border-radius: 15px; box-shadow: var(--md-shadow-1); transition: var(--transition-standard); cursor: pointer; }
.gallery-img:hover { transform: scale(1.02); box-shadow: var(--md-shadow-2); }

/* Testimonials */
.testimonial-card { background: var(--md-surface); padding: 40px; border-radius: 15px; box-shadow: var(--md-shadow-1); position: relative; }
.testimonial-text { font-style: italic; color: var(--md-text-light); margin-bottom: 20px; font-size: 1.05rem; }
.quote-icon { position: absolute; top: 30px; right: 30px; font-size: 3rem; color: rgba(255, 143, 0, 0.2); }
.client-info { display: flex; align-items: center; gap: 15px; }
.client-avatar { width: 50px; height: 50px; background: var(--md-primary-light); color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; font-size: 1.2rem; }
.client-details h4 { color: var(--md-primary); margin: 0 0 5px 0; }
.client-details p { margin: 0; font-size: 0.85rem; color: var(--md-text-light); }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--md-surface); margin-bottom: 15px; border-radius: 10px; box-shadow: var(--md-shadow-1); overflow: hidden; }
.faq-question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; color: var(--md-primary); transition: background 0.3s; }
.faq-question:hover { background: #f0f2f5; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--md-text-light); }
.faq-answer.active { padding: 20px 25px; max-height: 200px; border-top: 1px solid #eee; }

/* Contact Form Grid */
.contact-section { background: var(--md-surface); margin: 50px 5%; border-radius: 15px; box-shadow: var(--md-shadow-2); overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; }
.contact-info { background: var(--md-primary); color: white; padding: 50px; }
/* --- Background Utility Class --- */
.bg-sky-blue { background-color: #E3F2FD !important; } /* Light Sky Blue */

/* --- Fixed Contact Info Alignment --- */
.info-item { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 30px; 
    align-items: flex-start; /* ટેક્સ્ટ અને આઇકોનને ઉપરથી સમાન લેવલમાં રાખવા */
}
.info-item i { 
    font-size: 1.5rem; 
    background: rgba(255,255,255,0.1); 
    width: 50px; 
    height: 50px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    flex-shrink: 0; /* આનાથી આઇકોન ક્યારેય દબાશે નહિ, ગોળ જ રહેશે */
}
.info-item div {
    flex: 1; /* ટેક્સ્ટને બાકીની બધી જગ્યા લેવા દેશે */
}
.info-item h4 { 
    margin: 0 0 5px 0; 
    font-size: 1.2rem;
}
.info-item p { 
    margin: 0; 
    font-size: 0.95rem; 
    line-height: 1.5; 
    color: rgba(255,255,255,0.8);
}
.contact-form-container { padding: 50px; }
.form-group { margin-bottom: 25px; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.form-control:focus { border-color: var(--md-primary); outline: none; box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1); }
textarea.form-control { resize: vertical; height: 120px; }

@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } }


/* About Page: Icon & Layout Fixes */
.about-hero { padding: 60px 5% !important; } /* CTA section nanu karva */
.about-hero h2 { font-size: 2.2rem; }

/* Icon Size & Alignment */
.feature-card i { font-size: 2.5rem; color: var(--md-primary); margin-bottom: 15px; display: block; }
.feature-card h3 { font-size: 1.6rem; margin-bottom: 10px; }


/* =========================================
   ABOUT US PAGE - EXACT MATCH CSS
   ========================================= */

/* Director Section */
.director-card { display: flex; align-items: center; gap: 50px; background: #fff; border-radius: 20px; box-shadow: var(--md-shadow-1); padding: 50px; max-width: 1100px; margin: 0 auto; }
.director-image-wrapper { flex: 0 0 35%; }
.director-image-wrapper img { width: 100%; height: auto; display: block; border-radius: 15px; box-shadow: var(--md-shadow-2); }
.director-text { flex: 1; text-align: left; }
.director-text h2 { color: var(--md-primary); font-size: 2.2rem; margin-bottom: 5px; }
.director-text h4 { color: var(--md-secondary); font-size: 1.1rem; font-weight: 500; margin-bottom: 25px; }
.director-text p { font-size: 1.05rem; line-height: 1.7; color: var(--md-text-light); margin-bottom: 25px; }
.director-quote { border-left: 4px solid var(--md-secondary); padding-left: 20px; font-style: italic; color: var(--md-primary); font-weight: 500; font-size: 1.1rem; line-height: 1.6; }

/* Purpose Section (Top Border Cards) */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.purpose-card { background: #fff; padding: 50px 40px; border-radius: 15px; text-align: center; box-shadow: var(--md-shadow-1); position: relative; overflow: hidden; }
.purpose-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; }
.card-mission::before { background-color: var(--md-primary); }
.card-vision::before { background-color: var(--md-secondary); }
.purpose-card i { font-size: 3rem; margin-bottom: 20px; }
.card-mission i { color: var(--md-primary); }
.card-vision i { color: var(--md-secondary); }
.purpose-card h3 { font-size: 1.8rem; color: var(--md-primary); margin-bottom: 15px; }
.purpose-card p { font-size: 1.05rem; color: var(--md-text-light); line-height: 1.6; }

/* Core Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.value-card { background: #fff; padding: 40px 25px; border-radius: 15px; text-align: center; box-shadow: var(--md-shadow-1); transition: var(--transition-standard); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--md-shadow-2); }
.icon-circle { background: #f0f4ff; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.icon-circle i { font-size: 1.8rem; color: var(--md-primary); }
.value-card h4 { font-size: 1.4rem; color: var(--md-primary); margin-bottom: 15px; }
.value-card p { font-size: 0.95rem; color: var(--md-text-light); line-height: 1.6; margin: 0; }

/* Final CTA Section */
.final-cta { background: var(--md-primary); padding: 80px 5%; text-align: center; color: white; }
.final-cta h2 { font-size: 2.5rem; color: white; margin-bottom: 15px; }
.final-cta p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 35px; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .director-card { flex-direction: column; text-align: center; padding: 30px; }
    .director-text { text-align: center; }
    .director-image-wrapper { max-width: 400px; margin: 0 auto; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

/* --- About Us Hover Fix --- */
.purpose-card { transition: var(--transition-standard); }
.purpose-card:hover { transform: translateY(-5px); box-shadow: var(--md-shadow-2); }


/* =========================================
   COURSES PAGE - EXACT MATCH CSS
   ========================================= */

/* Course Horizontal Cards */
.course-horizontal-card { display: flex; background: #fff; border-radius: 20px; box-shadow: var(--md-shadow-1); overflow: hidden; max-width: 1100px; margin: 0 auto; }
.reverse-layout { flex-direction: row-reverse; }

/* Image & Badge */
.course-img-box { flex: 0 0 45%; position: relative; }
.course-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.std-badge { position: absolute; top: 25px; left: 25px; background: var(--md-secondary); color: white; padding: 8px 25px; border-radius: 30px; font-weight: bold; font-size: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.2); z-index: 2; }
.reverse-layout .std-badge { left: auto; right: 25px; } /* રાઈટ સાઈડ બેજ માટે */

/* Course Info & Tags */
.course-info { flex: 1; padding: 50px; }
.course-info h2 { color: var(--md-primary); font-size: 2.2rem; margin-bottom: 5px; }
.course-info .subtitle { color: var(--md-text-light); font-size: 1.15rem; margin-bottom: 25px; }
.subject-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.subject-tags span { background: #f0f4ff; color: var(--md-primary); padding: 8px 18px; border-radius: 50px; font-size: 0.95rem; font-weight: 500; }

/* Features List with Green Check */
.feature-list { list-style: none; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; font-size: 1.05rem; line-height: 1.5; color: var(--md-text-light); }
.feature-list li i { color: #2ecc71; font-size: 1.3rem; margin-top: 2px; }
.feature-list li strong { color: var(--md-text); margin-right: 5px; }

/* Teaching Methodology */
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1100px; margin: 0 auto; }
.method-card { background: #fff; padding: 40px 30px; border-radius: 15px; text-align: center; box-shadow: var(--md-shadow-1); transition: var(--transition-standard); border-top: 4px solid var(--md-primary); }
.method-card:hover { transform: translateY(-5px); box-shadow: var(--md-shadow-2); }
.method-card i { font-size: 2.5rem; color: var(--md-secondary); margin-bottom: 20px; }
.method-card h3 { color: var(--md-primary); margin-bottom: 15px; font-size: 1.4rem; }
.method-card p { color: var(--md-text-light); line-height: 1.6; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .course-horizontal-card, .reverse-layout { flex-direction: column; }
    .course-img-box { height: 300px; }
    .method-grid { grid-template-columns: 1fr; }
}

/* =========================================
   GALLERY PAGE & LIGHTBOX CSS (UPDATED)
   ========================================= */

/* Gallery Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; border-radius: 15px; box-shadow: var(--md-shadow-1); cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.1); }

/* New Text Overlay on Hover */
.gallery-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%); display: flex; align-items: flex-end; padding: 25px; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { color: white; font-family: 'Roboto', sans-serif; font-size: 1.3rem; font-weight: 500; margin: 0; transform: translateY(20px); transition: transform 0.4s ease; }
.gallery-item:hover .gallery-overlay h3 { transform: translateY(0); }

/* Lightbox Modal */
.lightbox-modal { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox-modal.active { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 90%; max-height: 90vh; border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.5); transform: scale(0.8); transition: transform 0.3s ease; }
.lightbox-modal.active .lightbox-content { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 2.5rem; font-weight: bold; cursor: pointer; transition: 0.3s; }
.lightbox-close:hover { color: var(--md-secondary); }

/* CTA Button Icons Adjustment */
.btn-call i.fa-phone { transform: scaleX(-1); }
.btn-whatsapp i.fa-whatsapp { font-size: 1.2rem; }



/* =========================================
   TESTIMONIAL PAGE - EXACT MATCH CSS
   ========================================= */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.testimonial-card { 
    background: #fff; padding: 40px; border-radius: 20px; 
    box-shadow: var(--md-shadow-1); transition: var(--transition-standard); 
    border: 1px solid #eee; position: relative;
}
.testimonial-card:hover { transform: translateY(-10px); box-shadow: var(--md-shadow-3); }

.stars { color: #FFC107; font-size: 1.1rem; margin-bottom: 20px; }
.quote-mark { color: #f0f0f0; font-size: 3rem; position: absolute; top: 20px; right: 30px; }
.testimonial-content { font-size: 1rem; color: #555; line-height: 1.7; margin-bottom: 30px; font-style: italic; }

.client-box { display: flex; align-items: center; gap: 15px; }
.avatar { 
    width: 50px; height: 50px; background: var(--md-primary); 
    color: white; display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; font-weight: bold; font-size: 1.2rem; 
}
.client-name { font-weight: 700; color: var(--md-primary); }
.client-title { font-size: 0.9rem; color: var(--md-text-light); }

@media (max-width: 992px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }


/* =========================================
   CONTACT PAGE - EXACT MATCH CSS
   ========================================= */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* Info Cards */
.contact-info-card { background: #fff; padding: 30px; border-radius: 15px; box-shadow: var(--md-shadow-1); margin-bottom: 20px; display: flex; align-items: center; gap: 20px; transition: 0.3s; }
.contact-info-card:hover { box-shadow: var(--md-shadow-2); }
.info-icon { width: 60px; height: 60px; background: #f0f4ff; color: var(--md-primary); display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 1.5rem; flex-shrink: 0; }
.info-text h4 { font-size: 1.2rem; color: var(--md-primary); margin-bottom: 5px; }
.info-text p { color: var(--md-text-light); font-size: 0.95rem; }

/* Form Card */
.contact-form-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: var(--md-shadow-2); }
.contact-form-card h2 { color: var(--md-primary); margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 10px; font-size: 1rem; }
.btn-submit { background: var(--md-secondary); color: white; width: 100%; padding: 15px; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; }

@media (max-width: 992px) { .contact-container { grid-template-columns: 1fr; } }


/* =========================================
   CONTACT CLEAN ACTIONS - NO FORM LAYOUT
   ========================================= */
.contact-clean-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-action-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--md-shadow-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: var(--transition-standard);
    color: var(--md-text) !important;
}
.contact-action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--md-shadow-3);
}
.contact-action-card .action-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #f0f4ff;
    color: var(--md-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition-standard);
}

/* Hover Accent Colors for Icons */
.card-phone:hover .action-icon { background: var(--md-secondary); color: white; }
.card-whatsapp:hover .action-icon { background: var(--md-whatsapp); color: white; }
.card-instagram:hover .action-icon { background: #E1306C; color: white; }
.card-location:hover .action-icon { background: #4285F4; color: white; }

.contact-action-card h3 {
    font-size: 1.5rem;
    color: var(--md-primary);
    margin-top: 5px;
}
.contact-action-card p {
    font-size: 1.05rem;
    color: var(--md-text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}
.action-btn-text {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .contact-clean-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.page-header {
    background-size: cover !important;
    background-position: center !important;
    padding: 100px 0;
}

/* દરેક પેજ માટે અલગ ઇમેજ પાથ */
.home-header { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/home-hero.webp'); }
.about-header { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/about-hero.webp');  }
.courses-header { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/courses-hero.webp'); }
.gallery-header { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/gallery-hero.webp'); background-position: center 20% !important; }
.testimonial-header { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/testimonial-hero.webp'); }
.contact-header { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/contact-hero.webp'); }

/* Change Call Now button text and icon color to Black */
.btn-call, .btn-call i {
    color: #000000 !important;
}
/* Beginner Driver Program ટેગના લખાણને કાળું કરવા માટે */
.std-badge {
    color: #000000 !important; /* સફેદને બદલે કાળો રંગ */
    background-color: #FFD700 !important; /* જો બેકગ્રાઉન્ડ પીળું રાખવું હોય તો */
    font-weight: bold;
}
/* આ કોડ about.php ની ઇમેજ બદલવા માટે છે */
.about-header {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6)), url('../images/about-hero.webp') !important;
    background-size: cover !important;
    background-position: center !important;
}
.btn-whatsapp, .btn-whatsapp i, .btn-whatsapp a {
    color: #000000 !important;
}




