/* =========================================================
   ROOT
========================================================= */

:root {
    --primary: #0b3b75;
    --primary-dark: #06284f;
    --secondary: #d99a1d;
    --secondary-light: #f4c35e;

    --dark: #101828;
    --text: #475467;
    --muted: #667085;

    --light: #f7f9fc;
    --white: #ffffff;
    --border: #e4e7ec;

    --shadow: 0 15px 45px rgba(16, 24, 40, 0.10);

    --container: 1200px;

    --font-main: "Inter", sans-serif;
    --font-heading: "Playfair Display", serif;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.8);
    font-size: 12px;
}

.top-bar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-left i {
    color: var(--secondary-light);
}

.top-right a {
    transition: .3s;
}

.top-right a:hover {
    color: var(--white);
}

.top-social {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-left: 1px solid rgba(255,255,255,.15);
    padding-left: 12px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    transition: .3s;
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mark {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    display: grid;
    place-items: center;
    color: var(--primary);
    position: relative;
}

.logo-mark::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.logo-mark span {
    font-weight: 800;
    font-size: 13px;
    z-index: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 17px;
    color: var(--primary);
    letter-spacing: .5px;
}

.logo-text span {
    font-size: 9px;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1.2px;
}

.logo-text small {
    font-size: 7px;
    color: var(--muted);
    letter-spacing: .8px;
    margin-top: 2px;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    padding: 30px 11px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 18px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 8px;
}


/* Dropdown */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    left: 0;
    min-width: 210px;
    background: var(--white);
    border-top: 3px solid var(--secondary);
    box-shadow: var(--shadow);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--text);
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 22px;
}


/* Apply */

.nav-apply {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.nav-apply:hover {
    background: var(--primary);
    transform: translateY(-2px);
}


/* Mobile menu */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--primary);
    color: var(--white);
    border-radius: 5px;
    font-size: 18px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, #092f5c, #0b477e);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
    background:
        radial-gradient(circle at 80% 25%, rgba(217,154,29,.25), transparent 30%),
        linear-gradient(120deg, #082f5d, #0d4a82);
}

