@import url('../fonts/dsdigital.css');
/*font-family: 'DS-Digital';*/
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display&family=Poppins:ital,wght@1,100&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*font-family: 'Playfair Display', serif;*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*font-family: 'Poppins', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*font-family: 'Bebas Neue', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&display=swap');
/*font-family: "Antonio", sans-serif;*/
@import url(aos.css);
@import url(jquery.fancybox.min.css);
@import url(bootstrap.min.css);
@import url(owl.carousel.min.css);
@import url(fontawesome/css/fontawesome.min.css);
@import url(nav-menu.css);
@import url(fontawesome/css/all.min.css);

* {
    list-style: none;
}
.container-fluid {
    max-width: 97%;
}

img,
iframe {
    max-width: 100%;
}

figure {
    margin: 0;
}

body {
    font-family: sans-serif;
    color: #696969;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Antonio", sans-serif;
}

section {
    width: 100%;
    float: left;
}

/*
 *  Custom Scrollbar
 */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f7f7f7;
}

::-webkit-scrollbar {
    width: 5px;
    border-radius: 10px;
    background-color: #f7f7f7;
}

::-webkit-scrollbar-thumb {
    border-radius: 20px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background: #00048c;
}

.cursor-ptr img {
    filter: invert(10);
}
/* Hero Section */
.hero-section {
    width: 100%;
    height: 100dvh;
}

.hero-container-wrapper {
    height: 85dvh;
    background: #162a45;
}

/* Top Bar */
.top-contents {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
    padding: 29px 0;
}

.top-contents div:last-child button {
    background: #1a8519;
    color: #fff;
    border-radius: 10px;
    border: none;
    width: 200px;
    font-weight: 500;
    font-size: 25px;
}

.top-contents-btns button {
    border: 1px solid white;
    padding: 5px 15px;
    border-radius: 25px;
    background: transparent;
    color: white;
    text-align: center;
}

.top-contents-btns button span {
    margin: 0 10px;
    font-weight: 300;
}


/* Hero Content */
.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
}

/* Left Vertical Text */
.left-texts {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.left-texts p {
    color: #acabab;
    font-size: 25px;
    display: inline-block;
    white-space: nowrap;
    transform: rotate(-90deg);
    transform-origin: center;
    position: relative;
    bottom: 85px;
}

.left-texts p::after {
    content: "";
    width: 80%;
    top: 50%;
    right: 0px;
    transform: translateX(-130%);
    background: #6F6E11;
    padding: 2px;
    position: absolute;
}

.left-texts span {
    font-size: 30px;
    font-weight: 600;
    /* color: #fff; */
}

/* Right Content with Carousel */
.right-content {
    /* margin-left: 40px; */
    color: white;
    width: 100%;
    position: relative;
}

/* Bootstrap Carousel */
.carousel {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Wrapper */
.right-content-wrapper {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.712);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Navigation Container */
.navbar {
    padding: 30px 0;
    overflow: hidden;
}

.navbar-logo {
    float: left;
}

.navbar-logo img {
    width: 120px;
}

.navbar-menu {
    float: right;
    width: 60%;
    padding: 0 20px;
}

.navbar-menu ul {
    font-weight: 600;
    display: flex;
    font-size: 18px;
    justify-content: right;
    gap: 30px;
}

.navbar-menu ul li i {
    margin-left: 5px;
    font-size: 20px;
    color: #46cb44;
    font-weight: 700;
    scale: 0;
    transition: all 0.1s;
}

.navbar-menu ul li:hover i {
    scale: 1;
}

/* Main Inner Content */
.right-inner-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.inner-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-upper-texts {
    width: 90%;
    margin-top: 60px;
}

.inner-upper-texts p {
    font-size: 25px;
    text-wrap: wrap;
    width: 30%;
}

.inner-upper-texts h1 {
    font-size: 70px;
    font-weight: 600;
    width: 50%;
}

.inner-buttons {
    margin-top: 60px;
}

/* .inner-buttons button {
    margin-right: 10px;
    border: 1px solid white;
    padding: 15px 20px;
    font-size: 23px;
    border-radius: 35px;
    width: 250px;
    transition: all 0.2s;
}

.inner-buttons button:first-child {
    background: #083772;
    border: transparent;
    color: white;
}

.inner-buttons button:last-child {
    background: transparent;
    color: #fff;
}

.inner-buttons button:last-child:hover {
    background: #083772;
    border: transparent;
}

.inner-buttons button:first-child:hover {
    background: transparent;
    border: 1px solid white;
} */
 .inner-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Common button styles */
.inner-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Apply Now – filled button */
.btn-apply {
    background-color: #0B4DA1; /* deep blue */
    color: #ffffff;
    border: 2px solid #0B4DA1;
}

.btn-apply:hover {
    background-color: #083f85;
    border-color: #083f85;
    color: #fff;
}

/* View Placements – outline button */
.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background-color: #0e4cad;
    color: #e8e8e8;
    border-color: #0b4da1;
}


/* Progress Bar */
.inner-lower-bar p:nth-child(2) {
    height: 300px;
    padding: 3px;
    border-radius: 50px;
    width: 2px;
    border: 1px solid white;
    position: relative;
}

.inner-lower-bar p:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: white;
    border-radius: inherit;
}

