/*=====================================
  POPUP OVERLAY
=====================================*/
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 35, 0.75);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/*=====================================
  POPUP CARD
=====================================*/
.popup-content {
    background: #fff;
    border-radius: 20px;
    width: 360px;
    max-width: 90%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    animation: popUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header strip */
.popup-content::before {
    content: "";
    display: block;
    height: 90px;
    background: linear-gradient(135deg, #0d6efd, #0047b3);
}

.popup-content h2 {
    position: absolute;
    top: 22px;
    left: 25px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.popup-content h2::after {
    content: "Fill the form to get a callback";
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #dbe8ff;
    margin-top: 4px;
}

/*=====================================
  CLOSE BUTTON
=====================================*/
.close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.close:hover {
    background: #fff;
    color: #0047b3;
    transform: rotate(90deg);
}

/*=====================================
  FORM
=====================================*/
.popup-content form {
    padding: 28px 25px 25px;
}

.popup-content input {
    width: 100%;
    padding: 13px 14px;
    margin: 8px 0;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

.popup-content input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.popup-content input::placeholder {
    color: #9aa5b1;
}

.popup-content button {
    width: 100%;
    padding: 13px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #0d6efd, #0047b3);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.3);
}

.popup-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.4);
}

.popup-content button:active {
    transform: translateY(0);
}

/*=====================================
  MOBILE
=====================================*/
@media (max-width: 480px) {
    .popup-content {
        width: 92%;
        border-radius: 16px;
    }
    .popup-content::before {
        height: 75px;
    }
    .popup-content h2 {
        font-size: 19px;
        top: 16px;
    }
    .popup-content form {
        padding: 22px 20px 20px;
    }
}

/*=====================================
  RESET
=====================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    /* background: #f4f4f4; */
    background: #fff;
    color: #222;
    line-height: 1.6;
    padding-top: 0;
}

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: 18px;
    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;
}
.marquee {
    width: 100%;
 background: #0B3D91;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 25s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* MOBILE */

@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;
    }

}

/*==========================
 HERO
==========================*/

.hero {

    height: 80vh;
    overflow: hidden;
    position: relative;
    background: #081b29;
  

}

.slider {

    width: 100%;
    height: 100%;
    position: absolute;

}

.slide {

    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;

    opacity: 0;
    transition: 1s;

}

.slide.active {

    opacity: 1;
    z-index: 1;

}

/* Backgrounds */

.slide:nth-child(1) {

    background:
        linear-gradient(rgba(5, 15, 35, .82), rgba(5, 15, 35, .82)),
        url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1600") center/cover;

}

.slide:nth-child(2) {

    background:
        linear-gradient(rgba(5, 15, 35, .82), rgba(5, 15, 35, .82)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1600") center/cover;

}

.slide:nth-child(3) {

    background:
        linear-gradient(rgba(5, 15, 35, .82), rgba(5, 15, 35, .82)),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600") center/cover;

}

/* Dropdown */
.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;
    color: #333;
    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;
}

/*==========================
 HERO CONTENT
==========================*/

.hero-container {

    width: 90%;
    max-width: 1300px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

}

.hero-text {

    flex: 1;
    color: #fff;

}

.tag {

    display: inline-block;

    padding: 8px 18px;

    background: #0d6efd;

    border-radius: 30px;

    font-size: 14px;

    margin-bottom: 25px;

}

.hero-text h1 {

    font-size: 45px;

    line-height: 1.2;

    margin-bottom: 20px;

}

.hero-text span {

    color: #4fc3ff;

}

.hero-text p {

    font-size: 20px;

    line-height: 1.8;

    max-width: 580px;

    margin-bottom: 35px;

}

/* Buttons */

.hero-btns {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.btn {

    padding: 15px 38px;

    background: #0d6efd;

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .4s;

}

.btn:hover {

    background: #0051d4;

    transform: translateY(-5px);

}

.btn-outline {

    padding: 15px 38px;

    border: 2px solid #fff;

    border-radius: 50px;

    text-decoration: none;

    color: #fff;

    font-weight: 600;

    transition: .4s;

}

.btn-outline:hover {

    background: #fff;

    color: #081b29;

}

/*==========================
 IMAGE
==========================*/

.hero-image {

    flex: 1;

    display: flex;
    justify-content: center;

}

.hero-image img {

    width: 520px;

    max-width: 100%;

    animation: float 4s ease infinite;

    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .4));

}

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

}