.hero-slide:nth-child(2) {
    background:
        radial-gradient(circle at 75% 30%, rgba(217,154,29,.28), transparent 32%),
        linear-gradient(120deg, #082f5d, #154f7e);
}

.hero-slide:nth-child(3) {
    background:
        radial-gradient(circle at 80% 50%, rgba(217,154,29,.28), transparent 35%),
        linear-gradient(120deg, #06284f, #0d416d);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,22,45,.75), rgba(3,22,45,.25));
}

.hero-slide::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -160px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.hero-content {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    color: var(--secondary-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.08;
    max-width: 750px;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    color: var(--secondary-light);
}

.hero p {
    color: rgba(255,255,255,.82);
    max-width: 620px;
    font-size: 17px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* Hero controls */

.hero-controls {
    position: absolute;
    z-index: 10;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-prev,
.hero-next {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(0,0,0,.15);
    color: var(--white);
    border-radius: 50%;
    transition: .3s;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.hero-dots {
    display: flex;
    gap: 7px;
}

.hero-dot {
    width: 28px;
    height: 3px;
    border: 0;
    background: rgba(255,255,255,.35);
    transition: .3s;
}

.hero-dot.active {
    background: var(--secondary-light);
    width: 45px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 23px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.btn-outline {
    border-color: rgba(255,255,255,.55);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-outline-white {
    border-color: rgba(255,255,255,.6);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}


/* =========================================================
   QUICK LINKS
========================================================= */

.quick-links {
    position: relative;
    z-index: 20;
    margin-top: -45px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    box-shadow: var(--shadow);
}

.quick-card {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-right: 1px solid var(--border);
    transition: .3s;
}

.quick-card:last-child {
    border-right: 0;
}

.quick-card:hover {
    background: var(--primary);
    color: var(--white);
}

.quick-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eef4fb;
    color: var(--primary);
    font-size: 18px;
    transition: .3s;
}

.quick-card:hover .quick-icon {
    background: rgba(255,255,255,.15);
    color: var(--secondary-light);
}

.quick-card div:nth-child(2) {
    flex: 1;
}

.quick-card strong,
.quick-card span {
    display: block;
}

.quick-card strong {
    font-size: 14px;
}

.quick-card span {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}

.quick-card:hover span {
    color: rgba(255,255,255,.7);
}

.quick-card > i {
    font-size: 12px;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 100px 0;
}

.section-label {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-label.light {
    color: var(--secondary-light);
}

.section h2 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 22px;
}

.section h2 span {
    color: var(--primary);
}

.section p {
    font-size: 15px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 50px;
}

.section-heading > p {
    max-width: 450px;
    margin-bottom: 10px;
}

.center-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.center-heading p {
    color: var(--muted);
}

.light-heading h2 {
    color: var(--white);
}

.light-heading h2 span {
    color: var(--secondary-light);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 0 35px 35px 0;
}

.image-placeholder {
    background:
        linear-gradient(135deg, #e7eef7, #cbdced);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(11,59,117,.15);
    border-radius: 50%;
}

.image-placeholder i {
    font-size: 75px;
    margin-bottom: 15px;
    position: relative;
}

.image-placeholder span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    position: relative;
}

.experience-box {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
}

.experience-box strong {
    font-family: var(--font-heading);
    font-size: 45px;
    line-height: 1;
}

.experience-box span {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

.about-content .lead {
    color: var(--dark);
    font-size: 17px;
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
    margin: 28px 0;
}

.about-features div {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

.about-features i {
    color: var(--secondary);
}


/* =========================================================
   TEXT LINK
========================================================= */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    transition: .3s;
}

.text-link i {
    transition: .3s;
}

.text-link:hover {
    color: var(--secondary);
}

.text-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   VISION
========================================================= */

.vision-section {
    padding: 80px 0;
    background: var(--light);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vision-card {
    padding: 40px 35px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: .3s;
}

.vision-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.vision-card.featured {
    background: var(--primary);
    color: rgba(255,255,255,.75);
}

.vision-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    background: #edf4fc;
    color: var(--primary);
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 20px;
}

.featured .vision-icon {
    background: rgba(255,255,255,.12);
    color: var(--secondary-light);
}

.vision-card h3 {
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 12px;
}

.featured h3 {
    color: var(--white);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    padding: 65px 0;
    background: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,.15);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item i {
    color: var(--secondary-light);
    font-size: 24px;
    margin-bottom: 8px;
}

.stat-item strong,
.stat-item span {
    display: block;
}

.stat-item strong {
    font-family: var(--font-heading);
    font-size: 38px;
    line-height: 1.2;
}

.stat-item strong::after {
    content: "+";
    color: var(--secondary-light);
}

.stat-item span {
    color: rgba(255,255,255,.65);
    font-size: 12px;
}


/* =========================================================
   PROGRAMS
========================================================= */

.academics-section {
    background: var(--white);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.program-card {
    padding: 32px 25px;
    border: 1px solid var(--border);
    position: relative;
    transition: .3s;
    overflow: hidden;
}

.program-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: .3s;
}

.program-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 58px;
    height: 58px;
    background: #edf4fc;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 25px;
}

.program-card > span {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 11px;
    color: #98a2b3;
    font-weight: 800;
}

.program-card h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.program-card p {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 25px;
}

.program-card a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.program-card a i {
    margin-left: 5px;
}


/* =========================================================
   DEPARTMENTS
========================================================= */

.departments-section {
    background: var(--light);
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.department-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: .3s;
}

.department-card:hover {
    background: var(--primary);
    color: rgba(255,255,255,.75);
    transform: translateY(-5px);
}

.department-card i {
    font-size: 25px;
    color: var(--secondary);
    margin-bottom: 18px;
}

.department-card h3 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 7px;
}

.department-card:hover h3 {
    color: var(--white);
}

.department-card p {
    font-size: 13px;
}


/* =========================================================
   ADMISSION
========================================================= */

.admission-section {
    padding: 90px 0;
    background:
        linear-gradient(100deg, #082f5d, #0c477a);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.admission-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -150px;
    top: -150px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
}

.admission-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.admission-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.admission-content h2 span {
    display: block;
    color: var(--secondary-light);
}

.admission-content p {
    max-width: 600px;
    color: rgba(255,255,255,.72);
    margin-bottom: 30px;
}

.admission-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admission-info {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.admission-info > div {
    padding: 25px;
    display: grid;
    grid-template-columns: 45px 1fr;
    column-gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.admission-info > div:last-child {
    border-bottom: 0;
}

.admission-info i {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: var(--secondary-light);
    display: grid;
    place-items: center;
}

.admission-info strong,
.admission-info span {
    display: block;
}

.admission-info strong {
    color: var(--white);
    font-size: 13px;
}

.admission-info span {
    color: rgba(255,255,255,.6);
    font-size: 12px;
}


/* =========================================================
   RESEARCH
========================================================= */

.research-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.research-image .image-placeholder {
    min-height: 530px;
}

.research-list {
    margin: 30px 0;
}

.research-list > div {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.research-number {
    color: var(--secondary);
    font-weight: 800;
    font-size: 12px;
}

.research-list h4 {
    color: var(--dark);
    margin-bottom: 3px;
}

.research-list p {
    font-size: 12px;
}


/* =========================================================
   CAMPUS
========================================================= */

.campus-section {
    background: var(--light);
}

.campus-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 18px;
}

.campus-card {
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.campus-card.large {
    grid-row: span 2;
}

.campus-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,.8);
    background:
        linear-gradient(135deg, #184f82, #082e59);
    transition: .5s;
}

.campus-placeholder i {
    font-size: 50px;
    color: var(--secondary-light);
    margin-bottom: 10px;
}

.campus-placeholder span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.campus-card:hover .campus-placeholder {
    transform: scale(1.06);
}

.campus-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
    color: var(--white);
}

.campus-caption h3 {
    font-size: 17px;
}

.campus-caption p {
    color: rgba(255,255,255,.7);
    font-size: 11px;
}


/* =========================================================
   PLACEMENTS
========================================================= */

.placement-section {
    background: var(--white);
}

.placement-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.placement-content p {
    margin-bottom: 28px;
}

.placement-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
}

.placement-stat {
    padding: 35px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.placement-stat:nth-child(2n) {
    border-right: 0;
}

.placement-stat:nth-last-child(-n+2) {
    border-bottom: 0;
}

.placement-stat strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1;
    margin-bottom: 8px;
}

.placement-stat span {
    font-size: 12px;
    color: var(--muted);
}


/* =========================================================
   NEWS
========================================================= */

.news-section {
    background: var(--light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    transition: .3s;
}

.news-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.news-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.news-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d9e5f2, #b8cce0);
    color: var(--primary);
    font-size: 50px;
    transition: .5s;
}

.news-card:hover .news-placeholder {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 8px 12px;
    background: var(--secondary);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
}

.news-content {
    padding: 25px;
}

.news-category {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--secondary);
}

.news-content h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.4;
    margin: 7px 0 10px;
}

.news-content p {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 17px;
}

.news-content a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section {
    padding: 100px 0;
    background:
        linear-gradient(120deg, #06284f, #0c4779);
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 850px;
    margin: auto;
}

.testimonial-btn {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,.3);
    background: transparent;
    color: var(--white);
    border-radius: 50%;
    transition: .3s;
}

.testimonial-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.testimonial-slider {
    flex: 1;
    min-height: 300px;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
}

.testimonial.active {
    display: block;
    animation: fadeIn .5s ease;
}

.quote {
    color: var(--secondary-light);
    font-size: 35px;
    margin-bottom: 20px;
}

.testimonial > p {
    color: rgba(255,255,255,.82);
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.student {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.student-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 12px;
}

.student div:last-child {
    text-align: left;
}

.student strong,
.student span {
    display: block;
}

.student strong {
    color: var(--white);
    font-size: 13px;
}

.student span {
    color: rgba(255,255,255,.55);
    font-size: 10px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.contact-content > p {
    max-width: 500px;
    margin-bottom: 35px;
}

.contact-info {
    display: grid;
    gap: 22px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf4fc;
    color: var(--primary);
}

.contact-item strong,
.contact-item span {
    display: block;
}

.contact-item strong {
    color: var(--dark);
    font-size: 13px;
}

.contact-item span {
    color: var(--muted);
    font-size: 12px;
}


/* Form */

.contact-form-wrapper {
    background: var(--light);
    padding: 35px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--white);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--dark);
    outline: 0;
    border-radius: 4px;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,59,117,.08);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    border: 0;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    background: var(--secondary);
    color: var(--white);
    padding: 45px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-inner > div span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.newsletter-inner h3 {
    font-family: var(--font-heading);
    font-size: 27px;
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    min-width: 480px;
}

.newsletter-form input {
    flex: 1;
    height: 50px;
    border: 0;
    padding: 0 17px;
    outline: 0;
}

.newsletter-form button {
    height: 50px;
    padding: 0 20px;
    border: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #061d38;
    color: rgba(255,255,255,.65);
}

.footer-grid {
    padding: 70px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    gap: 50px;
}

.footer-logo .logo-text strong {
    color: var(--white);
}

.footer-logo .logo-text small {
    color: rgba(255,255,255,.45);
}

.footer-brand > p {
    max-width: 330px;
    font-size: 12px;
    margin: 22px 0;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    font-size: 12px;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-column > a {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    transition: .3s;
}

.footer-column > a:hover {
    color: var(--secondary-light);
    padding-left: 4px;
}

.footer-column p {
    font-size: 12px;
    display: flex;
    gap: 10px;
    margin-bottom: 13px;
}

.footer-column p i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner {
    min-height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 10px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--white);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 900;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;
    right: 25px;
    bottom: 85px;
    z-index: 2000;
    background: var(--dark);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    box-shadow: var(--shadow);
    transform: translateX(150%);
    transition: .4s;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    color: #4ade80;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 0;
    }

    .nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 12px;
    }

    .nav-link::after {
        left: 8px;
        right: 8px;
    }

    .nav-apply {
        padding: 10px 14px;
        margin-left: 5px;
    }

    .about-grid,
    .research-grid,
    .placement-grid,
    .contact-grid {
        gap: 50px;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-card:nth-child(2) {
        border-right: 0;
    }

    .quick-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .campus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .campus-card.large {
        grid-row: span 2;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 850px) {

    .top-bar {
        display: none;
    }

    .header-inner {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow);
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    .main-nav.open {
        max-height: 700px;
        overflow-y: auto;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        padding: 14px 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .nav-dropdown.open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: 0;
        border-bottom: 1px solid var(--border);
        padding: 0;
        display: block;
    }

    .dropdown-menu a {
        padding: 11px 35px;
        background: var(--light);
    }

    .nav-apply {
        display: block;
        margin: 12px 20px;
        text-align: center;
    }

    .hero,
    .hero-content {
        min-height: 590px;
    }

    .hero h1 {
        font-size: clamp(40px, 11vw, 58px);
    }

    .hero p {
        font-size: 14px;
    }

    .quick-links {
        margin-top: 0;
        padding: 20px 0;
        background: var(--light);
    }

    .quick-grid {
        box-shadow: none;
    }

    .about-grid,
    .research-grid,
    .placement-grid,
    .contact-grid,
    .admission-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .research-grid,
    .placement-grid,
    .contact-grid {
        gap: 45px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 0;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.15);
        padding-top: 30px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .department-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admission-grid {
        gap: 40px;
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
        min-width: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 30px, 1200px);
    }

    .logo-text strong {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 7px;
    }

    .logo-mark {
        width: 45px;
        height: 45px;
    }

    .hero,
    .hero-content {
        min-height: 560px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-card {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .quick-card:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 70px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-image {
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .image-placeholder {
        min-height: 350px;
    }

    .experience-box {
        padding: 18px;
    }

    .experience-box strong {
        font-size: 34px;
    }

    .program-grid,
    .department-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .campus-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }

    .campus-card.large {
        grid-row: auto;
    }

    .placement-stats {
        grid-template-columns: 1fr;
    }

    .placement-stat,
    .placement-stat:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .placement-stat:last-child {
        border-bottom: 0;
    }

    .testimonial-wrapper {
        gap: 8px;
    }

    .testimonial-btn {
        width: 36px;
        height: 36px;
    }

    .testimonial > p {
        font-size: 17px;
    }

    .contact-form-wrapper {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-inner {
        padding: 20px 0;
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom div {
        justify-content: center;
    }

}