/* Custom Carousel Controls */
.custom-carousel-controls {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 10;
    display: flex;
    gap: 0;
}

.custom-carousel-controls button {
    width: 100px;
    height: 60px;
    background: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 24px;
}

.custom-carousel-controls button:first-child {
    border-radius: 40px 0 0 40px;
    opacity: 0;
    width: 0;
    padding: 0;
    border-right: none;
    overflow: hidden;
    transition: all 0.4s ease;
}

.custom-carousel-controls.show-prev button:first-child {
    opacity: 1;
    width: 100px;
    padding: 0 20px;
    border-right: 2px solid white;
}

.custom-carousel-controls button:last-child {
    border-radius: 40px;
    transition: all 0.4s ease;
}

.custom-carousel-controls.show-prev button:last-child {
    border-radius: 0 40px 40px 0;
}

.custom-carousel-controls button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.custom-carousel-controls button:active {
    background: rgba(255, 255, 255, 0.25);
}

/* Hide default Bootstrap controls */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* SECTION BACKGROUND */
.about-nmiet {
    position: relative;
    padding: 40px 0 60px;
    background-image: url("../assets/about-bg.jpg");
    background-size: cover;
    background-position: center;
}

/* LIGHT OVERLAY */
.about-nmiet::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.about-nmiet .container {
    position: relative;
    z-index: 2;
}

/* IMAGE STACK */
.about-images {
    position: relative;
    height: 420px;
}

.about-images .img {
    position: absolute;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

/* Individual positions */
.img-top {
    width: 230px;
    left: -20px;
    top: 0px;
    z-index: 1;
}

.img-middle {
    width: 380px;
    left: 100px;
    top: 0px;
    z-index: 1;
}

.img-bottom {
    width: 230px;
    left: 0px;
    top: 100px;
    z-index: 1;
}
.about-content {
    position: relative;
}
/* RIGHT CONTENT */
.heading-group-1 h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

section.placement-box.text-center .heading-group-1 h2 {
    color: #fff;
    margin-bottom: 30px;
    padding-top: 40px;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content li {
    font-size: 16px;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.about-content li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #1d4ed8;
    font-weight: 700;
}

/* INFO CARD */
.about-info-card {
    margin-top: 40px;
    background: #0f2a44;
    color: #ffffff;
    padding: 22px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    position: relative;
}

.about-info-card img {
    width: 150px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    position: absolute;
    right: 0px;
    top: -80px;
    left: 30px;
    margin: auto;
}

.about-info-card p {
    margin: 0;
    /* font-size: 14px; */
    line-height: 1.6;
    text-align: end;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-images {
        height: auto;
    }

    .about-images .img {
        position: static;
        width: 100%;
        margin-bottom: 15px;
    }

    .about-info-card {
        flex-direction: column;
        text-align: center;
    }
}

.counters {
    margin-bottom: -150px;
    margin-top: 50px;
    z-index: 1;
    position: relative;
    background: #fefeff;
    padding: 35px;
}
.counter-box h3 {
    font-size: 52px;
}


section.placement-box.text-center {
    background: #184375;
    padding: 80px 0 40px;
}

a.view-btn {
    text-decoration: none;
    color: #fff;
    background: #09eb6b;
    padding: 10px 25px 10px 25px;
    border-radius: 15px;
}

section.companies {
    padding: 40px 0;
}

.placement_logo {
    display: flex;
    height: 130px;
    align-items: center;
    padding: 10px;
}

/* Program Cards */

.program-card {
    position: relative;
    overflow: hidden;
}

.program-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay */
.program-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.35) 0%,   /* slight dark on top */
            rgba(0, 0, 0, 0.05) 35%,
            rgba(0, 0, 0, 0.6) 70%,   /* stronger at bottom */
            rgba(0, 0, 0, 0.9) 100%
        );
}