/*==========================
 Buttons
==========================*/

.prev,
.next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .2);

    color: #fff;

    font-size: 28px;

    cursor: pointer;

    z-index: 20;

    transition: .3s;

}

.prev {

    left: 25px;

}

.next {

    right: 25px;

}

.prev:hover,
.next:hover {

    background: #0d6efd;

}

/*==========================
 Responsive
==========================*/

@media(max-width:991px) {

    .hero {

        height: auto;
        padding: 100px 0;

    }

    .hero-container {

        flex-direction: column-reverse;
        text-align: center;

    }

    .hero-text h1 {

        font-size: 24px;

    }

    .hero-text p {

        margin: auto auto 30px;

    }

    .hero-btns {

        justify-content: center;

    }

    .hero-image img {

        width: 320px;

    }

}


.course-section {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
}

.course-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.course-section p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}



.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.categories button {
    padding: 12px 28px;
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.categories button:hover,
.categories button.active {
    background: #0d6efd;
    color: #fff;
}


/*=====================================
  COURSE GRID
=====================================*/
.course-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
    justify-content: center;
    gap: 25px;
}

.program-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    color:#0d47a1;
    font-weight:600;
    font-size:32px;
}

.program-title::before,
.program-title::after{
    content:"";
    width:80px;
    height:3px;
    background:linear-gradient(90deg,#1c1cd1,#4f8cff);
    border-radius:10px;
}

@media(max-width:600px){
    .program-title{
        font-size:24px;
        gap:12px;
    }

    .program-title::before,
    .program-title::after{
        width:40px;
    }
}

/*=====================================
  COURSE CARD
=====================================*/
/* .course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
} */
/* .course-card {
    background: #fff;
    border-radius: 1.8rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08), 0 0 0 1px #e2eaf2;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 0.4rem;
    transition: .3s;
} */
.course-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;
}
/* .course-card:hover {
    transform: translateY(-8px);
} */
.course-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(13,110,253,.18);
}

/* .course-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 1.4rem;
    display: block;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
} */
 .course-card img{
    width:100%;
    height:140px;
      border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    object-fit:cover;
    border-radius:14px 14px 0 0;
}
.course-content{
    padding:18px;
}
.course-content h3{
    font-size:22px;
    font-weight:700;
    color:#222;
    line-height:1.4;
    min-height:65px;
    margin-bottom:18px;
}

.view-more-wrapper{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:40px;
}

.view-more-btn{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 20px rgba(13,110,253,.25);
}

.view-more-btn:hover{
    background:#0848c9;
    transform:translateY(-3px);
}
.extra-course{
    display:none;
}

@media (max-width:768px){

    .view-more-wrapper{
        margin-top:30px;
    }

    .view-more-btn{
        width:90%;
        max-width:260px;
        padding:14px 0;
        font-size:15px;
    }

}
/*=====================================
  COURSE CONTENT
=====================================*/
.course-content {
    padding: 20px;
}

.course-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.info {
    display: flex;
    justify-content: space-between;
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.price {
    color: #0d6efd;
    font-size: 24px;
    font-weight: bold;
}

.hidden {
    display: none;
}

.menu-toggle {
    display: none;
}

/*=====================================
  RESPONSIVE
=====================================*/
@media(max-width:768px) {

    .navbar{
        position:relative;
        display:flex;
        justify-content:flex-end;
    }


    .menu-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        padding: 15px;
        color: #005ea8;
    }

        .navbar ul{
        display:none;
        flex-direction:column;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        box-shadow:0 12px 25px rgba(0,0,0,.12);
        padding:10px 0;
        gap:0;
        z-index:9998;
    }
.navbar ul.active{
        display:flex;
    }

    .navbar ul li{
        width:100%;
        text-align:center;
    }

    .navbar ul li a{
        justify-content:center;
        padding:15px;
        font-size:16px;
        border-bottom:1px solid #f0f0f0;
    }


    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hero {
        height: 75vh;
    }

    .content h1 {
        font-size: 20px;
    }

    .content p {
        font-size: 17px;
    }

    .prev,
    .next {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .course-section h2 {
        font-size: 28px;
    }

    .categories {
        gap: 10px;
    }

    .categories button {
        width: 100%;
    }

    .course-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

}

/* ================= SUCCESS PATH ================= */

/*==========================
    SUCCESS PATH
==========================*/

.success-path {
    padding: 40px 6% 220px;   /* bottom padding badha di taaki staircase cards ke liye jagah bane */
    /* background: #f7f9fc; */
    margin: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0b66c3;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 17px;
}

/* Timeline */

.timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
}

