:root {
    --emerald: #064e3b;
    --emerald-light: #065f46;
    --gold: #d4af37;
    --gold-light: #f3cf65;
    --white: #ffffff;
    --soft-gray: #f8fafc;
    --text-dark: #1e293b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('WhatsApp\ Image\ 2025-12-19\ at\ 11.15.17\ AM.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: var(--white);
}

.nav-btn {
    background: var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--emerald);
    font-weight: 600;
    transition: 0.3s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--gold);
}

.btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px;
    display: inline-block;
    transition: 0.4s;
}

.btn-primary {
    background: var(--gold);
    color: var(--emerald);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- Slider Section --- */
.slider-section {
    padding: 120px 0;
    background: var(--soft-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    background: rgba(6, 78, 59, 0.1);
    color: var(--emerald);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.slider-container {
    display: flex;
    transition: 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 500px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* --- Courses --- */
.courses {
    padding: 100px 0;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.course-img-box {
    height: 200px;
    overflow: hidden;
}

.course-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-card:hover img {
    transform: scale(1.1);
}

.course-info {
    padding: 25px;
}

.course-info h3 {
    color: var(--emerald);
    margin-bottom: 15px;
}

/* --- Stats --- */
.stats {
    background: var(--emerald);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--gold);
}

/* --- Form --- */
.admission {
    padding: 100px 0;
    background: var(--soft-gray);
}

.form-wrapper {
    background: white;
    max-width: 700px;
    margin: auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    gap: 20px;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f1f5f9;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--emerald);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--emerald-light);
}

/* --- Footer --- */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.social-links a {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: white;
}

.copy {
    margin-top: 30px;
    opacity: 0.5;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        gap: 0;
    }

    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
    }
}


/* Heading above video */
.video-heading {
    text-align: center;
    margin: 40px 20px 20px;
}

.video-heading h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    /* responsive size */
    /* color: #0b3b5a; */
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.video-heading p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    /* responsive sub-heading */
    /* color: #444; */
}


/* Video Section */
.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.video-container {
    width: 100%;
    max-width: 900px;
    /* max size desktop par */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.video-embed {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .video-heading h2 {
        font-size: 1.5rem;
    }

    .video-container {
        max-width: 100%;
    }
}

/* Heading above video */
.video-heading {
    text-align: center;
    margin: 40px 20px 20px;
}

.video-heading h2 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    /* responsive size */
    /* color: #0b3b5a; */
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.video-heading p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    /* responsive sub-heading */
    /* color: #444; */
}


/* Video Section */
.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.video-container {
    width: 100%;
    max-width: 900px;
    /* max size desktop par */
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 6px 20px rgba(0,0,0,0.2); */
}

.video-embed {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .video-heading h2 {
        font-size: 1.5rem;
    }

    .video-container {
        max-width: 100%;
    }
}

.course-card {
    max-width: 420px;
    margin: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.35s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* IMAGE FIX */
.course-card-image {
    width: 100%;
    background: #f8f9fa;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-card-image img {
    width: 100%;
    height: auto;
    /* 🔥 MAIN FIX */
    max-height: 260px;
    /* laptop control */
    object-fit: contain;
    /* 🔥 poster poora dikhe */
    border-radius: 10px;
}

.course-content {
    padding: 22px 24px 28px;
    text-align: center;
}

.course-content h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.course-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.pricing-section {
    padding: 60px 20px;
    background: #f4f7fb;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 900px;
    margin: auto;
}

.pricing-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #0a3d62;
}

.pricing-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.price-box {
    display: inline-block;
    margin: 20px 15px;
    padding: 20px 30px;
    background: #0a3d62;
    color: white;
    border-radius: 8px;
    transition: 0.3s;
}

.price-box span {
    font-size: 26px;
    font-weight: bold;
    display: block;
}

.price-box p {
    margin: 5px 0 0;
    font-size: 14px;
}

.price-box:hover {
    background: #1e6fa3;
    transform: scale(1.05);
}


/* new banner */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("Gemini_Generated_Image_njukb0njukb0njuk.png");
    background-size: cover;
    background-position: center;
    color: white;
}

/* NAVBAR */

