* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #f0f5fb;
      color: #0b1b2f;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }



     header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.top-logo{
    width:55px;
    height:auto;
    display:block;
}
/* 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 */
/*====================================
    GOOGLE FONT
=====================================*/
/*start header */


/* TOP STRIP */




/* 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;
}
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;
    }
}


    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    /* footer */
/* 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:#3191bd;
    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 */

@media(max-width:768px){

.footer{
    text-align:center;
}

.social-icons{
    justify-content:center;
}

}
.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);
}