/* Stair Effect */

.step:nth-child(1) {
    transform: translateY(180px);
}

.step:nth-child(2) {
    transform: translateY(130px);
}

.step:nth-child(3) {
    transform: translateY(90px);
}

.step:nth-child(4) {
    transform: translateY(60px);
}

.step:nth-child(5) {
    transform: translateY(0);
}

/* Card */

.step {
    position: relative;
}

.step-card {
    position: relative;
    width: 210px;
    min-height: 180px;
    background: #fff;
    border-radius: 18px;
    padding: 55px 18px 22px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Bottom Line */

.step-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    border-radius: 0 0 18px 18px;
    background: #0b66c3;
}

.step:nth-child(2) .step-card::before {
    background: #f39c12;
}

.step:nth-child(3) .step-card::before {
    background: #18b97a;
}

.step:nth-child(4) .step-card::before {
    background: #8d6df8;
}

.step:nth-child(5) .step-card::before {
    background: #0b66c3;
}

/* Number */

.step-number {
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
    z-index: 10;
}

.blue {
    background: #0b66c3;
}

.orange {
    background: #f39c12;
}

.green {
    background: #18b97a;
}

.purple {
    background: #8d6df8;
}

/* Shadow */

.step::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -15px;
    height: 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .08);
}

/* Responsive */

@media(max-width:1100px) {

    .timeline {
        flex-wrap: wrap;
        gap: 30px;
    }

    .step {
        transform: none !important;
    }

    .step-card {
        width: 250px;
    }

    .step::after {
        display: none;
    }

}

@media(max-width:768px) {

    .success-path {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 340px;
        min-height: auto;
    }

}

/* ================= FEATURES ================= */

.features {
    padding: 60px 8% 80px; 
   
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #0d47a1;
}

.feature-box {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.feature {
    width: 260px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.feature:hover {
    transform: translateY(-8px);
}

.feature h3 {
    margin-bottom: 15px;
    color: #1565c0;
}

.feature p {
    color: #666;
}


/* ================= COUNTER ================= */

.counter-section {
    padding: 70px 8%;
    background: linear-gradient(135deg, #1565c0, #0d47a1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.counter-box {
    color: #fff;
    margin: 20px;
}

.counter-box h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 18px;
}


/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

    .path-container,
    .feature-box,
    .counter-section {
        flex-direction: column;
        align-items: center;
    }

    .path-card,
    .feature {
        width: 100%;
        max-width: 350px;
    }

    .counter-box h2 {
        font-size: 42px;
    }

}

/* ================= FOOTER ================= */

/*==========================
 TESTIMONIAL SECTION
===========================*/

.testimonials {
    padding: 90px 8%;
    background: #f8fbff;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    color: #0d47a1;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Slider */

.testimonial-slider {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}

/* Card */

.testimonial-card {
    width: 340px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    flex-shrink: 0;
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1565c0;
    margin-bottom: 20px;
}

.testimonial-card h3 {
    margin-bottom: 5px;
    color: #222;
}

.testimonial-card span {
    color: #1565c0;
    font-weight: 600;
}

.stars {
    margin: 15px 0;
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
}

/* Infinite Animation */

@keyframes scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-365px * 3));
    }

}

/* Mobile */

@media(max-width:768px) {

    .testimonials {
        padding: 70px 5%;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .testimonial-card {
        width: 280px;
    }

    @keyframes scroll {

        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(calc(-305px * 3));
        }

    }

}