.navbar {
    width: 100%;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.logo-box h2 {
    font-size: 20px;
    font-weight: bold;
}

.logo-box span {
    color: #ffd700;
}

/* NAV LINKS */

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.nav-btn {
    background: #ffd700;
    color: black !important;
    padding: 8px 16px;
    border-radius: 6px;
}

/* HERO CONTENT */

.hero-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary-btn {
    background: #25D366;
    color: white;
}

.primary-btn:hover {
    background: #1ebe5d;
}

.secondary-btn {
    border: 2px solid white;
    color: white;
}

.secondary-btn:hover {
    background: white;
    color: black;
}

/* MOBILE MENU */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: #000;
        width: 100%;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
        color: white;
    }

    .hero-content h1 {
        font-size: 30px;
    }

} 

/* owner */

.owner-section{
padding:80px 20px;
background:#f5f7fb;
display:flex;
justify-content:center;
}

.container{
max-width:1100px;
width:100%;
}

.owner-card{
display:flex;
align-items:center;
gap:40px;
background:#fff;
border-radius:14px;
padding:40px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
}

.owner-card:hover{
transform:translateY(-6px);
}

.owner-img img{
width:280px;
border-radius:10px;
object-fit:cover;
}

.owner-info h2{
font-size:30px;
color:#1a1a1a;
margin-bottom:15px;
}

.owner-info p{
font-size:16px;
color:#555;
line-height:1.7;
}

/* Mobile Responsive */

@media(max-width:768px){

.owner-card{
flex-direction:column;
text-align:center;
}

.owner-img img{
width:220px;
}

.owner-info h2{
font-size:24px;
}

}

/* newlogocss */

/* Navbar Background - Light Cream */
.navbar {
    background-color: #f5f5dc;   /* light cream */
    padding: 10px 20px;
}

/* Container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo + Text */
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo Size (NO FILTER ab) */
.logo-box img {
    height: 80px;   /* bada aur clear */
    width: auto;
    object-fit: contain;
}

/* Main Heading */
.logo-box h2 {
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
    color: #222;   /* dark text */
    font-weight: 700;
}

/* Sub Text */
.logo-box h2 span {
    display: block;
    font-size: 13px;
    color: #555;   /* halka dark grey */
}

/* Nav Links */
.nav-links li a {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* Button */
.nav-btn {
    background-color: #222;
    color: #fff !important;
    padding: 7px 14px;
    border-radius: 5px;
}  


/* enroll */

.enroll-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.enroll-btn:hover {
    background-color: #555;
}

/* poster */

/* POSTER SECTION */
.poster-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.poster-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.poster-card img {
    width: 100%;
    display: block;
}

.poster-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* HERO IMPROVE */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("bannernew.png");
    background-size: cover;
    background-position: center;
    color: white;
}


/* new about */

/* SECTION BACKGROUND */
.about-section {
    background: #fdfaf5; /* cream */
    padding: 80px 0;
}

/* HEADER */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-block;
    background: #c79f39;
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* MAIN HEADING (BIG & PREMIUM) */
.about-header h2 {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
}

/* underline effect */
.about-header h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #c79f39;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-header p {
    color: #666;
    font-size: 16px;
}

/* GRID */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.premium-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

/* HOVER EFFECT */
.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.course-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */
.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 20px;
    color: #c79f39;
    margin-bottom: 10px;
}

.course-content p {
    font-size: 14px;
    color: #555;
}

.course-content ul {
    padding-left: 15px;
}

.course-content ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* poster section */

/* FIX IMAGE CUT */
.poster-card img {
    width: 100%;
    height: auto;   /* 🔥 FIXED */
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.poster-card img:hover {
    transform: scale(1.03);
}

/* GRID */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .poster-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .poster-grid { grid-template-columns: 1fr; }
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
}

#lightbox img {
    margin-top: 40px;
    max-width: 95%;
    max-height: 90%;
}

/* Poster Section */
.poster-section {
    background: #fffaf5;
    padding: 60px 15px;
}

.poster-header {
    text-align: center;
    margin-bottom: 40px;
}

.poster-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #c79f39;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.poster-header .section-title {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.poster-header p {
    font-size: 16px;
    color: #555;
}

