body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header */
.main-header {
    background: #f4d35e;
    border-bottom: 3px solid #000;
    position: sticky;
    top: 0;
    z-index: 999;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

/* Logo */
.logo img {
    height: 60px;
}

/* Nav */
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: red;
}

/* CTA Button */
.consult-btn {
    background: red;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

/* Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #f4d35e;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .menu-toggle {
        display: block;
    }

    .cta-btn {
        display: none;
    }

    .nav-menu.active {
        display: block;
    }
}


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #222;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* COMMON */
section {
    padding: 70px 0;
}

h1, h2, h3 {
    font-weight: 700;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 15px;
    color: #555;
}

/* BUTTONS */
.btn-primary {
    background: #e63946;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #c1121f;
}

.btn-secondary {
    background: #f4d35e;
    color: #000;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 10px;
}

.btn-readmore {
    margin-top: 15px;
    display: inline-block;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('../images/banner.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 140px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 25px;
}

/* ABOUT */
.about {
    text-align: center;
}

.about p {
    max-width: 750px;
    margin: auto;
}

/* WHY US */
.why-us {
    background: #f9f9f9;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-box h3 {
    margin-bottom: 10px;
}

/* COURSES */
.courses {
    text-align: center;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.course-box {
    background: #f4d35e;
    padding: 25px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.course-box:hover {
    background: #ffd60a;
    transform: scale(1.03);
}

/* CONTACT STRIP */
.contact-strip {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.contact-strip p {
    color: #ccc;
    margin: 10px 0 20px;
}

/* PARTNERS */
.partners {
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 60px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partner-logos img:hover {
    filter: grayscale(0%);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .features,
    .course-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }
}
/* COURSES SECTION */
.courses {
    text-align: center;
    background: #fff;
}

.section-subtitle {
    color: #777;
    margin-bottom: 30px;
}

/* GRID */
.course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.course-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #eee;
    cursor: pointer;
}

.course-card i {
    font-size: 40px;
    color: #e63946;
    margin-bottom: 15px;
}

.course-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.course-card p {
    font-size: 14px;
    color: #666;
}

/* HOVER EFFECT */
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: #f4d35e;
}

/* BUTTON */
.view-btn {
    margin-top: 30px;
    display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    background: #111;
    color: #ccc;
    padding: 60px 20px 0;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* HEADINGS */
.footer-col h3 {
    color: #f4d35e;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f4d35e;
    padding-left: 5px;
}

/* ICONS */
.footer-col i {
    color: #e63946;
    margin-right: 8px;
}

/* SOCIAL */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
   
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #f4d35e;
    color: #000;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    margin-top: 40px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* WRAPPER */
.course-wrapper {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
    align-items: center;
}

/* LEFT SIDE */
.course-left h2 {
    font-size: 36px;
    line-height: 1.2;
}

.course-left p {
    margin: 15px 0 25px;
    color: #666;
}

/* GRID */
.course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.course-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.course-card i {
    font-size: 35px;
    color: #e63946;
    margin-bottom: 10px;
}

.course-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.course-card p {
    font-size: 13px;
    color: #777;
}

/* HOVER */
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #f4d35e;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .course-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
}


/* WHY SECTION */
.why-us {
    background: #f9f9f9;
    padding: 80px 0;
}

/* WRAPPER */
.why-wrapper {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE */
.why-left h2 {
    font-size: 34px;
}

.why-left p {
    margin: 15px 0;
    color: #555;
}

.why-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.why-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

.why-points i {
    color: #e63946;
    margin-right: 8px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.why-card i {
    font-size: 35px;
    color: #e63946;
    margin-bottom: 10px;
}

.why-card h3 {
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #f4d35e;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: #fff;
}

/* WRAPPER */
.about-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: center;
}

/* LEFT */
.about-left h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-left p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

/* RIGHT BOX GRID */
.about-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* BOX */
.about-box {
    background: #f9f9f9;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.about-box i {
    font-size: 30px;
    color: #e63946;
    margin-bottom: 10px;
}

.about-box h3 {
    font-size: 16px;
}

/* HOVER */
.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #f4d35e;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-right {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .about-right {
        grid-template-columns: 1fr;
    }
}

/* CONTACT STRIP */
.contact-strip {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
                url('../images/contact-bg.jpg') center/cover no-repeat;
    padding: 70px 20px;
    color: #fff;
}

/* WRAPPER */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* TEXT */
.contact-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-text p {
    color: #ddd;
    max-width: 500px;
}

/* BUTTONS */
.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY */
.btn-primary {
    background: #e63946;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #c1121f;
}

/* OUTLINE */
.btn-outline {
    border: 2px solid #fff;
   
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* WHATSAPP */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-actions {
        justify-content: center;
    }
}



.course-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: center;
}

.course-left h2 {
    font-size: 30px;
}

.course-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.course-points li {
    margin-bottom: 10px;
}

.course-points i {
    color: #e63946;
    margin-right: 8px;
}

.course-table-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.course-table {
    width: 100%;
    border-collapse: collapse;
}

.course-table th {
    background: #e63946;
    color: #fff;
    padding: 14px;
}

.course-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.course-table tr:hover {
    background: #f9f9f9;
}

.bg-light {
    background: #f9f9f9;
}

@media (max-width: 992px) {
    .course-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


.contact-page {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
}

/* FORM */
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* SUCCESS */
.success-msg {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    margin-bottom: 10px;
}

/* INFO */
.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: #e63946;
    margin-right: 8px;
}

/* BUTTONS */
.contact-buttons {
    margin-top: 20px;
}

.btn-outline {
    border: 2px solid #000;
    padding: 10px 15px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
}

/* MAP */
.map-section {
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.page-banner {
    background: linear-gradient(135deg, #f4d35e, #ffd166);
    padding: 70px 20px;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-banner p {
    color: #333;
}


/* CENTER EVERYTHING */
.verify-box {
    max-width: 700px;
    margin: auto;
}

/* TOP SEARCH */
.verify-top {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* FORM */
.verify-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.verify-form input {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
}

.verify-form button {
    padding: 14px 20px;
}

/* RESULT BELOW */
.verify-bottom {
    width: 100%;
}

/* RESULT CARD */
.result {
    width: 100%;
    max-width: 600px;
    margin: auto;   /* 👉 यही fix है */
    padding: 15px;
    border-radius: 12px;
    text-align: left;
}

/* GRID */
.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* MOBILE */
@media (max-width: 600px) {

    .verify-form {
        flex-direction: column;
    }

    .result-grid {
        grid-template-columns: 1fr;
    }
}
/* RESULT */
.result {
    padding: 20px;
    border-radius: 10px;
}

.result.success {
    background: #d4edda;
    color: #155724;
}

.result.error {
    background: #f8d7da;
    color: #721c24;
}

.about-banner {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 70px 20px;
    color: #fff;
}

/* WRAPPER */
.about-banner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* LEFT */
.about-left h2 {
    font-size: 36px;
    font-weight: 700;
}

/* RIGHT */
.about-right p {
    font-size: 16px;
     color: #cbd5f5;
    max-width: 400px;
}

/* LINE EFFECT (premium look) */
.about-banner-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    bottom: 0;
    left: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .about-banner-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-left h2 {
        font-size: 28px;
    }

    .about-right p {
        font-size: 14px;
    }
}
.page-banner {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 70px 20px;
    color: #fff;
}

/* WRAPPER */
.banner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* LEFT */
.banner-left h1 {
    font-size: 36px;
    font-weight: 700;
}

/* RIGHT */
.banner-right p {
    font-size: 16px;
    color: #cbd5f5;
    max-width: 400px;
}

/* LINE EFFECT */
.page-banner {
    position: relative;
}

.page-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    bottom: 0;
    left: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .banner-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .banner-left h1 {
        font-size: 28px;
    }

    .banner-right p {
        font-size: 14px;
    }
}