.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: #3e99c4;
    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;
    }

}


   .contact-section {
      padding: 80px 5%;
      background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
      font-family: 'Inter', 'Poppins', sans-serif;
    }

    .contact-container {
      max-width: 1250px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 2.8rem;
      overflow: hidden;
      box-shadow: 0 30px 65px rgba(13, 20, 50, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8);
    }

    /* ===== LEFT SIDE - CAREER INFO + IMAGE BACKGROUND ===== */
    .contact-info {
      background: linear-gradient(155deg, #ffffff 0%, #f2f7ff 100%);
      padding: 3.5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-right: 1px solid rgba(13, 110, 253, 0.06);
    }

    /* Background image placed absolutely inside left panel */
    .info-bg-image {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500" opacity="0.12"><circle cx="400" cy="80" r="120" fill="%230d6efd"/><circle cx="80" cy="380" r="140" fill="%230047b3"/><path d="M350 250 L450 320 L380 410 L270 340 Z" fill="%230d6efd"/><circle cx="420" cy="400" r="60" fill="%2300a6ff"/></svg>');
      background-repeat: no-repeat;
      background-position: top right;
      background-size: 65%;
      pointer-events: none;
      z-index: 0;
    }

    /* Content above background */
    .info-content {
      position: relative;
      z-index: 2;
    }

    .info-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(13, 110, 253, 0.08);
      color: #0d6efd;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.6px;
      padding: 0.4rem 1.3rem;
      border-radius: 2rem;
      margin-bottom: 1.6rem;
      border: 1px solid rgba(13, 110, 253, 0.18);
    }

    .contact-info h2 {
      font-size: 2.4rem;
      font-weight: 700;
      color: #0a1c38;
      line-height: 1.25;
      margin-bottom: 1.1rem;
      font-family: 'Poppins', sans-serif;
    }

    .contact-info .desc {
      color: #3f5068;
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 2.4rem;
      font-weight: 400;
    }

    .info-box {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(8px);
      padding: 0.85rem 1.4rem;
      border-radius: 1.1rem;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(13, 110, 253, 0.1);
      box-shadow: 0 5px 12px rgba(0, 0, 0, 0.02);
    }

    .info-box:hover {
      background: #ffffff;
      border-color: rgba(13, 110, 253, 0.25);
      transform: translateX(8px);
      box-shadow: 0 12px 22px rgba(13, 110, 253, 0.08);
    }

    .info-box i {
      font-size: 1.3rem;
      width: 44px;
      height: 44px;
      background: #eef4ff;
      color: #0d6efd;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .info-box span {
      font-weight: 600;
      color: #0d1f3c;
      font-size: 0.98rem;
    }

    /* ===== RIGHT SIDE - MODERN FORM WITH SHINE ===== */
    .contact-form {
      background: radial-gradient(circle at 80% 10%, rgba(13, 110, 253, 0.04) 0%, transparent 55%),
                  linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
      padding: 3.5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .form-header {
      margin-bottom: 2.2rem;
    }

    .form-tag {
      font-size: 0.78rem;
      font-weight: 700;
      color: #0d6efd;
      letter-spacing: 0.7px;
      background: rgba(13, 110, 253, 0.07);
      padding: 0.35rem 1.2rem;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 0.8rem;
    }

    .form-header h3 {
      font-size: 2rem;
      font-weight: 700;
      color: #0b1e3c;
      font-family: 'Poppins', sans-serif;
    }

    .form-group {
      margin-bottom: 1.3rem;
    }

    .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-wrapper i {
      position: absolute;
      left: 18px;
      font-size: 1.1rem;
      color: #728197;
      transition: color 0.3s, transform 0.2s;
      pointer-events: none;
      z-index: 2;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      padding: 1rem 1.2rem 1rem 3rem;
      background: #ffffff;
      border: 1.5px solid rgba(13, 110, 253, 0.1);
      border-radius: 1.1rem;
      font-size: 0.95rem;
      font-weight: 500;
      color: #0f2643;
      outline: none;
      transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
      font-family: 'Inter', sans-serif;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
      /* subtle inner shine */
      background: linear-gradient(white, #fcfdff);
    }

    /* Shine effect on hover */
    .contact-form input:hover,
    .contact-form select:hover,
    .contact-form textarea:hover {
      border-color: rgba(13, 110, 253, 0.4);
      box-shadow: 0 10px 20px rgba(13, 110, 253, 0.08), 0 0 0 1px rgba(13,110,253,0.05);
      background: #ffffff;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: #0d6efd;
      background: #ffffff;
      box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.12), 0 15px 25px rgba(13, 110, 253, 0.08);
    }

    .input-wrapper:focus-within i {
      color: #0d6efd;
      transform: scale(1.1);
    }

    .contact-form select {
      appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%230d6efd" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
      background-repeat: no-repeat;
      background-position: right 1.2rem center;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    .submit-btn {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(105deg, #0d6efd 0%, #0047b3 100%);
      border: none;
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      border-radius: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.35s ease;
      margin-top: 0.8rem;
      box-shadow: 0 18px 28px rgba(13, 110, 253, 0.3);
      letter-spacing: 0.3px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .submit-btn i {
      transition: transform 0.3s;
    }

    .submit-btn:hover {
      background: linear-gradient(105deg, #0047b3, #00235c);
      box-shadow: 0 22px 35px rgba(13, 110, 253, 0.45);
      transform: translateY(-3px);
    }

    .submit-btn:hover i {
      transform: translateX(5px);
    }

    /* thank you message inside form area */
    .thankyou-card {
      display: none;
      text-align: center;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(14px);
      border-radius: 2rem;
      padding: 2.8rem 2rem;
      border: 1px solid rgba(13, 110, 253, 0.15);
    }

    .thankyou-card i {
      font-size: 3.2rem;
      color: #0d6efd;
      margin-bottom: 0.7rem;
    }

    .thankyou-card h3 {
      font-size: 2rem;
      color: #0b1e3c;
      font-weight: 700;
    }

    .thankyou-card button {
      background: #0d6efd;
      border: none;
      color: white;
      padding: 0.7rem 2rem;
      border-radius: 2rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 1.4rem;
      transition: 0.3s;
    }

    .thankyou-card button:hover {
      background: #0047b3;
    }

    /* Responsive */
    @media (max-width: 850px) {
      .contact-container {
        grid-template-columns: 1fr;
        border-radius: 2.2rem;
      }
      .contact-info {
        border-right: none;
      }
      .info-bg-image {
        background-size: 45%;
      }
    }





    /* STUDENT VIDEO */
       /* ===== VIDEO SECTION ONLY ===== */
    .video-showcase-section {
      padding: 90px 6%;
    
      font-family: 'Inter', 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
    }

    /* decorative background blobs */
    .video-showcase-section::before {
      content: "";
      position: absolute;
      top: -120px;
      right: -80px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(13,110,253,0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .video-showcase-section::after {
      content: "";
      position: absolute;
      bottom: -100px;
      left: -60px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(0,71,179,0.05) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .video-section-container {
      max-width: 1350px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* section header */
    .video-section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .video-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(13, 110, 253, 0.07);
      color: #0d6efd;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.7px;
      padding: 0.4rem 1.4rem;
      border-radius: 2rem;
      margin-bottom: 1rem;
      border: 1px solid rgba(13,110,253,0.18);
    }

    .video-section-header h2 {
      font-size: 2.6rem;
      font-weight: 800;
      color: #091c3e;
      font-family: 'Poppins', sans-serif;
      letter-spacing: -0.5px;
      margin-bottom: 0.5rem;
    }

    .video-section-header p {
      color: #4a5c74;
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* main grid: video card + side icons */
    .video-grid-layout {
      display: grid;
      grid-template-columns: 1fr 1.8fr 1fr;
      gap: 2.2rem;
      align-items: center;
    }

    /* left & right decorative icons/images */
    .side-decor {
      display: flex;
      flex-direction: column;
      gap: 2.2rem;
      justify-content: center;
    }

    .decor-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px);
      padding: 1rem 1.3rem;
      border-radius: 1.4rem;
      border: 1px solid rgba(13,110,253,0.08);
      transition: all 0.35s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    }

    .decor-item:hover {
      transform: translateY(-5px);
      background: white;
      box-shadow: 0 18px 30px rgba(13,110,253,0.1);
      border-color: rgba(13,110,253,0.2);
    }

    .decor-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, #eef4ff, #ffffff);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: #0d6efd;
      box-shadow: 0 6px 14px rgba(13,110,253,0.12);
    }

    .decor-text strong {
      display: block;
      font-weight: 700;
      color: #0b1e3c;
      font-size: 0.95rem;
    }

    .decor-text span {
      font-size: 0.8rem;
      color: #5b6d85;
    }

    /* VIDEO CARD - center */
    .video-card {
      background: #ffffff;
      border-radius: 2.2rem;
      overflow: hidden;
      box-shadow: 0 30px 55px rgba(13, 20, 50, 0.12), 0 0 0 1px rgba(255,255,255,0.8);
      transition: transform 0.3s;
      position: relative;
    }

    .video-card:hover {
      transform: translateY(-6px);
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16; /* reel type vertical ratio */
      max-height: 580px;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* custom video controls overlay */
    .video-controls-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      padding: 2rem 1.2rem 1.2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
    }

    .video-wrapper:hover .video-controls-overlay,
    .video-wrapper.paused .video-controls-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .control-btn {
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.3);
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s;
    }

    .control-btn:hover {
      background: white;
      color: #0d6efd;
      transform: scale(1.08);
    }

    .mute-btn {
      background: rgba(255,255,255,0.2);
    }

    .play-pause-btn {
      width: 52px;
      height: 52px;
      font-size: 1.4rem;
      background: rgba(13,110,253,0.8);
      border: 2px solid white;
    }

    /* video label */
    .video-label {
      position: absolute;
      top: 1.2rem;
      left: 1.2rem;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(10px);
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      border: 1px solid rgba(255,255,255,0.25);
    }

    /* responsive */
    @media (max-width: 950px) {
      .video-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .side-decor {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
      }
      .decor-item {
        flex: 1 1 140px;
      }
      .video-wrapper {
        aspect-ratio: 4 / 5;
      }
    }
    /* END STUDENT VIDEO */
/* anouncment */
/*==========================
      ANNOUNCEMENT
===========================*/
.announcement-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#fff;
    margin-bottom:50px;
  border: 5px solid #0d6efd;
    border-radius: 15px;
    background-color: #0051d4;
    line-height:1.3;
    position:relative;
}

.announcement-title span{
    color:#ff9800;
}

/* Underline Effect */
.announcement-title::after{
    content:"";
    width:90px;
    height:4px;
    background:#ff9800;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}
.course-lists{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 20px;
}
.announce-col {
    width: 100%;
}
.announce-white-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    padding: 25px;
}
.col-heading {
    font-size: 24px;
    font-weight: 800;
    color: #173f90;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.heading-divider {
    margin-bottom: 15px;
    border-top: 1px solid #e2e2e2;
}

.announcement-card {
    background: #eef0fb;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}
.student-card {
    background: #eef0fb;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}



.student-card:hover .student-scroll {
    animation-play-state: paused;
}

.student-entry {
    text-align: center;
    padding: 20px;
}

.student-tag {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
    color: #173f90;
}

.student-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    background: #ddd;
}

.student-entry h4 {
    margin: 8px 0;
    font-size: 17px;
    color: #0A1F6B;
}

.student-entry p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: #333;
    margin: 3px 0;
}

.student-card hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 20px;
}

@media (max-width: 900px) {
    .student-card {
        height: 350px;
    }
    .student-photo {
        width: 75px;
        height: 75px;
    }
}
.announcement-scroll {
    animation: announcement 18s linear infinite;
    padding: 20px;
}

.announcement-card:hover .announcement-scroll {
    animation-play-state: paused;
}

.announcement-item {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.announcement-item strong {
    display: block;
    font-size: 17px;
    color: #0A1F6B;
    margin-bottom: 8px;
}

.announcement-item p {
    margin: 8px 0;
}

.announcement-item ul {
    margin: 8px 0 8px 20px;
    padding: 0;
}

.announcement-item ul li {
    list-style: disc;
    margin-bottom: 4px;
}

@keyframes announcement {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@media (max-width: 900px) {
    .announce-white-card {
        padding: 18px;
    }
    .announcement-card {
        height: 350px;
    }
}
.course-lists span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1.8px solid #0d6efd;
    border-radius: 15px;
    background: #f5f9ff;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    width: auto;
    height: auto;
    flex: 0 0 auto;
    transition: all .3s ease;
}

.course-lists span:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-2px);
}


.announce-grid{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:40px;

width:90%;

margin:auto;

max-width:1300px;

padding:70px 0;

}

.col-heading{

font-size:28px;

font-weight:800;

color:#173f90;

margin-bottom:15px;

text-transform:uppercase;

}

.announcement-card,

.student-card{

background:#eef0fb;

height:520px;

overflow:hidden;

border-radius:10px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

position:relative;

}







/* Announcement */

.announcement-scroll{

animation:announcement 55s linear infinite;

}

.announcement-card:hover .announcement-scroll{

animation-play-state:paused;

}
.announcement-item{
    background: #eef2ff;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    color: #333;
    font-size: 17px;
    line-height: 1.8;
    border-left: 5px solid #0A1F6B;
}





/* Student */

.student-scroll{

animation:student 100s linear infinite;

}

.student-card:hover .student-scroll{

animation-play-state:paused;

}

.student-entry{

text-align:center;

padding:20px;

}

.student-tag{

font-weight:bold;

margin-bottom:15px;

font-size:18px;

}

.student-photo{

width:110px;

height:110px;

border-radius:50%;

object-fit:cover;

margin-bottom:15px;

border:4px solid white;

box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.student-entry h4{

margin:10px 0;

font-size:18px;

}

.student-entry p{

font-size:15px;

line-height:1.6;

font-weight:600;

}

hr{

border:none;

border-top:1px solid #ccc;

margin:0;

}







@keyframes announcement{

 0% {
        transform: translateY(520px);   /* card ki height jitna neeche se start */
    }
    100% {
        transform: translateY(-100%);   /* upar se pura exit ho jaye */
    }

}







@keyframes student{

 0% {
        transform: translateY(520px);   /* student-card ki height jitna neeche se start */
    }
    100% {
        transform: translateY(-100%);   /* pura upar se exit */
    }

}





@media(max-width:900px){

.announce-grid{

grid-template-columns:1fr;

}

.announcement-card,

.student-card{

height:420px;

}

}
/* class infrastructure */
.infra-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1.3rem;
    
  padding: 2rem 1.3rem; 
}

.infra-card {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    border-radius: 2.5rem 2.5rem 2rem 2rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15), 0 8px 24px -6px rgba(0, 20, 40, 0.08);
    padding: 2.5rem 2rem 2.8rem;
    transition: all 0.2s ease;
    margin: 0 auto;
}

/* ----- HEADER : center, uppercase accent ----- */
.infra-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.infra-header h1 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0b66c3;
    display: inline-block;
    background: linear-gradient(145deg, #0b2a44 0%, #1c3f5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 4px solid #cbd8e6;
    padding-bottom: 0.3rem;
    line-height: 1.2;
}

.infra-header .sub-head {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #3e5a73;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0.1rem;
    background: #eef2f7;
    display: inline-block;
    padding: 0.2rem 1.6rem;
    border-radius: 40px;
    -webkit-text-fill-color: #1b3b4f;
    backdrop-filter: blur(2px);
    box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.6);
}