/* Poster Grid */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.poster-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.poster-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.3s;
}

.poster-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Responsive */
@media(max-width:768px){
    .poster-card img {
        height: 200px;
    }
}

@media(max-width:480px){
    .poster-card img {
        height: 160px;
    }
}
/* counting */

.stats {
    background: #fdfaf5; /* white/cream theme */
    padding: 20px 0;      /* minimal top/bottom padding */
    margin: 0;            /* remove extra margin */
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;           /* tight spacing between items */
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
}

.stat-item h2 {
    font-size: 32px;      /* proportional size */
    font-weight: 900;
    color: #c79f39;       /* gold accent */
    margin: 0 0 5px 0;
}

.stat-item p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* admission form */

.admission {
    background: #fffaf5; /* cream/white theme */
    padding: 60px 15px;
    margin: 0;
}

.form-wrapper {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-header .section-title {
    font-size: 28px;
    font-weight: 900;
    color: #c79f39; /* gold accent */
    text-align: center;
    margin-bottom: 10px;
}

.form-header p {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

form input, form select, form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

form input:focus, form select:focus, form textarea:focus {
    border-color: #c79f39;
    box-shadow: 0 0 5px rgba(199, 159, 57, 0.3);
}

.form-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-group input {
    flex: 1;
}

.submit-btn {
    background: #c79f39;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #b58630;
}

.submit-btn i {
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }
}

/* fotter  */

.footer {
    background: #fffaf5; /* cream/white theme */
    padding: 40px 20px;
    text-align: center;
    color: #333;
    border-top: 1px solid #e2e2e2;
}

.footer .footer-brand h3 {
    font-size: 22px;
    font-weight: 900;
    color: #c79f39; /* gold accent */
    margin-bottom: 10px;
}

.footer .footer-brand p {
    font-size: 15px;
    margin: 5px 0;
}

.footer .footer-brand a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.footer .footer-brand a:hover {
    color: #c79f39;
}

.footer .social-links {
    margin: 15px 0;
}

.footer .social-links a {
    display: inline-block;
    margin: 0 8px;
    font-size: 18px;
    color: #333;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #c79f39;
}

.footer .copy {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 600px) {
    .footer .footer-brand h3 {
        font-size: 20px;
    }

    .footer .footer-brand p, .footer .copy {
        font-size: 14px;
    }

    .footer .social-links a {
        font-size: 16px;
        margin: 0 5px;
    }
} 

/* coursesnewstyle */

/* Courses Section */
.courses {
    background: #fffaf5; /* cream/white theme */
    padding: 60px 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .badge {
    display: inline-block;
    padding: 5px 15px;
    background: #c79f39;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 14px;
}

.section-header .section-title {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #555;
}

/* Course Grid */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Course Card */
.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.course-img-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-info {
    padding: 20px;
}

.course-title {
    font-size: 20px;
    font-weight: 800;
    color: #c79f39;
    margin-bottom: 10px;
}

.course-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.enroll-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #c79f39;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
}

.enroll-btn:hover {
    background: #b58630;
}

/* Responsive */
@media(max-width:768px) {
    .course-img-box img {
        height: 160px;
    }
}

@media(max-width:480px) {
    .course-title {
        font-size: 18px;
    }
    .course-desc {
        font-size: 13px;
    }
}

/* 🌟 FOUNDER SECTION */
.founder-section {
    background: #fdf6ec;
    padding: 70px 20px;
}

/* 🌟 HEADER (Better Typography) */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-badge {
    display: inline-block;
    background: #a67c52;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-header h2 {
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-header p {
    color: #666;
    font-size: 15px;
}

/* 🌟 CARD */
.founder-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    max-width: 1000px;
    margin: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-4px);
}

/* 🌟 IMAGE */
.founder-img img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
}

/* 🌟 CONTENT */
.founder-content {
    flex: 1;
}

.founder-content h3 {
    font-size: 26px;
    color: #222;
    margin-bottom: 6px;
    font-weight: 600;
}

.degree {
    color: #a67c52;
    font-size: 14px;
    margin-bottom: 15px;
}

