* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 999;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 50px;
}

/* Navbar */
.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #222;
    padding: 10px 15px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: #0077ff;
}

/* Dropdown */
.dropdown-menu {
    display: none !important;
    align-items: flex-start;
    text-align: left;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
}

/* Hover Dropdown - show on hover */
.dropdown:hover .dropdown-menu {
    display: flex !important;
}

.dropdown-menu li {
    width: 100%;
    text-align: left;
}

.dropdown-menu li a {
    padding: 12px 15px;
    display: block;
    color: #333;
    text-align: left;
    width: 100%;
}

.dropdown-menu li a:hover {
    background: #f2f6ff;
}


/* Mobile Menu */
.menu-toggle {
    font-size: 26px;
    cursor: pointer;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        border-top: 1px solid #ddd;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar ul li {
        width: 100%;
    }

    .navbar ul li a {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        border: none;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none !important;
    }

    .dropdown.active .dropdown-menu {
        display: flex !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background: url("/images/back.png") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Content */
.hero-content {
    position: relative;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
}

/* Heading */
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Paragraph */
.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #eaeaea;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #0077ff;
    color: #fff;
}

.primary-btn:hover {
    background: #005fcc;
}

.secondary-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #000;
}

/* Animation */
.animate-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* Why Choose - Modern */
.why-modern {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f7faff, #ffffff);
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.why-heading {
    text-align: left;
    max-width: 900px;
    margin: 0 0 60px 0;
}

.why-heading h2 {
    font-size: 2.6rem;
    color: #111;
    margin-bottom: 15px;
}

.why-heading p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Box */
.why-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.why-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 119, 255, 0.18);
}

/* Icon */
.why-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: #fff;
    font-size: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.why-box h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #0077ff;
}

.why-box p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-heading h2 {
        font-size: 2.1rem;
    }
}


/* Courses Section */
.courses-section {
    padding: 90px 20px;
    background: #ffffff;
}

.courses-container {
    max-width: 1200px;
    margin: auto;
}

.courses-heading {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 60px;
}

.courses-heading h2 {
    font-size: 2.6rem;
    color: #111;
    margin-bottom: 15px;
}

.courses-heading p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.course-card {
    background: #f9fbff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 119, 255, 0.18);
}

/* Image */
.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.course-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 1.3rem;
    color: #0077ff;
    margin-bottom: 8px;
}

.course-tag {
    font-size: 0.85rem;
    color: #ffffff;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    width: fit-content;
}

.course-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: auto;
}

/* Button */
.course-btn {
    margin-top: 20px;
    text-decoration: none;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    background: #0077ff;
    color: #ffffff;
    transition: 0.3s;
}

.course-btn:hover {
    background: #005fcc;
}

/* Responsive */
@media (max-width: 1100px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .courses-heading h2 {
        font-size: 2.1rem;
    }
}


/* About Us Section */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff, #f1f7ff);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* Image */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Content */
.about-content {
    flex: 1.1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Points */
.about-points {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.about-points li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 119, 255, 0.35);
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.1rem;
    }

    .about-section {
        padding: 70px 20px;
    }
}

/* Training Process Section */
.process-section {
    padding: 100px 20px;
    background: #f8faff;
    text-align: center;
}

.section-title {
    font-size: 2.6rem;
    color: #111;
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto 60px;
    color: #555;
    font-size: 1.05rem;
}

/* Cards */
.process-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: #fff;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 119, 255, 0.2);
}

.process-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.3rem;
    color: #0077ff;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.1rem;
    }

    .process-section {
        padding: 70px 20px;
    }
}


/* Testimonials Section */
.testimonial-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff, #f3f8ff);
    text-align: center;
}

.testimonial-container {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.testimonial-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 119, 255, 0.25);
}

/* Image */
.testimonial-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #0077ff;
    margin-bottom: 20px;
}

/* Text */
.testimonial-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 0.85rem;
    color: #0077ff;
    font-weight: 600;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 70px 20px;
    }
}