/* ----- CAROUSEL (swipe + arrows) ----- */
.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 2rem;
    background: #eef3f8;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 8px 20px rgba(0, 20, 30, 0.08);
    padding: 0.5rem 0;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 1.5rem;
    margin: 0 0.2rem;
}

.carousel-track {
    display: flex;
    gap: 1.2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 0.8rem 0.4rem;
}

/* ---- each slide (image card) ---- */
.carousel-slide {
    flex: 0 0 auto;
    width: calc(100% / 4 - 1rem);
    min-width: 160px;
    border-radius: 1.8rem;
    background: white;
    box-shadow: 0 8px 20px -8px rgba(0, 20, 30, 0.12), 0 2px 6px rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    transition: transform 0.2s ease, box-shadow 0.3s;
    overflow: hidden;
    padding: 0.4rem;
    box-shadow: 0 4px 16px rgba(0, 20, 30, 0.06), 0 0 0 1px #e2eaf2;
}

.carousel-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 32px -12px rgba(0, 30, 50, 0.2);
}

.carousel-slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1.4rem;
    display: block;
    background: #d4e0ec;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: filter 0.3s;
}

.carousel-slide img:hover {
    filter: brightness(1.02) contrast(1.02);
}

/* ----- navigation buttons (arrows) ----- */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a374b;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 20, 30, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 12px 24px rgba(0, 20, 30, 0.2);
    color: #022b42;
    transform: translateY(-50%) scale(1.04);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.94);
    background: #eaf0f8;
}