.desc {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

/* 🌟 HIGHLIGHTS (simple badges) */
.founder-highlights {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.highlight-box {
    background: #f3e9dd;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #444;
}

/* 📱 TABLET */
@media (max-width: 992px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .founder-img img {
        width: 180px;
        height: 180px;
    }

    .about-header h2 {
        font-size: 26px;
    }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
    .founder-section {
        padding: 50px 15px;
    }

    .founder-card {
        padding: 20px;
    }

    .founder-content h3 {
        font-size: 20px;
    }

    .desc {
        font-size: 14px;
    }

    .about-header h2 {
        font-size: 22px;
    }

    .about-header p {
        font-size: 13px;
    }
}

/* newposters */

.features-section {
    background: #fdf6ec;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.top-heading {
    text-align: center;
    margin-bottom: 40px;
}

.top-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
}

.top-heading p {
    margin-top: 10px;
    font-size: 18px;
    color: #555;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Cards */
.feature-card {
    background: #fffaf3;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* Vision Box */
.vision-box {
    margin-top: 50px;
    background: linear-gradient(135deg, #c89b3c, #a8741a);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.vision-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .top-heading h2 {
        font-size: 22px;
    }
}

/* newfootercss */
.footer {
    background: linear-gradient(135deg, #fdf6ec, #f5e6d3);
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
    border-top: 3px solid #c89b3c;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand {
    background: rgba(255, 255, 255, 0.65);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 15px;
    color: #555;
    margin: 8px 0;
    line-height: 1.6;
}

.footer-brand a {
    color: #a8741a;
    text-decoration: none;
    font-weight: 500;
}

.footer-brand a:hover {
    text-decoration: underline;
}

/* Social Icons */
.social-links a {
    display: inline-block;
    margin: 0 8px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: white;
    color: #c89b3c;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, #c89b3c, #a8741a);
    color: white;
    transform: translateY(-5px) scale(1.1);
}

.copy {
    margin-top: 25px;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #e0d2bd;
    padding-top: 15px;
    width: 100%;
}

/* newdirector */

.founder-section {
    background: #fdf6ec;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
}

.about-header p {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
}

.founder-card {
    display: flex;
    flex-wrap: wrap;
    background: #fffaf3;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.founder-img {
    flex: 0 0 200px;
    text-align: center;
    margin-right: 25px;
}

.founder-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c89b3c;
}

.founder-content {
    flex: 1;
}

.founder-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #2c2c2c;
}

.degree {
    font-size: 14px;
    color: #a8741a;
    margin-bottom: 10px;
    font-weight: 600;
}

.desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.founder-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-box {
    background: #c89b3c;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .founder-img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* uniformcss */

.uniform-section {
    background: #fdf6ec;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
}

.about-header p {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
}

.uniform-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fffaf3;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.uniform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.uniform-img, .uniform-content {
    flex: 1;
}

.uniform-img img {
    width: 100%;
    border-radius: 15px;
    border: 3px solid #c89b3c;
    object-fit: cover;
}

.uniform-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.uniform-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .uniform-card {
        flex-direction: column;
        text-align: center;
    }
    .uniform-img, .uniform-content {
        flex: unset;
    }
    .uniform-img img {
        max-width: 80%;
        margin: 0 auto 20px;
    }
}

/* newlogo */

.logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-box img {
    width: 80px;          /* Logo width */
    height: 80px;         /* Make it square */
    object-fit: contain;  /* Preserve full logo without cutting */
    border-radius: 10%;   /* Optional, slightly rounded corners */
}

.logo-box h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
}

.logo-box h2 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .logo-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .logo-box img {
        width: 60px;
        height: 60px;
    }
    .logo-box h2 {
        font-size: 18px;
    }
    .logo-box h2 span {
        font-size: 12px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Responsive smaller screens */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* newbanner */

.hero-section {
    position: relative;
    background: url('hero_classroom.jpg') center/cover no-repeat; /* replace with your banner image */
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 80px; /* navbar height */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 750px;
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.primary-btn {
    background-color: #25D366;
    color: #fff;
}

.primary-btn:hover {
    background-color: #1ebe5b;
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.secondary-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .hero-buttons .btn { padding: 10px 20px; margin-bottom: 10px; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 14px; }
    .hero-buttons { display: flex; flex-direction: column; gap: 10px; }
}