/* Career Section */
.career-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.career-container {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card */
.career-card {
    background: linear-gradient(135deg, #f8faff, #ffffff);
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 119, 255, 0.2);
}

/* Image */
.career-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

/* Text */
.career-card h3 {
    font-size: 1.3rem;
    color: #0077ff;
    margin-bottom: 10px;
}

.career-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .career-section {
        padding: 70px 20px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0b1320, #111c33);
    color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

/* Left */
.contact-info h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: #cfd8ff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Form */
.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    outline: none;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form button {
    background: #0077ff;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #005edc;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }
}


/* Footer */
.footer {
    background: #0b1320;
    color: #cfd8ff;
    padding: 70px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Boxes */
.footer-box h3,
.footer-box h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #cfd8ff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #0077ff;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #111c33;
    border-radius: 50%;
    margin-right: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #0077ff;
    transform: translateY(-5px);
}

/* Bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #aab4ff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding-top: 50px;
    }
}

/* Page Banner */
.page-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('/images/back.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* dark overlay for text readability */
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease forwards;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 1.2rem;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-banner {
        height: 220px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}

/* About Us Section */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff, #f1f7ff);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* Owner Image */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Content */
.about-content {
    flex: 1.1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Points */
.about-points {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.about-points li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 119, 255, 0.35);
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .about-content h2 {
        font-size: 2.1rem;
    }

    .about-section {
        padding: 70px 20px;
    }
}

/* Vision & Mission Section */
.vision-section {
    background: #f0f8ff;
    padding: 80px 20px;
    text-align: center;
}

.vision-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.vision-box,
.mission-box {
    background: #fff;
    flex: 1;
    min-width: 280px;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.vision-box img,
.mission-box img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

.vision-box h3,
.mission-box h3 {
    color: #0077ff;
    margin-bottom: 15px;
}

.vision-box p,
.mission-box p {
    color: #444;
    line-height: 1.6;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 119, 255, 0.2);
}

/* Achievements Section */
.achievement-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ffffff, #e6f2ff);
    text-align: center;
}

.achievement-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.achievement-card {
    background: #fff;
    flex: 1;
    min-width: 250px;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.achievement-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
}

.achievement-card h3 {
    color: #0077ff;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 119, 255, 0.2);
}

/* Mini Testimonials */
.mini-testimonial-section {
    background: #f8fcff;
    padding: 80px 20px;
    text-align: center;
}

.mini-testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
    justify-content: center;
}

.mini-testimonial-card {
    background: #fff;
    flex: 1;
    min-width: 250px;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.mini-testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.mini-testimonial-card p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 10px;
}

.mini-testimonial-card h4 {
    color: #0077ff;
}

.mini-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 119, 255, 0.2);
}

/* Video Demo Section */
.video-demo-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e6f2ff, #ffffff);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: #f8fcff;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: #111;
}

.gallery-section p {
    font-size: 1rem;
    color: #555;
    margin-top: 10px;
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto 0;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-section h2 {
        font-size: 2rem;
    }

    .gallery-section p {
        font-size: 0.95rem;
    }
}


/* Course Banner */
.course-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/images/back.png') center/cover no-repeat;
}

.course-banner .banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.course-banner .banner-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease forwards;
}

.course-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.course-banner p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.course-banner .btn-primary {
    padding: 12px 30px;
    background: #0077ff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.course-banner .btn-primary:hover {
    background: #005edc;
}

/* General Course Section */
.course-section {
    padding: 80px 20px;
    background: #f8fcff;
}

.course-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.course-section h2 {
    font-size: 2.2rem;
    color: #0077ff;
    margin-bottom: 15px;
}

.course-section p,
.course-section ul li {
    font-size: 1rem;
    color: #444;
}

.course-section ul {
    list-style: disc;
    margin-left: 20px;
}

/* Images */
.course-image {
    flex: 1;
    min-width: 300px;
}

.course-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Modules */
.modules-container {
    text-align: center;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.module-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.module-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 15px;
}

.module-card h3 {
    color: #0077ff;
    margin-bottom: 10px;
}

.module-card p {
    color: #444;
    font-size: 0.95rem;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 119, 255, 0.2);
}

/* Duration Section */
.duration {
    text-align: center;
}

.duration img {
    width: 60%;
    margin-top: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Reveal Animation 
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}
    */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .course-container {
        flex-direction: column;
    }

    .course-banner h1 {
        font-size: 2rem;
    }

    .course-banner p {
        font-size: 1rem;
    }
}


/* Job Section */
.job-section {
    padding: 80px 20px;
    background: #f0f8ff;
    text-align: center;
}

.job-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
    justify-content: center;
}

.job-card {
    background: #fff;
    flex: 1;
    min-width: 320px;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
    text-align: left;
}

.job-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
}

.job-card h3 {
    color: #0077ff;
    margin-bottom: 20px;
}

.job-card form label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.job-card form input,
.job-card form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 0.95rem;
}

.job-card form textarea {
    resize: vertical;
}

.job-card form .btn-primary {
    padding: 12px 30px;
    background: #0077ff;
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.job-card form .btn-primary:hover {
    background: #005edc;
    transform: translateY(-2px);
}

/* Hover Effect */
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 119, 255, 0.2);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .job-container {
        flex-direction: column;
    }
}


/* ===== Franchise Banner ===== */
.franchise-banner {
    position: relative;
    background: url('/images/franchise\ back\ banner.png') center/cover no-repeat;
    padding: 100px 20px;
    color: #fff;
}

.franchise-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.franchise-banner-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

/* Left Content */
.franchise-content {
    flex: 1;
}

.franchise-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.franchise-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.franchise-content ul {
    margin-top: 15px;
}

.franchise-content ul li {
    margin-bottom: 8px;
}

/* Form */
.franchise-form {
    flex: 1;
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 20px;
}

.franchise-form h3 {
    color: #0077ff;
    margin-bottom: 20px;
}

.franchise-form input,
.franchise-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.franchise-form button {
    width: 100%;
    padding: 12px;
    background: #0077ff;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== Why ADTA ===== */
.why-adta {
    padding: 80px 20px;
    background: #f8fcff;
    text-align: center;
}

.why-adta-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* ===== Roles Section ===== */
.roles-section {
    padding: 80px 20px;
}

.roles-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.roles-card {
    flex: 1;
    background: #f0f8ff;
    padding: 30px;
    border-radius: 22px;
}

.roles-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.roles-card ul li {
    margin-bottom: 8px;
}

/* ===== Common ===== */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: #0077ff;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width:768px) {
    .franchise-content h1 {
        font-size: 2rem;
    }
}