/* Text wrapper */
.program-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2; /* above gradient */
}
.program-card-wrapper { 
    padding: 50px; 
}
.btn-btn {
    padding-left: 50px;
    padding-top: 50px;
}
.btn-btn a.pro-btn {
    text-decoration: none;
    border: 2px solid #317ff4;
    padding: 15px 35px 15px 35px;
    color: #000000;
}
/* Student Life Section */
section.life-at-nmiet {
    padding: 60px 0;
}

/* Section spacing */
/* Section spacing */
.life-at-nmiet {
    padding: 80px 0;
}

/* Right image column wrapper */
/* Image wrapper */
.at-nmiet-wrapper {
    position: relative;
    max-width: 90%;
    margin-left: auto;
    padding: 40px;
}

/* Green background (reduced from left) */
.at-nmiet-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80%; /* GREEN only covers 80% */
    height: 100%;
    background-color: #7CFF6B;
    z-index: 0;
}

/* White frame */
.at-nmiet-wrapper::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    background-color: #ffffff;
    z-index: 1;
}

/* Image */
.student-life-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 580px;
    display: block;
    margin: auto;
}
.stnd {
    background-color: #7CFF6B;
    display: inline-block;
    padding: 3px 12px 3px 4px;
    margin-top: 10px;
}

/* Right image column wrapper */





/* .rankings-section {
    position: relative;
    width: 70%;
    overflow: hidden;
} */

/* Header with campus image background and angled right edge */
/* MAIN SECTION */
.rankings-section {
    position: relative;
    height: 260px;
    background: 
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("../assets/nmiet-ranking.png") center/cover no-repeat;
    overflow: hidden;
}

/* LEFT TEXT */
.rankings-content {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.rankings-content h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

/* WHITE ANGLED SHAPE */
.rankings-white-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #fff;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* BUTTON WRAPPER */
.rankings-buttons {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 3px;
    z-index: 4;
}

/* BUTTON BASE */
.rank-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 36px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .5px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

/* FIRST BUTTON – HALF IMAGE / HALF WHITE */
.rank-btn.primary {
    background: #0a2fff;
    color: #fff;
    margin-right: 20px;
}

/* SECOND BUTTON – FULL WHITE SIDE */
.rank-btn.secondary {
    background: #fff;
    color: #0a2fff;
    border: 2px solid #0a2fff;
}

.rank-btn i {
    font-size: 16px;
}

/* MAIN SECTION */
.community-section {
    position: relative;
    height: 170px;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url("../assets/community-bg.png") center/cover no-repeat;
    overflow: hidden;
}
.community-section {
    margin-bottom: 60px;
}

/* LEFT TEXT */
.community-content {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.community-content h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* WHITE ANGLED SHAPE */
.community-white-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: #fff;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* BUTTON WRAPPER */
.community-buttons {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 3px;
    z-index: 4;
}

/* BUTTON BASE */
.rank-btn {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 36px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .5px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

/* FIRST BUTTON – HALF IMAGE / HALF WHITE */
.rank-btn {
    background: #42e00f;
    color: #fff;
    margin-right: 20px;
}

/* SECOND BUTTON – FULL WHITE SIDE */
.rank-btn.secondary {
    background: #fff;
    color: #0a2fff;
    border: 2px solid #0a2fff;
}

.rank-btn i {
    font-size: 16px;
}
.alumni-section {
    padding: 60px 0;
}

/* ITEM */
.alumni-item {
    text-align: center;
    transition: 0.4s;
    margin-bottom: 20px;
}

/* IMAGE WRAP */
.img-wrap {
    position: relative;
    padding: 12px;
}

/* IMAGE */
.img-wrap img {
    width: 100%;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

/* GREEN BACKGROUND ONLY FOR CENTER */
.owl-item.center .img-wrap::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0px;
    width: 50%;
    height: 50%;
    background-color: #b7d9b7;
    border-radius: 2px;
    z-index: 1;
}



.img-wrap {
    position: relative;
}

.img-wrap img {
    position: relative;
    z-index: 2;
    display: block;
}

#alumni-carousel .owl-item {
    padding-top: 10px;   /* creates space for top bg */
}




/* PLAY BUTTON */
.play-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/* ACTIVE PLAY */
.owl-item.center .play-btn {
    background: #28a745;
}

/* SCALE CENTER */
.owl-item.center .alumni-item {
    transform: scale(1.1);
}

/* META HIDDEN BY DEFAULT */
.alumni-meta {
    opacity: 0;
    visibility: hidden;
    margin-top: 14px;
    transition: 0.3s;
}

/* SHOW ONLY CENTER META */
.owl-item.center .alumni-meta {
    opacity: 1;
    visibility: visible;
}

.alumni-meta h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.alumni-meta small {
    color: #666;
}


section.alumni-section .heading-group-1 h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #080ca6;
}
section.magic-happens-nmiet {
    padding: 60px 0;
    background: #0d3562;
}
.card-wrapper img.card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
/* Default (1st card) – Gray */
.row.g-4 > div:nth-child(1) .card-wrapper .card-body {
    background: #d5d5d5;
}

/* 2nd card – Blue */
.row.g-4 > div:nth-child(2) .card-wrapper .card-body {
    background: #0d3562;
    color: #fff;
}

/* 3rd card – Black */
.row.g-4 > div:nth-child(3) .card-wrapper .card-body {
    background: #000;
    color: #fff;
}

/* Common styles */
.card-wrapper .card-body {
    padding: 10px;
    height: 200px;
}

.card-wrapper {
    background: #ffffff;
    padding: 10px;
}
.nmiet-wrapper {
    color: #fff;
}
section.whats-nmiet {
    padding: 60px 0;
}

/* Blue background panel */
.content {
    text-align: justify;
}
.events-btn {
    padding-top: 35px;
}
.events-btn a.btn-events {
    text-decoration: none;
    color: #0b1e8d;
    border: 2px solid #0a20a3;
    padding: 15px 35px 15px 35px;
    font-size: 18px;
    font-weight: 600;
}
.event-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    background: linear-gradient(180deg, #0b1b6f, #0a1660);
    z-index: 1;
}

/* Foreground content */
.event-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    gap: 40px;
}

