.header-left {
    background: none;
}

/* ===========================
   Global Reset
=========================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   Header (Responsive)
=========================== */
#myHeader {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header-container {
    justify-content: flex-start;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 10%;
}

/* Logo */
.header-left {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 60px;
    width: 200px;
    margin-right: 50px;
    flex-shrink: 0;
}

/* Desktop Nav */
.header-right-ff {
    flex: 1;
}

.header-right-ff nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-start;
}

.header-right-ff nav ul li {
    display: inline-block;
}

.header-right-ff nav ul li a {
    text-decoration: none;
    color: #2988d6;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
}

.header-right-ff nav ul li a:hover {
    color: #1a5f8a;
}

.header-right-ff nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2988d6;
    transition: width 0.3s ease;
}

.header-right-ff nav ul li a:hover::after {
    width: 100%;
}

/* Hide duplicate old nav */
.header-right-ff .navbar {
    display: none;
}

/* Hamburger button */
.nav-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    border: none;
    background: none;
    margin-left: auto;
}

/* ===========================
   Mobile Menu Drawer
=========================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #fff;
    padding: 60px 20px;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease-in-out;
    z-index: 1200;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    color: #2988d6;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.mobile-menu.active {
    right: 0;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1100;
}

.menu-overlay.active {
    display: block;
}

/* ===========================
   Banner
=========================== */
.banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Courses Section
=========================== */
.course-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.2s;
}

.course-card:hover {
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .course-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .course-container {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Typography
=========================== */
h1,
h2,
h3,
h4 {
    line-height: 1.3;
}

@media (max-width: 767px) {

    h1,
    h2 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 0.95rem !important;
    }
}

/* ===========================
   Footer
=========================== */
.footer {
    background: #222;
    color: #fff;
    padding: 30px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .col {
    width: 23%;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .footer .col {
        width: 45%;
    }
}

@media (max-width: 767px) {
    .footer {
        text-align: center;
    }

    .footer .col {
        width: 100%;
    }
}

/* ===========================
   Mobile Overrides
=========================== */
@media (max-width: 767px) {
    .logoCustom {
        margin-top: 0 !important;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 10px 15px;
    }

    .header-left {
        margin-right: 0;
        width: 150px;
        height: 50px;
    }

    .header-right-ff nav {
        display: none;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .header-container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-left {
        width: 120px;
        height: 40px;
    }

    .header-container {
        padding: 8px 10px;
    }
}
.hero-section {
    align-items: center;
    justify-content: space-between;
    padding: 30px 14%;
    background-color: #fff;
    flex-wrap: wrap;
}

/* Left Column */
.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.hero-text p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #555;
}

.hero-text .highlight {
    font-weight: bold;
    color: #000;
    font-size: 1.1rem;
    margin-top: 20px;
    display: inline-block;
    position: relative;
}

.hero-text .highlight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: orange;
    bottom: -5px;
    left: 0;
}

.hero-text .btn-orange {
    display: inline-block;
    margin-top: 25px;
    border-radius: 6px;
    transition: background 0.3s;
}
/* Right Column */
.hero-image {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 50%;
}


.founder p {
    font-size: 12px;
}

.teacher-description {
    font-size: 12px;
}

.about h3,
.welcome-head h3,
.services1 h3,
h3.tittle,
.contact-form h3 {
    color: #2988d6;
}

.team .fifth-effect .mask {
    border: 6px solid #2988d6;
}

.upside-text {
    margin: 25px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }
}

.course-card {
    background: rgb(255, 250, 245);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.course-card:hover {
    transform: translateY(-3px);
}

.content .mt-auto.pt-2>img {
    width: 80%;
}

.course-card>img:first-child {
    width: 60%;
    height: 160px;
    object-fit: contain;
    margin: 0 20%;
}

.course-card .content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-card .meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.course-card .meta-item i {
    margin-right: 8px;
    color: #ff7a18;
}

.course-card button {
    background: linear-gradient(to right, #ff7a18, #ffb347);
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    width: 100%;
}

.course-card button:hover {
    opacity: 0.9;
}