.carousel-btn-left {
    left: 6px;
}

.carousel-btn-right {
    right: 6px;
}

/* ----- dots (pagination) ----- */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 30px;
    background: #cbd8e6;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.25s;
    cursor: pointer;
}

.dot.active {
    background: #1d4d6b;
    width: 32px;
    border-color: #7fa3c0;
    box-shadow: 0 0 0 2px rgba(29, 77, 107, 0.15);
}

.dot:hover {
    background: #427a9e;
    transform: scale(1.1);
}

/* small extra: gallery hint */
.photo-gallery-tag {
    text-align: right;
    margin-top: 0.8rem;
    font-size: 0.8rem;
    color: #5f7d96;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.photo-gallery-tag i {
    margin-right: 6px;
    color: #3f6b88;
}

/* ----- responsive: tablet & mobile ----- */
@media screen and (max-width: 1024px) {
    .infra-card {
        padding: 2rem 1.5rem;
    }

    .carousel-slide {
        width: calc(100% / 3 - 1rem);
        min-width: 140px;
    }

    .carousel-slide img {
        height: 160px;
    }
}

@media screen and (max-width: 768px) {
    .infra-header h1 {
        font-size: 2.2rem;
    }

    .carousel-slide {
        width: calc(100% / 2 - 0.8rem);
        min-width: 130px;
    }

    .carousel-slide img {
        height: 150px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .infra-card {
        padding: 1.5rem 0.8rem;
        border-radius: 2rem;
    }

    .infra-header h1 {
        font-size: 1.8rem;
    }

    .carousel-slide {
        width: calc(100% / 1.5 - 0.6rem);
        min-width: 120px;
    }

    .carousel-slide img {
        height: 140px;
    }

    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .carousel-btn-left {
        left: 2px;
    }

    .carousel-btn-right {
        right: 2px;
    }
}

/* course dropdown */



.dropdown-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-35%);
    /* navbar ke niche center */
    width: min(860px, 95vw);

    height: 420px;
    /* fixed height */
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    z-index: 9999;
}
.dropdown > a i{
    transition:.3s;
    font-size:14px;
}

