

* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;

    font-family: 'Poppins', sans-serif;
}


html,
body {
    width: 100%;

    overflow-x: hidden;
}


body {
    padding-top: 130px;
}




.top-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 50px;

    background: #07111f;

    color: #ffffff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 5%;

    z-index: 1001;

    box-sizing: border-box;
}


.top-header a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    white-space: nowrap;

    transition: .3s;
}


.top-header a:hover {
    color: #ffc107;
}


.header-right {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 15px;

    white-space: nowrap;
}




@media (max-width: 1200px) {

    .top-header {
        padding: 0 4%;
    }


    .top-header a {
        font-size: 13px;
    }


    .header-right {
        gap: 12px;
    }
}




@media (max-width: 1024px) {

    .top-header {
        padding: 0 3%;
    }


    .top-header a {
        font-size: 12px;
    }


    .header-right {
        gap: 10px;
    }
}




@media (max-width: 768px) {

    .top-header {
        height: 48px;

        padding: 0 4%;
    }


    .top-header a {
        font-size: 12px;
    }


    .header-right {
        gap: 9px;
    }


    body {
        padding-top: 128px;
    }
}




@media (max-width: 576px) {

    .top-header {
        height: 46px;

        padding: 0 3%;

        gap: 8px;
    }


    .top-header a {
        font-size: 11px;
    }


    .header-right {
        gap: 7px;

        font-size: 11px;
    }


    body {
        padding-top: 126px;
    }
}




@media (max-width: 480px) {

    .top-header {
        height: 45px;

        padding: 0 3%;

        display: flex;

        justify-content: space-between;

        align-items: center;
    }


    .top-header a {
        font-size: 10px;
    }


    .header-right {
        gap: 6px;

        font-size: 10px;
    }


    body {
        padding-top: 125px;
    }
}




@media (max-width: 360px) {

    .top-header {
        height: 44px;

        padding: 0 2.5%;
    }


    .top-header a {
        font-size: 9px;
    }


    .header-right {
        gap: 5px;

        font-size: 9px;
    }


    body {
        padding-top: 124px;
    }
}



.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 90px;

    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 5%;
    box-sizing: border-box;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    z-index: 1000;

    font-size: 24px;
    font-weight: 900;
}



.logo {
    flex-shrink: 0;
}

.logo img {
    width: 340px;
    max-width: 100%;
    height: auto;
    display: block;
}



.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.nav-menu li a:hover {
    color: #dc2626;
}




.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;

    width: 240px;
    padding: 8px 0;
    margin: 0;

    background: #fff;
    border-radius: 10px;
    list-style: none;

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: block;
    padding: 13px 18px;
    font-size: 16px;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}



