/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    margin-right: 12px;
}

.logo-text h1 {
    font-size: 1.1rem;
    color: #0d1b2a;
}

.logo-text p {
    font-size: 0.75rem;
    color: #666;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: #009688;
}

/* Hero Section */
.hero {
    background: url('images/hero.avif') no-repeat center center/cover;
    height: 60vh;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background: #009688;
    color: #fff;
    margin-right: 15px;
}

.btn-secondary {
    background: #fff;
    color: #333;
}

/* Features */
.features {
    padding: 80px 0;
    text-align: center;
    background: #fdfdfd;
}

.features h2 {
    margin-bottom: 50px;
    font-size: 2rem;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 2.5rem;
    color: #009688;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

/* Stats */
.stats {
    background: #009688;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    padding: 20px;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

/* CTA */
.cta {
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background: #0d1b2a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
}

.socials {
    margin-top: 20px;
}

.socials a {
    font-size: 1.2rem;
    margin-right: 25px;
	
}

.socials p {
    background: #0d1b2a;
    color: #fff;
    padding: 10px 0 20px;
	margin-bottom: 5px;
	
}


.footer-bottom {
    text-align: center;
    border-top: 1px solid #1b263b;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #bdc3c7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 2rem; }
}




/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #00796b 0%, #004d40 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Our Story */
.our-story {
    padding: 80px 0;
}

.our-story h2 {
    font-size: 2.2rem;
    color: #0d1b2a;
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Mission Vision Cards */
.mission-vision {
    padding: 60px 0;
    background: #f9f9f9;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.teal-bg { background: #e0f2f1; color: #009688; }
.green-bg { background: #e8f5e9; color: #4caf50; }
.light-teal-bg { background: #f1f8e9; color: #8bc34a; }

/* What Sets Us Apart */
.apart {
    padding: 20px 0;
}

.apart h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.apart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.apart-item {
    display: flex;
    align-items: flex-start;
}

.step-num {
    background: #009688;
    color: white;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
}

.apart-item h4 {
    margin-bottom: 8px;
    color: #0d1b2a;
}

.apart-item p {
    color: #666;
    font-size: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .apart-grid {
        grid-template-columns: 1fr;
    }
}






/* Course Section Styling */
.course-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-icon {
    font-size: 2rem;
    color: #00796b;
    margin-bottom: 15px;
}

.course-meta {
    font-size: 0.85rem;
    color: #666;
    margin: 10px 0;
    display: flex;
    gap: 15px;
}

.tags {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-grow: 1;
}

.tags span {
    background: #e0f2f1;
    color: #00796b;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
}

.enroll-btn {
    text-align: center;
    background: #009688;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
}

/* What You'll Get */
.get-section {
    padding: 20px 0 25px 0;
    text-align: center;
	
}

.get-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.get-item i {
    font-size: 2.5rem;
    color: #80cbc4;
    margin-bottom: 20px;
}

/* Footer CTA */
.footer-cta {
    background: #009688;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-white {
    background: #fff;
    color: #009688;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
}






/* Contact Section Grid */
.contact-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left Column Info */
.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child { margin-bottom: 0; }

.info-icon {
    background: #e0f2f1;
    color: #009688;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #0d1b2a;
}

.info-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.hours-card {
    background: #009688;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
}

.hours-card h4 { margin-bottom: 15px; }
.hours-card p { font-size: 0.9rem; margin-bottom: 8px; opacity: 0.9; }

/* Contact Form */
.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.form-card h3 { margin-bottom: 30px; color: #0d1b2a; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    background: #fafafa;
}

.submit-btn {
    background: #009688;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover { background: #00796b; }

/* Map Placeholder */
.map-section { padding: 60px 0 100px; text-align: center; }
.map-placeholder {
    background: #e9ecef;
    height: 350px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    margin-top: 40px;
}

.map-placeholder i { font-size: 3rem; margin-bottom: 15px; }

/* Responsive */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}



.adv a{
  text-decoration: none;
  color: #2c3e50;
  font-size: 20px;
  font-weight: bold;
}










/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* Tooltip text (Optional) */
.whatsapp-float .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    right: 125%; /* Position to the left of the button */
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Pulse Animation to attract attention */
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.5); }
    100% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-animation 2s infinite;
}














/* --- Global Responsive Container --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header & Navigation --- */
@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        margin-top: 20px;
        padding: 0;
    }
    .nav-links li {
        margin: 0 10px;
    }
}

@media (max-width: 600px) {
    .logo-text h1 { font-size: 1rem; }
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links li {
        margin: 5px 8px;
    }
}

/* --- Hero Section Adjustment --- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
        padding: 0 10px;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .btn {
        margin: 0;
        width: 80%;
    }
}

/* --- Responsive Grids (Courses, Features, About Cards) --- */
/* This handles 3 columns on desktop, 2 on tablet, and 1 on mobile */
.course-grid, .mvv-grid, .features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop */
    gap: 25px;
}

@media (max-width: 992px) {
    .course-grid, .mvv-grid, .features .container {
        grid-template-columns: repeat(2, 1fr); /* Tablet */
    }
}

@media (max-width: 650px) {
    .course-grid, .mvv-grid, .features .container {
        grid-template-columns: 1fr; /* Mobile */
    }
    .card, .course-card {
        padding: 20px;
    }
}

/* --- Contact Page Specifics --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack Form below Info */
    }
    .form-row {
        grid-template-columns: 1fr; /* Form inputs stack on top of each other */
    }
}

/* --- Floating WhatsApp Button Mobile Scale --- */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}










/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; overflow-x: hidden; }

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a { text-decoration: none; color: #333; font-weight: 500; }

/* Hamburger Button Styling */
.hamburger {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00796b;
    transition: 0.3s;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet & Mobile (Below 992px) */
@media (max-width: 992px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        right: -100%; /* Hidden off-screen */
        top: 70px; /* Below Navbar */
        background: #fff;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s ease;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }

    .nav-links.active { right: 0; } /* Slide in */

    /* Grids (Courses & About Cards) */
    .course-grid, .mvv-grid, .contact-grid {
        grid-template-columns: 1fr !important; /* Force single column on mobile */
        width: 90% !important;
        margin: 0 auto;
    }
}

/* Specific Mobile Fixes (Below 600px) */
@media (max-width: 600px) {
    .hero-content h1 { font-size: 1.8rem; }
    .logo-text h1 { font-size: 1.1rem; }
    .btn { width: 100%; text-align: center; margin-bottom: 10px; }
}