/* Image */
.event-image {
    width: 70%;
    /* flex-shrink: 0; */
}

.event-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}



/* Event list */
.event-menu {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

/* Event item */
/* Base event item */
.event-item {
    position: relative;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    letter-spacing: 1px;
    padding-right: 85px; /* space for max line */
    cursor: pointer;
    transition: all 0.35s ease;
}

/* Line – attached to right edge */
.event-item::after {
    content: "";
    position: absolute;
    right: -55px; /* aligns to blue panel edge */
    top: 50%;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%);
    transition: all 0.35s ease;
}

/* Individual default widths */
.event-item:nth-child(1)::after { width: 100px; }
.event-item:nth-child(2)::after { width: 80px; }
.event-item:nth-child(3)::after { width: 50px; }
.event-item:nth-child(4)::after { width: 30px; }

/* Active item */
.event-item.active {
    color: #ffffff;
    font-weight: 600;
    transform: translateX(-6px);
}

/* Active state – same width, just color + smooth */
.event-item.active::after {
    background: #00ff9c;
}





.newsletter-section {
    padding: 80px 0;
}

.newsletter-wrapper {
    position: relative;
    background: url("../assets/community.png");
    border-radius: 18px;
    padding: 60px 50px;
    overflow: hidden;
    background-position: center;
    background-attachment: local;
}

/* Dark overlay */
.newsletter-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 18px;
    z-index: 1;
}

/* Content above overlay */
.newsletter-wrapper > .row {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
}

/* Form */
.newsletter-form {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.newsletter-input {
    flex: 1;
    height: 54px;
    padding: 0 22px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    height: 54px;
    padding: 0 28px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #eaeaea;
}

/* Responsive */
@media (max-width: 991px) {
    .newsletter-wrapper {
        padding: 40px 30px;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
        flex-wrap: wrap;
    }

    .newsletter-input {
        width: 100%;
    }
}


/* Custom Button Styles */
.btn-custom-primary {
    background-color: #073672;
    border: none;
    border-radius: 26px;
    color: white;
    padding: 10px 30px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #05284d;
    color: white;
}

.btn-custom-secondary {
    background-color: transparent;
    border: 2px solid white;
    border-radius: 26px;
    color: white;
    padding: 12px 34px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.btn-custom-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem !important;
    }

    .program-card {
        min-height: 400px;
    }
}

/* Main Content Background */
.main-content-section {
    background: url('../assets/images/img_rectangle_16.png');
    background-size: cover;
    background-position: center;
}

/* About Section */
.about-section {
    background: url('../assets/images/img_unnamed_1_1.png');
    background-size: cover;
    background-position: center;
}

footer.footer-sec {
    width: 100%;
    float: left;
    background: #f1f1f1;
    padding: 60px 0 0;
}
h5.text.fw-semibold.mb-3 {
    color: #053b99;
    font-size: 19px;
}
a.text.text-decoration-none.fw-semibold {
    color: #0443af;
}