.apply-btn {
    background: linear-gradient(135deg, #ff512f, #dd2476);
    color: #fff !important;

    padding: 12px 25px;
    border-radius: 50px;

    white-space: nowrap;
}



.menu-btn {
    display: none;
    font-size: 32px;
    cursor: pointer;
}



@media (max-width: 1200px) {

    .navbar {
        height: 85px;
        padding: 0 3%;
    }

    .logo img {
        width: 270px;
    }

    .nav-menu {
        gap: 14px;
    }

    .nav-menu li a {
        font-size: 16px;
    }

    .apply-btn {
        padding: 10px 18px;
    }
}



@media (max-width: 1100px) {

    .navbar {
        height: 80px;
        padding: 0 3%;
    }

    .logo img {
        width: 230px;
    }

    .menu-btn {
        display: block;
        font-size: 32px;
    }

    .nav-menu {
        position: fixed;
        top: 130px;
        right: -100%;

        width: 320px;
        max-width: 85%;

        height: calc(100vh - 130px);

        background: #fff;

        flex-direction: column;
        align-items: flex-start;

        padding: 30px 25px;
        box-sizing: border-box;

        gap: 20px;

        transition: .4s;

        box-shadow: -5px 0 20px rgba(0, 0, 0, .15);

        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        font-size: 19px;
        padding: 6px 0;
    }



    .dropdown-menu {
        position: static;

        width: 100%;

        opacity: 1;
        visibility: visible;

        display: none;

        box-shadow: none;

        margin-top: 5px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        font-size: 17px;
        padding: 12px 15px;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 13px 20px !important;
    }
}


@media (max-width: 991px) {

    .navbar {
        height: 85px;
        padding: 0 4%;
    }

    .logo img {
        width: 300px;
    }

    .menu-btn {
        display: block;
        font-size: 34px;
    }

    .nav-menu {
        position: fixed;

        top: 135px;
        right: -100%;

        width: 330px;
        max-width: 90%;

        height: calc(100vh - 135px);

        background: #fff;

        flex-direction: column;
        align-items: flex-start;

        padding: 30px;
        box-sizing: border-box;

        gap: 22px;

        transition: .4s;

        box-shadow: -5px 0 20px rgba(0, 0, 0, .15);

        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        font-size: 19px;
        padding: 5px 0;
    }



    .dropdown-menu {
        position: static;

        width: 100%;

        opacity: 1;
        visibility: visible;

        display: none;

        box-shadow: none;

        border-radius: 5px;

        margin-top: 8px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        font-size: 17px;
        padding: 12px 15px;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 13px 20px !important;
    }
}




@media (max-width: 768px) {

    .navbar {
        top: 50px;
        height: 85px;
        padding: 0 15px;
    }

    .logo img {
        width: 280px;
    }

    .menu-btn {
        font-size: 32px;
    }

    .nav-menu {
        top: 135px;
        height: calc(100vh - 135px);
        width: 100%;
        max-width: 100%;
        padding: 30px 25px;
    }

    .nav-menu li a {
        font-size: 20px;
    }
}




@media (max-width: 480px) {

    .navbar {
        height: 80px;
        padding: 0 12px;
    }

    .logo img {
        width: 240px;
    }

    .menu-btn {
        font-size: 30px;
    }

    .nav-menu {
        top: 130px;
        height: calc(100vh - 130px);
        padding: 25px 20px;
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 19px;
    }

    .dropdown-menu li a {
        font-size: 17px;
    }

    .apply-btn {
        font-size: 18px;
        padding: 14px 20px !important;
    }
}




@media (max-width: 360px) {

    .logo img {
        width: 205px;
    }

    .menu-btn {
        font-size: 28px;
    }

    .nav-menu li a {
        font-size: 18px;
    }
}








.mission-header {
    width: 100%;
    min-height: 180px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #0b3d91, #003366);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

/* Overlay */
.mission-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Title */
.mission-header h2 {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.2;
}

/* Underline */
.mission-header h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #00c6ff;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Tablet */
@media (max-width: 768px) {
    .mission-header {
        min-height: 160px;
        padding: 25px 15px;
    }

    .mission-header h2 {
        letter-spacing: 1.5px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .mission-header {
        min-height: 130px;
        padding: 20px 12px;
    }

    .mission-header h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .mission-header h2::after {
        width: 60px;
        height: 3px;
        bottom: -9px;
    }
}


.hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .65)
        ),
        url("../img/rvc-2.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 60px;

    padding: 140px 8% 80px;

    box-sizing: border-box;
}


/* =====================================
   HERO CONTENT
===================================== */

.hero-content {
    width: 100%;
    max-width: 650px;

    color: white;
}


/* =====================================
   BADGE
===================================== */

.badge {
    display: inline-block;

    padding: 12px 25px;

    background: #ffc107;
    color: #111;

    font-weight: 600;

    border-radius: 50px;

    margin-bottom: 20px;

    animation: float 3s infinite;
}


/* =====================================
   HEADING
===================================== */

.hero-content h1 {
    font-size: 70px;

    line-height: 1.1;

    margin: 0 0 20px;

    animation: slideLeft 1s ease;
}

.hero-content h1 span {
    color: #ffc107;
}


/* =====================================
   PARAGRAPH
===================================== */

.hero-content p {
    font-size: 20px;

    line-height: 1.8;

    margin: 0 0 35px;
}


/* =====================================
   BUTTONS
===================================== */

.hero-buttons {
    display: flex;

    gap: 20px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}


.btn1,
.btn2 {
    display: inline-block;

    padding: 15px 35px;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

    text-align: center;
}


.btn1 {
    background: #c1121f;
    color: white;
}


.btn2 {
    background: white;
    color: #111;
}


.btn1:hover,
.btn2:hover {
    transform: translateY(-4px);
}


/* =====================================
   STATS
===================================== */

.stats {
    display: flex;

    gap: 20px;

    flex-wrap: wrap;
}


.stat-box {
    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(10px);

    padding: 25px;

    border-radius: 20px;

    width: 150px;

    min-height: 100px;

    text-align: center;

    transition: .4s;

    box-sizing: border-box;
}


.stat-box:hover {
    transform: translateY(-10px);
}


.stat-box h2 {
    font-size: 32px;

    color: #ffc107;

    margin: 0 0 8px;
}


.stat-box p {
    font-size: 14px;

    margin: 0;

    line-height: 1.4;
}


/* =====================================
   FORM
===================================== */

.form-box {
    width: 420px;

    max-width: 100%;

    background: white;

    padding: 40px;

    border-radius: 25px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .3);

    animation: float2 4s infinite;

    box-sizing: border-box;

    flex-shrink: 0;
}


.form-box h2 {
    margin: 0 0 25px;

    color: #c1121f;

    font-size: 30px;
}


.form-box input,
.form-box select {
    width: 100%;

    padding: 16px;

    margin-bottom: 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    outline: none;

    box-sizing: border-box;

    font-size: 16px;
}


.form-box input:focus,
.form-box select:focus {
    border-color: #c1121f;
}


.form-box button {
    width: 100%;

    padding: 16px;

    background: #c1121f;

    border: none;

    color: white;

    font-size: 18px;

    border-radius: 10px;

    cursor: pointer;

    transition: .3s;
}


.form-box button:hover {
    background: #9f101a;
}


/* =====================================
   ANIMATIONS
===================================== */

