/*start header */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

/* TOP STRIP */

.top-strip {
    background: #005ea8;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 6%;
    font-size: 14px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-left a {
    color: #ffd400;
    font-weight: 600;
    text-decoration: none;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-right span {
    font-size: 15px;
    font-weight: 600;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    /* White background */
    border: 1px solid #e5e5e5;
    /* Light border */
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

/* Brand icon colors */
/* Facebook Blue */
.top-right a:nth-child(1) i {
    color: #063000;
}

/* Instagram Gradient Pink/Red Approx */
.top-right a:nth-child(2) i {
    color: #0f0099;
}

/* WhatsApp Green */
.top-right a:nth-child(3) i {
    color: #8b0000;
}

/* Hover */
.top-right a:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* MAIN HEADER */

.main-header {
    background: #fff;
    padding: 18px 6%;
}

.logo-section {
    display: flex;
    align-items: center;
    /* Logo and text vertically centered */
    gap: 18px;
}

.logo-section img {
    width: 234px;
    height: 60px;
    display: block;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.divider {
    width: 2px;
    height: 65px;
    background: #0d6efd;
    /* Blue color */
}

.title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #002a4b;
    margin: 0;
    line-height: 1.2;
}

.title h4 {
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin: 4px 0 2px;
}

.title p {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

/* NAVBAR */

.navbar {
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    list-style: none;
    padding: 18px;
}

.navbar ul li a {
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items:center;
    gap: 8px;
    transition: .3s;
}

.navbar ul li a i {
    color: #111;
    font-size: 18px;
}

.navbar ul li a:hover {
    color: #005ea8;
}

.navbar ul li a:hover i {
    color: #005ea8;
}

/* MOBILE */
/*==========================
  COURSES DROPDOWN
===========================*/

.dropdown{
    position:relative;
}

.dropdown-box{

    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-30%);
    width:850px;
    height:420px;

    background:#fff;
    border-radius:12px;

    display:flex;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;
}

.dropdown:hover .dropdown-box{

    opacity:1;
    visibility:visible;

}

/* LEFT */

.left-panel{

    width:220px;

    background:#fafafa;

    border-right:1px solid #ececec;

    padding:18px;

}

.left-title{

    font-size:12px;

    color:#777;

    letter-spacing:1px;

    margin-bottom:18px;

}

.menu-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px;

    border-radius:8px;

    margin-bottom:8px;

    cursor:pointer;

    transition:.3s;

    font-size:15px;

}

.menu-item.active,
.menu-item:hover{

    background:#0b66ff;

    color:#fff;

}

/* RIGHT */

.right-panel{

    flex:1;

    padding:18px;

}

.heading{

    font-size:20px;

    font-weight:600;

    margin-bottom:5px;

}

.sub{

    color:#666;

    font-size:14px;

    margin-bottom:18px;

}

/* BUTTONS */

.tabs{

    display:flex;

    gap:10px;

    margin-bottom:18px;

}

.tab{

    padding:10px 20px;

    border-radius:30px;

    border:1px solid #ddd;

    background:#fff;

    cursor:pointer;

    font-size:14px;

}

.tab.active{

    background:#0b66ff;

    color:#fff;

}

/* COURSE AREA */

.course-list{

    height:280px;

    overflow-y:auto;

    padding-right:6px;

}

/* Scroll */

.course-list::-webkit-scrollbar{

    width:6px;

}

.course-list::-webkit-scrollbar-thumb{

    background:#bbb;

    border-radius:20px;

}

/* GRID */

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* CARD */

.card{
    display:flex;
    align-items:center;
    gap:15px;

    width:100%;
    height:70px;

    padding:0 18px;

    background:#fff !important;
    border:1px solid #e6e6e6;
    border-radius:14px;

    box-shadow:none !important;
    overflow:hidden;

    position:relative;
}

.card:hover{
    background:#fff !important;
    border-color:#0b66ff;
}

.card .icon{
    width:40px;
    min-width:40px;
    display:flex;
    justify-content:center;
    align-items:center;

    font-size:22px;
    color:#111 !important;
}

.course-name{
    flex:1;

    font-size:15px;
    font-weight:500;

    color:#333 !important;

    line-height:22px;
}

@media(max-width:992px) {

    .top-strip {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .logo-section img {
        width: 130px;
    }

    .title h2 {
        font-size: 28px;
    }

    .navbar ul {
        flex-wrap: wrap;
        gap: 20px;
    }

}

@media(max-width:600px) {

    .title h2 {
        font-size: 22px;
    }

    .title h4 {
        font-size: 13px;
    }

    .title p {
        font-size: 12px;
    }

    .navbar ul li a {
        font-size: 16px;
    }

    .top-right {
        gap: 12px;
    }

    .top-right a {
        font-size: 18px;
    }

}
.navbar ul li {
    position: relative;
    list-style: none;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 520px;
    background: #fff;
    display: flex;
    gap: 35px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    z-index: 999;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.course-column {
    flex: 1;
}

.course-column h3 {
    color: #0b66c3;
    margin-bottom: 15px;
    font-size: 16px;
}

.course-column a {
    display: block;
    padding: 10px 12px;
    margin-bottom: 8px;
    text-decoration: none;
    
    border-radius: 8px;
    transition: .3s;
    font-size: 14px;
}

.course-column a:hover {
    background: #0b66c3;
    color: #fff;
    padding-left: 18px;
}

/* .mega-menu{
    width:850px;
    display:flex;
} */

.sidebar {
    width: 230px;
    background: #f4f6fb;
}

.content {
    flex: 1;
    padding: 25px;
}

 /*  end navbar*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}
.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
    color:#111;
}
.marquee {
    width: 100%;
    background: #0B3D91;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
@media(max-width:992px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        position:relative;
    }

    .navbar ul{
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:0;

        position:absolute;
        top:100%;
        left:0;
        width:100%;

        background:#fff;
        box-shadow:0 15px 30px rgba(0,0,0,.12);
        z-index:999;
    }

    .navbar ul.active{
        display:flex;
    }

    .navbar ul li{
        width:100%;
    }

    .navbar ul li a{
        width:100%;
        padding:16px 20px;
        border-bottom:1px solid #f0f0f0;
        font-size:16px;
    }

       .dropdown-box{
        display:none !important;
        position:fixed;
        top:70px;
        left:50%;
        transform:translateX(-50%);
        width:92vw;
        max-width:380px;
        height:auto;
        max-height:75vh;
        flex-direction:column;
    }
    .dropdown.active .dropdown-box{
        display:flex !important;
    }
     .course-list{
        max-height:220px;
        
    }
       .card{
        min-height:60px;    /* fixed height:70px hataya, overlap se bachne ke leya */
    }

    .course-name{
        display: -webkit-box;
        -webkit-line-clamp: 2;      /* 👈 sirf yahan text 2-line tak clamp hoga */
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#f5f7fb;
color:#333;
line-height:1.7;
}
/* ===== HERO SECTION (CSS) — exact match to reference card design ===== */

.about-hero{
    width:100%;
    background:#ffffff;
    padding:60px 8% 40px;
}

/* Top heading — same style as "Our Team" */
.hero-heading{
    text-align:center;
    color:#0d6efd;
    font-size:32px;
    font-weight:800;
    margin-bottom:30px;
}

/* White card wrapper — matches reference card exactly */
.hero-card{
    max-width:1100px;
    margin:0 auto;
    background:#fff;
    border:1px solid #000000;
    border-radius:12px;
    padding:35px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.hero-left{
    flex:1;
    min-width:280px;
}

.hero-left h1{
    font-size:30px;
    font-weight:800;
    color:#1a1a1a;
    line-height:1.3;
    margin-bottom:14px;
}

.hero-sub{
    font-size:16px;
    color:#444;
    margin-bottom:18px;
     font-weight:600;
}

.hero-info p{
    display:flex;
    align-items:center;
    gap:10px;
     font-weight:600;
    font-size:15px;
    color:#333;
    margin:8px 0;
}

.hero-info i{
    color:#0d6efd;
    width:16px;
    text-align:center;
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 38px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:#084298;
}

/* Right side photo — rounded box, same as reference */
.hero-right{
    flex:0 0 auto;
    display:flex;
    justify-content:center;
}

.hero-right img{
    width:320px;
    max-width:100%;
    height:340px;
    object-fit:cover;
    border-radius:12px;
}

/* decorative dots below card */


/* Mobile */
@media(max-width:768px){

    .hero-heading{
        font-size:24px;
    }

    .hero-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .hero-info p{
        justify-content:center;
    }

    .hero-left h1{
        font-size:24px;
    }

    .hero-right img{
        width:100%;
        max-width:300px;
        height:280px;
    }

    .dots{
        gap:60px;
    }
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:#fff;
text-align:center;
padding:20px;
}

.overlay h1{
font-size:52px;
margin:15px 0;
}

.overlay p{
max-width:700px;
font-size:18px;
}

.container{
display:flex;
align-items:center;
justify-content:center;
gap:60px;
padding:80px 10%;
flex-wrap:wrap;
}

.about-image img{
width:500px;
border-radius:15px;
box-shadow:0 15px 30px rgba(0,0,0,.2);
}

.about-content{
flex:1;
min-width:300px;
}

.about-content h2{
font-size:38px;
color:#0056b3;
margin-bottom:20px;
}

.about-content p{
margin-bottom:20px;
}

.btn{
display:inline-block;
padding:14px 30px;
background:#4a4ddb;
color:#fff;
text-decoration:none;
border-radius:15px;
transition:.4s;
}

.btn:hover{
background:#ff9800;
}

.mission{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
padding:60px 10%;
}

.card{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.card:hover{
transform:translateY(-10px);
}

.features{
padding:80px 10%;
text-align:center;
}

.features h2{
font-size:40px;
margin-bottom:50px;
color:#0056b3;
}

.feature-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:25px;
}

.feature{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.4s;
}

.feature:hover{
transform:translateY(-10px);
}

.icon{
font-size:50px;
margin-bottom:15px;
}

.counter-section{
background:#0056b3;
padding:70px 10%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:30px;
text-align:center;
color:#fff;
}

.counter{
font-size:50px;
margin-bottom:10px;
}

.team{
padding:80px 10%;
text-align:center;
}

.team h2{
font-size:40px;
margin-bottom:40px;
}

.team-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.team-card{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.4s;
}

.team-card:hover{
background:#0056b3;
color:#fff;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
}

@media(max-width:768px){

.overlay h1{
font-size:34px;
}

.about-image img{
width:100%;
}

.container{
padding:50px 20px;
}

}

/* program*/
.program-section{
    padding:60px 8%;
    background:#f8f9fc;
}

.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title h2{
    font-size:40px;
    color:#06264d;
    margin-bottom:12px;
    font-weight:700;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#555;
    font-size:18px;
    line-height:1.7;
}
.program-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:22px;
}

.program-card{
    background:#fff;
    border-radius:12px;
    padding:20px 16px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
    min-height:190px;   /* Small card height */
}

.program-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(13,110,253,.15);
}

.program-card .icon{
    width:52px;
    height:52px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#e7f0ff;
    color:#0d6efd;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.program-card h3{
    font-size:22px;
    color:#06264d;
    margin-bottom:10px;
    font-weight:600;
}

.program-card p{
    font-size:15px;
    color:#666;
    line-height:1.6;
    margin:0;
}

/* footer */

.footer{
    background:#0d1b2a;
    color:#fff;
    padding-top:70px;
}

.footer-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:50px;
}

.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
    color:#4fc3f7;
}

.footer-box p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin:12px 0;
}

.footer-box ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#4fc3f7;
    padding-left:8px;
}

.social-icons{
    margin-top:25px;
}

.social-icons a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    background:#1b263b;
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#4fc3f7;
    color:#000;
    transform:translateY(-5px);
}

.footer-btn{
    display:inline-block;
    margin-top:10px;
    padding:12px 28px;
    background:#328cb6;
    color:#000;
    text-decoration:none;
    border-radius:15px;
    font-weight:bold;
    transition:.3s;
}

.footer-btn:hover{
    background:#fff;
}

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#bbb;
    font-size:15px;
}

/* Responsive */
.floating-contact{
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-contact a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#0B5ED7;
}

.floating-contact a:hover{
    transform:scale(1.1);
}
@media(max-width:768px){

.footer{
    text-align:center;
}

.social-icons{
    justify-content:center;
}

}
