/* Global Font */
body {
    font-family: 'Inter', sans-serif;
}

/* Top Bar */
.top-bar {
    background: black;
    color: white;
    padding: 6px;
    font-size: 14px;
}

/* Navbar */
.navbar {
    background: linear-gradient(90deg, black, red);
}

.nav-link {
    color: white !important;
    font-weight: 500;
}

/* ================= HERO SECTION (UPDATED) ================= */

.hero {
    min-height: 100vh; /* Full screen */
    background: linear-gradient(135deg, #000000, #ff0000);
    color: white;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

/* Big Heading */
.hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Sub text */
.hero p {
    font-size: 20px;
    margin: 25px 0;
    color: #ddd;
    max-width: 500px;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-custom {
    background: white;
    color: red;
    border-radius: 40px;
    padding: 12px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-custom:hover {
    background: black;
    color: white;
}

/* Hero Image */
.hero-img {
    max-width: 500px;
    width: 100%;
    animation: float 4s ease-in-out infinite;
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ================= SERVICES ================= */

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.badge-off {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price {
    color: red;
    font-weight: bold;
}

/* Buttons FIX */
.btn-group-custom {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-group-custom .btn {
    flex: 1;
}

/* ================= HEADING ================= */

.main-heading {
    font-size: 48px;
    font-weight: 800;
}

.main-heading span {
    color: red;
}

.sub-heading {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #555;
}

/* ================= WHATSAPP ================= */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 15px;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:992px){
    .hero h1 {
        font-size: 48px;
    }
}

/* Mobile */
@media(max-width:768px){

    .hero {
        text-align: center;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
        margin: 15px auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-img {
        margin-top: 30px;
        max-width: 300px;
    }

    .btn-group-custom {
        flex-direction: column;
    }
}

/* Small Mobile */
@media(max-width:480px){
    .hero h1 {
        font-size: 28px;
    }
}

/* ================= FOOTER TOP ================= */
.footer-top {
    background: linear-gradient(90deg, #000, #b30000);
    padding: 15px 0;
    color: white;
}

.footer-top h5 {
    margin: 0;
    font-weight: 600;
}

.footer-top span {
    color: #ffd700;
    font-weight: 700;
}

/* Brochure Button */
.btn-brochure {
    background: #222;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-brochure:hover {
    background: red;
}

/* ================= MAIN FOOTER ================= */
.footer {
    background: #000;
    color: white;
    padding: 60px 0;
}

.footer h4 {
    margin-bottom: 20px;
    font-weight: 700;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.footer ul li i {
    color: red;
    margin-right: 8px;
}

/* Hover Effect */
.footer ul li:hover {
    color: white;
    transform: translateX(5px);
}

/* Contact Text */
.footer p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
}

/* ================= BOTTOM ================= */
.footer-bottom {
    background: #111;
    color: #aaa;
    padding: 10px 0;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .footer-top {
        text-align: center;
    }

    .footer-top .container {
        flex-direction: column;
        gap: 10px;
    }

    .footer {
        text-align: center;
    }

    .footer ul li {
        text-align: center;
    }
}
/* ================= SEO SECTION (UPDATED THEME MATCH) ================= */

.seo-section {
    background: #f8f9fa;
}

.seo-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 4px solid red;
}

.seo-title {
    font-weight: 800;
    font-size: 32px;
    color: #000;
}

.seo-intro {
    color: #555;
    max-width: 800px;
    margin: auto;
}

/* FEATURES */
.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.feature-box i {
    font-size: 28px;
    color: red;
    margin-bottom: 10px;
}

.feature-box:hover {
    background: linear-gradient(135deg, #000, #b30000);
    color: #fff;
    transform: translateY(-5px);
}

.feature-box:hover i {
    color: #fff;
}

/* COURSE CARDS */
.course-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
    border: 1px solid #eee;
}

.course-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.course-box i {
    color: red;
    margin-right: 8px;
}

.course-box:hover {
    background: linear-gradient(135deg, #000, #b30000);
    color: #fff;
    transform: translateY(-5px);
}

.course-box:hover h3 {
    color: #fff;
}

.course-box:hover i {
    color: #fff;
}

/* ENROLL BUTTON */
.enroll-btn {
    background: linear-gradient(90deg, #ff0000, #b30000);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.enroll-btn:hover {
    background: #000;
    color: #fff;
}

.card-img {
    position: relative;
    overflow: hidden;
}

.card-img img {
    transition: 0.4s;
}

.service-card:hover .card-img img {
    transform: scale(1.1);
}

/* ================= WHATSAPP PREMIUM ================= */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 15px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
    text-decoration: none;
}

/* Hover Effect */
.whatsapp:hover {
    transform: scale(1.1);
    background: #000;
}

/* Pulse Animation */
.whatsapp::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}