@keyframes slideLeft {

    from {
        opacity: 0;

        transform: translateX(-100px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes float2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* =====================================
   1200px
===================================== */

@media (max-width: 1200px) {

    .hero {
        padding: 130px 5% 70px;

        gap: 40px;
    }


    .hero-content {
        max-width: 570px;
    }


    .hero-content h1 {
        font-size: 58px;
    }


    .hero-content p {
        font-size: 18px;
    }


    .form-box {
        width: 380px;

        padding: 32px;
    }


    .stat-box {
        width: 135px;

        padding: 20px;
    }
}


/* =====================================
   1024px - TABLET
===================================== */

@media (max-width: 1024px) {

    .hero {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 45px;

        padding: 150px 5% 70px;
    }


    .hero-content {
        max-width: 750px;
    }


    .hero-content h1 {
        font-size: 52px;
    }


    .hero-content p {
        font-size: 18px;

        line-height: 1.7;
    }


    .hero-buttons {
        justify-content: center;
    }


    .stats {
        justify-content: center;
    }


    .form-box {
        width: 100%;

        max-width: 500px;

        padding: 35px;
    }
}


/* =====================================
   768px
===================================== */

@media (max-width: 768px) {

    .hero {
        min-height: auto;

        padding: 130px 20px 60px;

        gap: 40px;
    }


    .badge {
        padding: 10px 20px;

        font-size: 14px;
    }


    .hero-content h1 {
        font-size: 43px;

        line-height: 1.15;
    }


    .hero-content p {
        font-size: 16px;

        line-height: 1.7;

        margin-bottom: 25px;
    }


    .hero-buttons {
        gap: 12px;

        margin-bottom: 30px;
    }


    .btn1,
    .btn2 {
        padding: 13px 28px;

        font-size: 15px;
    }


    .stats {
        gap: 12px;
    }


    .stat-box {
        width: 140px;

        padding: 18px;
    }


    .stat-box h2 {
        font-size: 28px;
    }


    .form-box {
        max-width: 450px;

        padding: 30px 25px;

        border-radius: 20px;
    }


    .form-box h2 {
        font-size: 26px;
    }
}


/* =====================================
   576px - MOBILE
===================================== */

@media (max-width: 576px) {

    .hero {
        padding: 120px 15px 50px;

        gap: 35px;
    }


    .hero-content h1 {
        font-size: 36px;

        line-height: 1.2;
    }


    .hero-content p {
        font-size: 15px;

        line-height: 1.6;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;

        align-items: center;
    }


    .btn1,
    .btn2 {
        width: 100%;

        max-width: 280px;

        box-sizing: border-box;
    }


    .stats {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        width: 100%;

        max-width: 400px;

        margin: auto;
    }


    .stat-box {
        width: 100%;

        min-height: auto;

        padding: 18px 10px;
    }


    .stat-box h2 {
        font-size: 26px;
    }


    .form-box {
        width: 100%;

        padding: 25px 18px;

        border-radius: 18px;
    }


    .form-box input,
    .form-box select {
        padding: 14px;

        font-size: 15px;
    }


    .form-box button {
        padding: 14px;

        font-size: 16px;
    }
}


/* =====================================
   480px - SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .hero {
        padding: 115px 12px 45px;
    }


    .hero-content h1 {
        font-size: 31px;
    }


    .hero-content p {
        font-size: 14px;
    }


    .badge {
        font-size: 12px;

        padding: 9px 17px;
    }


    .stats {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }


    .stat-box {
        padding: 15px 8px;

        border-radius: 15px;
    }


    .stat-box h2 {
        font-size: 23px;
    }


    .stat-box p {
        font-size: 12px;
    }


    .form-box {
        padding: 22px 15px;
    }


    .form-box h2 {
        font-size: 23px;

        margin-bottom: 20px;
    }
}



@media (max-width: 360px) {

    .hero {
        padding: 110px 10px 40px;
    }


    .hero-content h1 {
        font-size: 27px;
    }


    .hero-content p {
        font-size: 13px;
    }


    .stats {
        grid-template-columns: 1fr;
    }


    .stat-box {
        width: 100%;
    }


    .form-box {
        padding: 20px 13px;
    }
}




.about {
    padding: 120px 8%;

    display: grid;
    grid-template-columns: 1.1fr 1fr;

    gap: 80px;

    align-items: center;

    position: relative;

    overflow: hidden;

    background: #f8fbff;

    box-sizing: border-box;
}


/* =====================================
   BACKGROUND SHAPE
===================================== */

.about-shape {
    position: absolute;

    width: 600px;
    height: 600px;

    background: linear-gradient(
        135deg,
        #ffd54f,
        #ff6f00
    );

    border-radius: 50%;

    top: -300px;
    right: -250px;

    opacity: .12;

    pointer-events: none;
}


/* =====================================
   TAG
===================================== */

.tag {
    background: navy;

    color: white;

    padding: 12px 25px;

    border-radius: 50px;

    font-weight: 600;

    display: inline-block;
}


/* =====================================
   HEADING
===================================== */

.about h2 {
    font-size: 58px;

    line-height: 1.15;

    margin: 25px 0;

    color: #0f172a;
}

.about h2 span {
    color: #c1121f;
}


/* =====================================
   PARAGRAPH
===================================== */

.about p {
    font-size: 18px;

    line-height: 1.9;

    color: #64748b;

    margin: 0;
}


/* =====================================
   FEATURE GRID
===================================== */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 40px;
}


.feature {
    background: white;

    padding: 18px;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;
}


.feature:hover {
    transform: translateY(-10px);
}


/* =====================================
   ABOUT BUTTON
===================================== */

.about-btn {
    display: inline-block;

    margin-top: 40px;

    padding: 16px 35px;

    background: #c1121f;

    color: white;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;
}


.about-btn:hover {
    background: #9f101a;

    transform: translateY(-3px);
}


/* =====================================
   IMAGE
===================================== */

.img-wrapper {
    position: relative;
}


.img-wrapper img {
    width: 100%;

    height: auto;

    display: block;

    border-radius: 30px;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .15);

    transition: 1s;
}


.img-wrapper:hover img {
    transform: scale(1.05);
}


/* =====================================
   EXPERIENCE CARD
===================================== */

.experience-card {
    position: absolute;

    top: 30px;
    left: -40px;

    background: white;

    padding: 25px 35px;

    border-radius: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .12);

    animation: float 3s infinite;

    z-index: 2;
}