/* dropdown open */
.dropdown:hover > a i{
    transform:rotate(180deg);
}
.dropdown:hover .dropdown-box {
    display: flex;
}

.left-panel {
    width: 190px;

    padding: 10px;

    background: #fefeff;
    border-right: 1px solid #e5e5e5;

    flex-shrink: 0;
}

.left-title {
    font-size: 10px;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.menu-item {
    padding: 12px;
    font-size: 13px;
    border-radius: 7px;
    margin-bottom: 8px;
}

/* Hover Effect */
.menu-item:hover {
    background: #a9b1bd;
    color: #fff;
    border-color: #0d6efd;
}

.menu-item:hover span {
    color: #fff;
}

.tab:hover {
    background: #a9b1bd;
    color: #fff;
    border-color: #0d6efd;
}

.menu-item.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.menu-item.active span {
    color: #fff;
}
@media(max-width:768px){

    .dropdown-box{
        display:none !important;   /* hover wala rule override */
        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;
    }

    .left-panel{
        width:100%;
        display:flex;
        gap:8px;
        border-right:none;
        border-bottom:1px solid #e5e5e5;
    }

    .menu-item{
        flex:1;
        text-align:center;
        font-size:12px;
    }

    .right-panel{
        padding:12px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .course-list{
        max-height:220px;
    }
}
/* ---------- Course Grid ---------- */

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* ---------- Course Card ---------- */

.card {

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;

    min-height: 60px;

    border: 1px solid #ddd;

    border-radius: 12px;

    background: #fff;

    text-decoration: none;

    color: #222;

    transition: .3s;
}

.course-name {

    flex: 1;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.35;

    color: #222;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    word-break: break-word;
}

/* .card{

display:-webkit-box;

-webkit-line-clamp:2;

-webkit-box-orient:vertical;

overflow:hidden;

} */
.card:hover {
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(13, 110, 253, .15);
}

.card.active {
    border: 2px solid #0d6efd;
    background: #eef5ff;
}

.icon {
    width: 34px;
    min-width: 34px;

    font-size: 18px;
    color: #0d6efd;

    display: flex;
    justify-content: center;
    align-items: center;
}

.right-panel {
    flex: 1;
    padding: 16px;
}

.heading {
    font-size: 16px;
    font-weight: 500;
}

.sub {
    font-size: 12px;
    color: #888;
    margin: 4px 0 15px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #fff;
}

.tab.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.course-list {
    height: 300px;
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    padding-bottom: 15px;
}

.course-list::-webkit-scrollbar {
    width: 7px;
}

.course-list::-webkit-scrollbar-thumb {
    background: #bcbcbc;
    border-radius: 20px;
}
.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);
}