.experience-card p {
    color: navy;

    margin: 0;
}


/* =====================================
   STUDENTS CARD
===================================== */

.students-card p {
    color: #eab308;
}


/* =====================================
   FLOAT ANIMATION
===================================== */

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}


/* =====================================
   1200px
===================================== */

@media (max-width: 1200px) {

    .about {
        padding: 100px 6%;

        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }


    .about h2 {
        font-size: 48px;
    }


    .about p {
        font-size: 17px;
    }


    .experience-card {
        left: -25px;

        padding: 20px 25px;
    }
}


/* =====================================
   992px - TABLET
===================================== */

@media (max-width: 992px) {

    .about {
        padding: 90px 5%;

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .about-content {
        text-align: center;
    }


    .tag {
        padding: 10px 22px;

        font-size: 15px;
    }


    .about h2 {
        font-size: 46px;

        margin: 20px 0;
    }


    .about p {
        font-size: 17px;

        line-height: 1.8;
    }


    .feature-grid {
        max-width: 700px;

        margin: 35px auto 0;
    }


    .about-btn {
        margin-top: 30px;
    }


    .img-wrapper {
        width: 85%;

        margin: 0 auto;
    }


    .experience-card {
        left: -20px;

        top: 25px;
    }


    .about-shape {
        width: 450px;
        height: 450px;

        top: -220px;
        right: -200px;
    }
}


/* =====================================
   768px - MOBILE TABLET
===================================== */

@media (max-width: 768px) {

    .about {
        padding: 70px 5%;

        gap: 45px;
    }


    .about h2 {
        font-size: 38px;

        line-height: 1.2;
    }


    .about p {
        font-size: 16px;

        line-height: 1.7;
    }


    .feature-grid {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 30px;
    }


    .feature {
        padding: 18px;

        text-align: left;
    }


    .about-btn {
        padding: 14px 30px;

        margin-top: 25px;
    }


    .img-wrapper {
        width: 100%;
    }


    .img-wrapper img {
        border-radius: 20px;
    }


    .experience-card {
        top: 15px;

        left: 15px;

        padding: 15px 20px;

        border-radius: 15px;
    }


    .experience-card p {
        font-size: 14px;
    }


    .about-shape {
        width: 350px;
        height: 350px;

        top: -180px;
        right: -170px;
    }
}


/* =====================================
   480px - MOBILE
===================================== */

@media (max-width: 480px) {

    .about {
        padding: 55px 18px;

        gap: 35px;
    }


    .tag {
        padding: 9px 18px;

        font-size: 13px;
    }


    .about h2 {
        font-size: 31px;

        line-height: 1.2;

        margin: 18px 0;
    }


    .about p {
        font-size: 15px;

        line-height: 1.7;
    }


    .feature-grid {
        margin-top: 25px;

        gap: 12px;
    }


    .feature {
        padding: 15px;

        border-radius: 14px;
    }


    .about-btn {
        padding: 13px 25px;

        font-size: 14px;
    }


    .img-wrapper img {
        border-radius: 18px;
    }


    .experience-card {
        top: 10px;

        left: 10px;

        padding: 12px 16px;

        border-radius: 12px;
    }


    .experience-card p {
        font-size: 12px;
    }


    .about-shape {
        width: 250px;
        height: 250px;

        top: -120px;
        right: -120px;
    }
}



@media (max-width: 360px) {

    .about {
        padding: 45px 15px;

        gap: 30px;
    }


    .about h2 {
        font-size: 27px;
    }


    .about p {
        font-size: 14px;
    }


    .feature {
        padding: 13px;
    }


    .experience-card {
        padding: 10px 13px;
    }


    .experience-card p {
        font-size: 11px;
    }
}



.students-card {
    position: absolute;
    bottom: 30px;
    right: -40px;

    background: #c1121f;
    color: white;

    padding: 25px 35px;
    border-radius: 20px;

    animation: float2 4s infinite;
}

.experience-card h3,
.students-card h3 {
    font-size: 40px;
}

@keyframes float {

    50% {
        transform: translateY(-15px);
    }

}

@keyframes float2 {

    50% {
        transform: translateY(15px);
    }

}

/* Responsive */

@media(max-width:991px) {

    .about {
        grid-template-columns: 1fr;
    }

    .about h2 {
        font-size: 40px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .experience-card,
    .students-card {
        position: relative;
        left: 0;
        right: 0;
        margin-top: 20px;
    }

}








.neoCourseWrap {
    position: relative;
    padding: 20px 5%;
    background: url("images/course-bg.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.neoOverlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 35, .85);
    backdrop-filter: blur(3px);
}

.neoContainer {
    position: relative;
    z-index: 2;
}

.neoHeading {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.neoHeading span {
    color: #4cc9f0;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.neoHeading h2 {
    color: #fff;
    font-size: 44px;
    margin: 10px 0;
    font-weight: 800;
}

.neoHeading p {
    color: #cfd8dc;
    max-width: 650px;
    margin: auto;
    font-size: 15px;
    line-height: 1.6;
}



.neoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.neoCard {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.neoIcon {
    width: 45px;
    height: 45px;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.neoIcon i {
    font-size: 18px;
    color: #fff;
}

.neoCard h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.neoCard:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 15px 35px rgba(0, 180, 216, .25);
}

.neoBtnArea {
    text-align: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.neoBtn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.neoBtn:hover {
    transform: translateY(-5px) scale(1.05);
}

.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.leftAnim {
    transform: translateX(-80px);
}

.rightAnim {
    transform: translateX(80px);
}

@media(max-width:991px) {
    .neoGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .neoHeading h2 {
        font-size: 34px;
    }
}

@media(max-width:576px) {
    .neoGrid {
        grid-template-columns: 1fr;
    }

    .neoHeading h2 {
        font-size: 28px;
    }

    .neoBtn {
        width: 100%;
        text-align: center;
    }
}







.admission-section {
    padding: 40px 10%;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    background:
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url("https://images.unsplash.com/photo-1581056771107-24ca5f033842?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}


.admission-title {
    font-size: 42px;
    font-weight: 800;
    color: #1c1c1c;
}


.subtitle {
    color: navy;
    margin-bottom: 10px;
    font-size: 20px;
}


.circle-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}


.circle-card {
    flex: 1;
    min-width: 220px;
    padding: 25px;
    transition: 0.4s ease;
}

.circle-card:hover {
    transform: translateY(-12px);
}


.outer-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: conic-gradient(#4a6cf7,
            #8a2be2,
            #ff4ecd,
            #4a6cf7);

    animation: rotateBorder 3s linear infinite;
    box-shadow: 0 10px 30px rgba(74, 108, 247, 0.25);
}

.inner-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;
    color: #4a6cf7;
    transition: 0.4s ease;
}


.circle-card:hover .inner-circle {
    background: linear-gradient(135deg, #4a6cf7, #8a2be2);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(74, 108, 247, 0.6);
}


.circle-card h3 {
    margin-top: 10px;
    font-size: 18px;
}

.circle-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 900px) {
    .circle-steps {
        flex-direction: column;
        align-items: center;
    }

    .circle-card {
        max-width: 320px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.pro-footer {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
    padding-top: 70px;
    overflow: hidden;
}

.footer-main {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 40px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}



.f-col h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.f-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

.f-col h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #60a5fa;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 10px;
}



.f-col p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.9;
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.f-col p::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #60a5fa;
    font-size: 18px;
}



.f-col a {
    display: block;
    text-decoration: none;
    color: #cbd5e1;
    margin: 12px 0;
    transition: .3s;
    position: relative;
    padding-left: 18px;
    font-size: 15px;
}

.f-col a::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
}

.f-col a:hover {
    color: #fff;
    transform: translateX(5px);
}


.social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.social i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    font-size: 18px;
    cursor: pointer;
    transition: .4s;
}

.fb {
    color: #1877f2;
}

.ig {
    color: #e4405f;
}

.yt {
    color: #ff0000;
}

.in {
    color: #0a66c2;
}

.social i:hover {
    transform: translateY(-6px);
    background: #fff;
}



.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #cbd5e1;
    font-size: 14px;
}



@media (max-width:1200px) {

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding: 0 30px 40px;
    }

}



@media (max-width:768px) {

    .pro-footer {
        padding-top: 50px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 25px 35px;
    }

    .f-col h2 {
        font-size: 26px;
    }

    .f-col h3 {
        font-size: 20px;
    }

}



@media (max-width:576px) {

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
        padding: 0 20px 30px;
    }

    .f-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .f-col p,
    .f-col a {
        padding-left: 0;
    }

    .f-col p::before,
    .f-col a::before {
        display: none;
    }

    .f-col h2 {
        font-size: 24px;
    }

    .f-col h3 {
        font-size: 19px;
    }

    .f-col p,
    .f-col a {
        font-size: 14px;
    }

    .social {
        justify-content: center;
    }

    .social i {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 18px 10px;
    }

}



@media (max-width:360px) {

    .footer-main {
        padding: 0 15px 25px;
    }

    .f-col h2 {
        font-size: 22px;
    }

    .f-col h3 {
        font-size: 18px;
    }

    .social i {
        width: 40px;
        height: 40px;
    }

}






.nursing-purpose {
    padding: 90px 8%;
    background: linear-gradient(135deg,
            #f8fbff,
            #eef5ff);
    font-family: 'Poppins', sans-serif;
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */

.section-block {
    margin-bottom: 40px;
}

.section-block h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 18px;
}

.section-block h2 i {
    color: #0f4c81;
}

.section-block p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 15px;
}

/* RIGHT SIDE */

.purpose-icon-side {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.icon-wrapper {
    width: 180px;
    height: 180px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,
            #0f4c81,
            #2563eb);

    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrapper i {
    color: #fff;
    font-size: 80px;
}

.purpose-icon-side h3 {
    margin-top: 25px;
    font-size: 28px;
    color: #0f172a;
}

.purpose-icon-side p {
    margin-top: 15px;
    color: #64748b;
    line-height: 1.8;
}

/* OBJECTIVES */

.objective-card {
    margin-top: 70px;
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.objective-card h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #0f172a;
}

.objective-card h2 i {
    color: #0f4c81;
}

.objective-card ul {
    list-style: none;
}

.objective-card li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: #334155;
    line-height: 1.7;
}

.objective-card li i {
    color: #22c55e;
    margin-top: 4px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .purpose-icon-side {
        max-width: 500px;
        margin: auto;
    }

}

@media(max-width:576px) {

    .nursing-purpose {
        padding: 60px 5%;
    }

    .section-block h2 {
        font-size: 26px;
    }

    .icon-wrapper {
        width: 140px;
        height: 140px;
    }

    .icon-wrapper i {
        font-size: 60px;
    }

    .objective-card {
        padding: 25px;
    }

}











.policy-section {
    padding: 30px 8% 80px;
    background: linear-gradient(135deg,
            #f8fbff,
            #eef4ff);
    font-family: 'Poppins', sans-serif;
}

.policy-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 50px;
}

.policy-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f4c81;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.policy-header h2 {
    margin-top: 20px;
    font-size: 42px;
    color: #0f172a;
}

.policy-header p {
    margin-top: 15px;
    color: #64748b;
    line-height: 1.8;
}

/* CARD */

.policy-card {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.policy-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.policy-title i {
    color: #0f4c81;
    font-size: 24px;
}

.policy-title h3 {
    font-size: 28px;
    color: #0f172a;
}

/* RULE ITEMS */

.rule-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 5px solid #0f4c81;
}

.rule-number {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0f4c81;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.rule-item p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .policy-header h2 {
        font-size: 32px;
    }

    .rule-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .rule-number {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
}

@media(max-width:480px) {

    .policy-section {
        padding: 60px 5%;
    }

    .policy-card {
        padding: 20px;
    }

    .policy-header h2 {
        font-size: 28px;
    }

    .policy-title h3 {
        font-size: 22px;
    }
}










.regulations-section {
    padding: 80px 8%;
    background: #f8fbff;
    font-family: 'Poppins', sans-serif;
}

.regulations-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.regulations-header h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 15px;
}

.regulations-header p {
    color: #64748b;
    line-height: 1.8;
}

.regulation-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

}

.regulation-card h3 {
    color: #0f4c81;
    margin-bottom: 20px;
    font-size: 24px;
}

.rule-point {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.rule-point span {
    min-width: 55px;
    height: 55px;
    background: #0f4c81;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.rule-point p {
    color: #475569;
    line-height: 1.8;
}

.closing-note {
    margin-top: 40px;
    background: linear-gradient(135deg, #0f4c81, #2563eb);
    color: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    margin-top: -20px;
}

.closing-note p {
    line-height: 1.9;
}

@media(max-width:768px) {

    .regulations-header h2 {
        font-size: 30px;
    }

    .rule-point {
        flex-direction: column;
    }

    .rule-point span {
        width: 55px;
    }

    .regulation-card {
        padding: 20px;
    }
}







* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f8fbff;
}

/* HOSTEL SECTION */

.hostel-section {
    padding: 90px 8%;
}

.hostel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hostel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eaf4ff;
    color: #0056d2;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hostel-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.hostel-content h2 span {
    color: #0056d2;
    display: block;
}

.intro {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.facility-box {
    background: white;
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .4s;
}

.facility-box:hover {
    transform: translateY(-6px);
}

.facility-box i {
    font-size: 22px;
    color: #0056d2;
}

.facility-box span {
    font-weight: 600;
}

/* RULES */

.rules-section {
    padding: 90px 8%;
    background: white;
}

.rules-header {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 60px;
}

.rules-header h2 {
    font-size: 2.8rem;
    margin: 20px 0;
}

.rules-header p {
    color: #666;
    line-height: 1.8;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.rule-card {
    background: #f8fbff;
    padding: 28px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: .4s;
    border: 1px solid #eef3fa;
}

.rule-card:hover {
    transform: translateY(-8px);
}

.rule-card i {
    font-size: 22px;
    color: #0056d2;
    margin-top: 3px;
}

.rule-card p {
    line-height: 1.7;
    color: #555;
}

.visitor-box {
    margin-top: 60px;
    background: linear-gradient(135deg, #0056d2, #0099ff);
    padding: 40px;
    border-radius: 25px;
    color: white;
}

.visitor-box h3 {
    margin-bottom: 30px;
    font-size: 28px;
}

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.visitor-grid strong {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.visitor-grid p {
    margin: 6px 0;
}

/* CTA */

.hostel-cta {
    text-align: center;
    margin-top: 80px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hostel-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hostel-cta p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.hostel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: #0056d2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.hostel-btn:hover {
    transform: translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .hostel-container {
        grid-template-columns: 1fr;
    }

    .hostel-content h2 {
        font-size: 2.3rem;
    }

    .rules-header h2 {
        font-size: 2.2rem;
    }

    .visitor-grid {
        grid-template-columns: 1fr;
    }

    .hostel-cta h2 {
        font-size: 2.2rem;
    }
}

@media(max-width:600px) {

    .hostel-section,
    .rules-section {
        padding: 70px 20px;
    }

    .facility-grid {
        grid-template-columns: 1fr;
    }

    .hostel-content h2 {
        font-size: 1.9rem;
    }

    .rules-header h2 {
        font-size: 1.8rem;
    }

    .hostel-cta h2 {
        font-size: 1.8rem;
    }

    .visitor-box {
        padding: 25px;
    }

}







* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f8fafc;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.hostel-section,
.rules-section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    display: inline-block;
    padding: 8px 18px;
    background: #eef5ff;
    color: #0d6efd;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
}

.hostel-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

.hostel-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.facility-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.facility-card i {
    font-size: 22px;
    color: #0d6efd;
    margin-top: 3px;
}

.facility-card span {
    line-height: 1.8;
}

.rules-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 40px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rule-item {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    border-left: 4px solid #0d6efd;
    line-height: 1.8;
}

.visitor-box {
    margin-top: 50px;
    background: #0d6efd;
    padding: 40px;
    border-radius: 20px;
    color: #fff;
}

.visitor-box h3 {
    margin-bottom: 25px;
    font-size: 28px;
}

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.visitor-grid strong {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.visitor-grid p {
    margin: 6px 0;
}

.home-box {
    margin-top: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.home-box h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.home-box p {
    line-height: 1.9;
    color: #555;
}

/* Responsive */

@media(max-width:992px) {

    .facility-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .visitor-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    .hostel-section,
    .rules-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hostel-content h3 {
        font-size: 24px;
    }

    .visitor-box,
    .home-box {
        padding: 25px;
    }

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fb;
}

.course-info {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #0d2b5e;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card i {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    color: #0d2b5e;
}

.about-anm {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-anm img {
    width: 100%;
    border-radius: 20px;
}

.about-content h2 {
    color: #0d2b5e;
    margin-bottom: 20px;
}

.about-content p {
    line-height: 1.9;
    color: #555;
}


.career {
    background: #fff;
    padding: 70px 10%;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.career-box {
    background: #f8f9fc;
    padding: 25px;
    border-left: 5px solid #0d6efd;
    border-radius: 10px;
}

.career-box i {
    color: #0d6efd;
    margin-right: 8px;
}


.btn-area {
    text-align: center;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    background: #0849b8;
}

@media(max-width:768px) {

    .anm-hero h1 {
        font-size: 2.2rem;
    }

    .about-anm {
        grid-template-columns: 1fr;
    }
}


.course-info {
    width: 90%;
    max-width: 1200px;
    margin: 70px auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #0d2b5e;
    margin-bottom: 45px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card i {
    font-size: 42px;
    color: #0d6efd;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #0d2b5e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}



.pharma-about-section,
.pharma-highlights-section,
.pharma-courses-section,
.pharma-career-section {
    width: 100%;
    padding: 80px 8%;
}

.pharma-title {
    text-align: center;
    margin-bottom: 50px;
}

.pharma-title h2 {
    font-size: 30px;
    color: #0b2c6b;
    margin: 20px;

}



.pharma-about-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pharma-about-left,
.pharma-about-right {
    flex: 1;
}

.pharma-about-left img {
    width: 100%;
    border-radius: 15px;
}

.pharma-about-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pharma-about-right p {
    line-height: 1.8;
    color: #555;
}

.pharma-about-boxes {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.pharma-box {
    flex: 1;
    background: #0b2c6b;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
}



.pharma-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.pharma-highlight-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pharma-highlight-card i {
    font-size: 45px;
    color: #0b2c6b;
    margin-bottom: 15px;
}

.pharma-highlight-card h3 {
    margin-bottom: 10px;
}



.pharma-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pharma-course-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pharma-course-card h3 {
    color: #0b2c6b;
    margin-bottom: 10px;
}

.pharma-course-card span {
    display: inline-block;
    background: #0b2c6b;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
}



.pharma-career-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pharma-career-left,
.pharma-career-right {
    flex: 1;
}

.pharma-career-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pharma-career-left ul {
    margin-top: 20px;
    padding-left: 20px;
}

.pharma-career-left li {
    margin-bottom: 12px;
}

.pharma-career-right img {
    width: 100%;
    border-radius: 15px;
}


@media(max-width:768px) {

    .pharma-about-section,
    .pharma-career-section {
        flex-direction: column;
    }

    .pharma-about-boxes {
        flex-direction: column;
    }

    .pharma-title h2,
    .pharma-about-right h2,
    .pharma-career-left h2 {
        font-size: 28px;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f7fa;
}

.about-section {
    width: 90%;
    max-width: 1400px;
    margin: 60px auto;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Left Content */
.about-content {
    flex: 1.7;
}

.about-content h2 {
    color: #004a99;
    font-size: 36px;
    margin-bottom: 25px;
    position: relative;
}

.about-content h2::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #ff9800;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.about-content p {
    font-size: 16px;
    color: #444;
    text-align: justify;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* Right Images */
/* Right Images */

.about-images {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: sticky;
    top: 20px;
}

.about-images img {
    width: 300px;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: .3s ease;
}

.about-images img:hover {
    transform: scale(1.03);
}

@media(max-width:992px) {

    .about-container {
        flex-direction: column;
    }

    .about-images {
        position: static;
        margin-top: 30px;
    }

    .about-images img {
        width: 250px;
        height: 320px;
    }

}

@media(max-width:576px) {

    .about-images img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

}

/* Responsive */

@media(max-width:992px) {

    .about-container {
        flex-direction: column;
    }

    .about-images {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-images img {
        width: 48%;
    }

}

@media(max-width:600px) {

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-images img {
        width: 100%;
    }

}


.about-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.container-custom {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}



.image-box {
    flex: 0 0 220px;
    width: 220px;
    text-align: center;
}

.image-box img {
    display: block;
    width: 150px;
    height: 190px;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-box h4 {
    margin: 15px 0 5px;
    color: #004a99;
    font-size: 22px;
}

.image-box p {
    margin: 0;
    color: #777;
    font-size: 16px;
    font-weight: 600;
}



.content-box {
    flex: 1;
    min-width: 0;
}

.content-box h2 {
    color: #004a99;
    margin: 0 0 20px;
    font-size: 34px;
}

.content-box p {
    text-align: justify;
    line-height: 1.9;
    color: #444;
    margin: 0 0 18px;
}



@media (min-width: 1200px) {

    .image-box {
        flex: 0 0 220px;
        width: 220px;
    }

    .image-box img {
        width: 150px;
        height: 190px;
    }
}



@media (max-width: 1199px) {

    .container-custom {
        width: 92%;
        gap: 30px;
    }

    .image-box {
        flex: 0 0 190px;
        width: 190px;
    }

    .image-box img {
        width: 140px;
        height: 175px;
    }

    .content-box h2 {
        font-size: 30px;
    }

    .content-box p {
        font-size: 16px;
        line-height: 1.8;
    }
}



@media (max-width: 767px) {

    .about-section {
        padding: 15px 0;
    }

    .container-custom {
        width: 92%;
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .image-box {
        order: -1;
        width: 100%;
        flex: none;
    }

    .image-box img {
        width: 130px;
        height: 165px;
    }

    .image-box h4 {
        font-size: 20px;
    }

    .image-box p {
        font-size: 15px;
    }

    .content-box {
        width: 100%;
    }

    .content-box h2 {
        text-align: center;
        font-size: 27px;
        margin-bottom: 15px;
    }

    .content-box p {
        font-size: 15px;
        line-height: 1.7;
        text-align: justify;
    }
}


@media (max-width: 480px) {

    .container-custom {
        width: 94%;
        gap: 20px;
    }

    .image-box img {
        width: 110px;
        height: 140px;
        border-radius: 5px;
    }

    .image-box h4 {
        font-size: 18px;
        margin-top: 10px;
    }

    .image-box p {
        font-size: 14px;
    }

    .content-box h2 {
        font-size: 23px;
    }

    .content-box p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 14px;
    }
}



@media (max-width: 350px) {

    .container-custom {
        width: 95%;
    }

    .image-box img {
        width: 100px;
        height: 125px;
    }

    .image-box h4 {
        font-size: 17px;
    }

    .image-box p {
        font-size: 13px;
    }

    .content-box h2 {
        font-size: 21px;
    }

    .content-box p {
        font-size: 13px;
        line-height: 1.6;
    }
}






.gallery {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 25px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}



.gallery img {

    width: 100%;

    height: 220px;

    display: block;

    object-fit: cover;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.3s ease;
}


.gallery img:hover {

    transform: scale(1.04);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.20);
}




.modal {

    display: none;

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.90);

    align-items: center;

    justify-content: center;

    padding: 70px 20px 20px;

    box-sizing: border-box;

    z-index: 99999;
}




.modal img {

    display: block;

    width: auto;

    height: auto;

    max-width: 90%;

    max-height: 85vh;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.60);
}




.modal-close {

    position: absolute;

    top: 20px;

    right: 25px;

    width: 55px;

    height: 55px;

    padding: 0;

    margin: 0;

    border: none;

    outline: none;

    border-radius: 50%;

    background: #ffffff;

    cursor: pointer;

    z-index: 100000;
}



.modal-close::before {

    content: "";

    position: absolute;

    top: 50%;

    left: 50%;

    width: 32px;

    height: 5px;

    background: #000000;

    border-radius: 10px;

    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


.modal-close::after {

    content: "";

    position: absolute;

    top: 50%;

    left: 50%;

    width: 32px;

    height: 5px;

    background: #000000;

    border-radius: 10px;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}




.modal-close:hover {

    background: #dc2626;

    transform: scale(1.05);
}


.modal-close:hover::before,
.modal-close:hover::after {

    background: #ffffff;
}



@media (max-width: 992px) {




    .gallery {

        grid-template-columns: repeat(3, 1fr);

        gap: 15px;

        padding: 20px;
    }


    .gallery img {

        height: 200px;
    }


    .modal img {

        max-width: 92%;

        max-height: 82vh;
    }


    .modal-close {

        top: 18px;

        right: 20px;

        width: 52px;

        height: 52px;
    }
}




@media (max-width: 768px) {



    .gallery {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        padding: 15px;
    }


    .gallery img {

        height: 180px;
    }


    .modal {

        padding: 70px 15px 20px;
    }


    .modal img {

        max-width: 95%;

        max-height: 80vh;
    }


    .modal-close {

        top: 12px;

        right: 15px;

        width: 48px;

        height: 48px;
    }


    .modal-close::before,
    .modal-close::after {

        width: 28px;

        height: 4px;
    }
}



@media (max-width: 480px) {



    .gallery {

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

        padding: 10px;
    }


    .gallery img {

        height: 150px;

        border-radius: 8px;
    }


    .modal {

        padding: 60px 10px 15px;
    }


    .modal img {

        max-width: 97%;

        max-height: 75vh;

        border-radius: 8px;
    }


    .modal-close {

        top: 10px;

        right: 10px;

        width: 45px;

        height: 45px;
    }


    .modal-close::before,
    .modal-close::after {

        width: 25px;

        height: 4px;
    }
}




@media (max-width: 360px) {

    .gallery {

        gap: 8px;

        padding: 8px;
    }


    .gallery img {

        height: 130px;
    }


    .modal-close {

        width: 42px;

        height: 42px;
    }


    .modal-close::before,
    .modal-close::after {

        width: 23px;

        height: 3px;
    }
}