:root {
    --primary-dark: #1e2a5a;
    --secondary-dark: #0f1533;
    --accent: #ffcc00;
    --white: #ffffff;
}

* { 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #333;
}

/* ===== CONTAINER ===== */
.container {
    width: min(92%, 1200px);
    margin: auto;
}

/* ===== TOP BAR ===== */
.topbar {
    background: #262262;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.topbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.top-left span {
    margin-right: 15px;
    white-space: nowrap;
}

.top-left i {
    margin-right: 5px;
    color: #ffd200;
}

.top-center {
    flex: 1;
    overflow: hidden;
}

.top-center marquee {
    color: #fff;
    font-weight: 500;
}

.top-right {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icon.fb {
    background: #1877f2;
}

.social-icon.insta {
    background: #e1306c;
}

.social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}


/* ===== HEADER ===== */
.header {
    background: linear-gradient(180deg, #1e2a5a, #1a2450);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

/* ===== LOGO ===== */
.logo h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent);
}

/* ===== NAV ===== */
.nav {
    display: flex;
    gap: 26px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding: 6px 0;
    transition: 0.3s;
}

/* Hover */
.nav a:hover {
    color: var(--accent);
}

/* Active Link Color */
.nav a.active {
    color: var(--accent);
}

/* Underline Base */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s ease;
}

/* Hover Underline */
.nav a:hover::after {
    width: 100%;
}

/* Active Underline */
.nav a.active::after {
    width: 100%;
}

/* ===== BUTTON ===== */
.btn-primary {
    background: linear-gradient(135deg, #ffcc00, #ffdb4d);
    color: #000;
    padding: 11px 26px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(255, 204, 0, 0.35);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 204, 0, 0.55);
}

/* ===== HAMBURGER ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* ===== OVERLAY ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 9998;
}

.menu-overlay.active {
    display: block;
}


/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(180deg, #f8faff, #ffffff);
    padding: clamp(70px, 8vw, 110px) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT CONTENT */
.about-badge {
    display: inline-block;
    background: rgba(38, 58, 139, 0.12);
    color: #263a8b;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 18px;
}

.about-content h2 {
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1.25;
    color: #0f1533;
    margin-bottom: 22px;
}

.about-content h2 span {
    color: #263a8b;
}

.about-content p {
    font-size: 15.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
    max-width: 520px;
}

.about-btn {
    display: inline-block;
    margin-top: 22px;
    background: #263a8b;
    color: #fff;
    padding: 14px 36px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #1e2a5a;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(38, 58, 139, 0.35);
}

/* RIGHT CARDS */
.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.about-card {
    background: #ffffff;
    padding: 28px 26px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border-top: 4px solid #263a8b;
}

.about-card .icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.about-card h4 {
    font-size: 16.5px;
    color: #0f1533;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #141313;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.15);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background:
        linear-gradient(180deg,
            rgba(30, 42, 90, 0.92) 0%,
            rgba(30, 42, 90, 0.85) 100%),
        url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f') center / cover no-repeat;
    padding: clamp(80px, 12vw, 130px) 0;
    text-align: center;
    color: #fff;
}


/* soft bottom fade */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 60%,
            rgba(30, 42, 90, 0.4));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: auto;
    padding: 0 15px;
}

/* Headline */
.hero h1 {
    font-size: clamp(30px, 4.5vw, 44px);
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 700;
}

/* Subtext */
.hero p {
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 36px;
}

/* ================= SEARCH BOX ================= */
.search-box {
    display: flex;
    max-width: 560px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* input */
.search-box input {
    flex: 1;
    padding: 16px 18px;
    border: none;
    font-size: 15px;
    outline: none;
}

/* button */
.search-box button {
    padding: 0 28px;
    background: linear-gradient(135deg, #ffcc00, #ffb700);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background: linear-gradient(135deg, #ffb700, #ffa500);
}



/* ===== SIGNATURE PHD SECTION ===== */
.phd-signature {
    background: linear-gradient(180deg, #f8faff, #ffffff);
    padding: clamp(75px, 9vw, 80px) 0;
    position: relative;
}

/* HEADER */
.phd-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.phd-head span {
    display: inline-block;
    color: #263a8b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.phd-head h2 {
    color: #0f1533;
    margin-bottom: 14px;
}

.phd-head p {
    font-size: 15.5px;
    color: #666;
    line-height: 1.7;
}

/* GRID */
.phd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 34px;
}

/* CARD */
.phd-card {
    position: relative;
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
}

/* IMAGE */
.phd-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* DIAGONAL OVERLAY */
.phd-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 21, 51, 0.9) 30%,
            rgba(38, 58, 139, 0.75) 70%);
    clip-path: polygon(0 0, 100% 0, 100% 65%, 0 85%);
    z-index: 1;
}

/* CONTENT */
.phd-content {
    position: absolute;
    bottom: 26px;
    left: 26px;
    right: 26px;
    color: #fff;
    z-index: 2;
    transition: transform 0.4s ease;
}

.phd-dept {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
}

.phd-content h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.phd-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 18px;
}

/* BUTTON */
.phd-btn {
    display: inline-block;
    padding: 10px 26px;
    background: #ffcc00;
    color: #000;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

/* HOVER EFFECTS */
.phd-card:hover .phd-bg {
    transform: scale(1.1);
}

.phd-card:hover .phd-content {
    transform: translateY(-6px);
}

.phd-card:hover .phd-btn {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */




/* ===== SECTIONS ===== */
.section {
    padding: clamp(50px, 8vw, 70px) 0;
}

.section.gray {
    background: #f5f7fb;
}

.section-title {
    text-align: center;
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 40px;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.card {
    background: #fff;
    padding: 28px 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

/* ===== CTA ===== */
/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #1e2a5a, #263a8b);
    color: #fff;
    text-align: center;
    padding: clamp(60px, 8vw, 90px) 20px;
}

.cta h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 10px;
}

.cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffd633;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.35);
}


/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #0f1533, #0b1028);
    color: #cfd3ff;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding: 60px 20px 40px;
}

.footer h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #ffffff;
}

.footer p {
    line-height: 1.7;
    opacity: 0.85;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #cfd3ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: #ffcc00;
    padding-left: 6px;
}

/* Contact Text */
.footer div p {
    margin-bottom: 8px;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    background: #080d22;
    text-align: center;
    padding: 16px 10px;
    font-size: 13px;
    color: #aab0ff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.35);
}

.contact-hero-advanced {
    position: relative;
    background: linear-gradient(135deg,
            #2c5aa0 0%,
            #1e3f78 100%);
    color: #fff;
    padding: 110px 0 90px;
}

/* soft separator between header & hero */
.contact-hero-advanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0));
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 40px;
}

/* small pill */
.pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 16px;
}

/* heading */
.contact-hero-left h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 14px;
}

.contact-hero-left span {
    color: #ffd200;
}

.contact-hero-left p {
    max-width: 520px;
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 34px;
}

/* badges */
.contact-badges {
    display: flex;
    gap: 16px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.badge small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.85;
}

/* breadcrumb */
.breadcrumb {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
}

/* ===================================================
   CONTACT INFO CARDS
=================================================== */
.contact-info-section {
    padding: 70px 0;
    background: #f5f7fb;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    color: #1a2456;
    margin-bottom: 8px;
}

/* ===================================================
   CONTACT FORM + MAP
=================================================== */
.contact-main-section {
    padding: 80px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-advanced {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-advanced h2 {
    margin-bottom: 10px;
    color: #1a2456;
}

.contact-form-advanced p {
    font-size: 14px;
    margin-bottom: 22px;
    color: #555;
}

.contact-form-advanced input,
.contact-form-advanced select,
.contact-form-advanced textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.contact-form-advanced button {
    width: 100%;
    padding: 14px;
    background: #ffcc00;
    border: none;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
}

/* map */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 14px;
    border: none;
}

/* ===== ABOUT HERO ===== */
.about-hero {
    background: linear-gradient(135deg, #2c5aa0, #1e3f78);
    color: #fff;
    padding: 100px 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-hero-left h1 {
    font-size: 40px;
    line-height: 1.3;
}

.about-hero-left span {
    color: #ffd200;
}

.about-hero-left p {
    margin-top: 16px;
    max-width: 520px;
    opacity: 0.95;
}

.about-hero-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.about-card h3 {
    font-size: 28px;
    color: #ffd200;
}



/* ===== ABOUT MAIN ===== */
.about-main {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2456;
}

.about-content span {
    color: #ffcc00;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #444;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* ===== WHY CHOOSE ===== */

.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #1a2456;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.why-card h4 {
    margin-bottom: 8px;
    color: #1a2456;
}

/* ===== PROCESS ===== */
.process-section {
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.process-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.process-box span {
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 10px;
}



/* ===== UNIVERSITY HERO ===== */
.university-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #2c5aa0, #1e3f78);
    color: #fff;
}

.university-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT CONTENT */
.university-hero-left h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.university-hero-left span {
    color: #ffd200;
}

.university-hero-left p {
    max-width: 540px;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

/* RIGHT CARDS */
.university-hero-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.university-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 26px 20px;
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.university-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffd200;
    margin-bottom: 6px;
}

.university-card p {
    font-size: 13px;
    opacity: 0.9;
}



/* ===== SECTION ===== */
.ugc-university-section {
    padding: 60px 0;
    background: #f7f9fd;
    font-family: Arial, sans-serif;
}

.ugc-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 12px;
}

.ugc-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a2456;
}

/* ===== LAYOUT ===== */
.ugc-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
}

/* ===== FILTER ===== */
.ugc-filter {
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    height: 100%;
}

.ugc-filter h3 {
    margin-bottom: 18px;
    color: #1a2456;
}

.filter-box input,
.filter-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* ===== SCROLLBAR ===== */
.filter-scroll {
    max-height: 150px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 transparent;
}

.filter-scroll::-webkit-scrollbar {
    width: 3px;
}

.filter-scroll::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

/* ===== SEARCH ===== */
.ugc-search {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    max-width: 600px;
}

.ugc-search input {
    flex: 1;
    padding: 13px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.ugc-search button {
    padding: 13px 24px;
    background: #1a2456;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== CARD GRID ===== */
.ugc-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ===== CARD ===== */
.ugc-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.ugc-left {
    display: flex;
    gap: 18px;
}

.ugc-left img {
    width: 85px;
    height: 85px;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 6px;
}

.ugc-left h4 {
    margin-bottom: 4px;
    color: #1a2456;
}

.ugc-rating {
    color: #ffb400;
    font-size: 14px;
}

.ugc-left p {
    font-size: 14px;
    margin: 4px 0;
}

.ugc-links a {
    color: #ff4d4d;
    font-size: 14px;
    margin-right: 10px;
    text-decoration: none;
}

.ugc-btn {
    background: #1a2456;
    color: #fff;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}


/* ===== UNIVERSITY SIGNATURE SECTION ===== */
.uni-signature {
    background: linear-gradient(180deg, #f7f9ff, #ffffff);
    padding: clamp(80px, 8vw, 80px) 0;
}

/* HEADER */
.uni-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.uni-head span {
    display: inline-block;
    color: #263a8b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.uni-head h2 {
    color: #0f1533;
    margin-bottom: 12px;
}

.uni-head p {
    font-size: 15.5px;
    color: #666;
}

/* ROW */
.uni-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* CARD */
.uni-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 26px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* BRAND ACCENT LINE */
.uni-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid #263a8b;
}

/* LOGO */
.uni-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.uni-logo img {
    max-height: 100%;
    max-width: 100%;
}

/* TEXT */
.uni-box h3 {
    font-size: 17px;
    color: #0f1533;
    margin-bottom: 4px;
}

.uni-box p {
    font-size: 13.5px;
    color: #777;
    margin-bottom: 16px;
}

/* TRUST BADGES */
.uni-trust {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.uni-trust span {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.uni-trust .ugc {
    background: rgba(38, 58, 139, 0.12);
    color: #263a8b;
}

.uni-trust .naac {
    background: rgba(255, 204, 0, 0.2);
    color: #a07900;
}

/* CTA */
.uni-cta {
    font-size: 14px;
    font-weight: 600;
    color: #263a8b;
    transition: all 0.3s ease;
}

/* HOVER */
.uni-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.15);
}

.uni-box:hover .uni-cta {
    padding-left: 6px;
}


/* ===== WHY CHOOSE US ===== */
.why-choose {
    background: linear-gradient(180deg, #ffffff, #f7f9ff);
    padding: clamp(80px, 8vw, 120px) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT CONTENT */
.why-tag {
    display: inline-block;
    background: rgba(38, 58, 139, 0.12);
    color: #263a8b;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 18px;
}

.why-content h2 {
    font-size: clamp(30px, 3.2vw, 40px);
    line-height: 1.25;
    color: #0f1533;
    margin-bottom: 22px;
}

.why-content h2 span {
    color: #263a8b;
}

.why-content p {
    font-size: 15.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
    max-width: 560px;
}

.why-btn {
    display: inline-block;
    margin-top: 24px;
    background: #263a8b;
    color: #ffffff;
    padding: 14px 38px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-btn:hover {
    background: #1e2a5a;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(38, 58, 139, 0.35);
}

/* RIGHT FEATURES */
.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.why-box {
    background: #ffffff;
    padding: 15px 15px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    border-left: 4px solid #263a8b;
}

.why-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.why-box h4 {
    font-size: 16.5px;
    color: #0f1533;
    margin-bottom: 8px;
}

.why-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

/* RESPONSIVE */


/* ===== PREMIUM TESTIMONIALS ===== */
.testimonials-premium {
    background: linear-gradient(180deg, #ffffff, #f7f9ff);
    padding: clamp(80px, 8vw, 80px) 0;
    overflow: hidden;
}

/* HEADER */
.testi-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.testi-head span {
    font-size: 13px;
    font-weight: 700;
    color: #263a8b;
    text-transform: uppercase;
}

.testi-head h2 {
    color: #0f1533;
    margin: 12px 0;
}

.testi-head p {
    font-size: 15.5px;
    color: #666;
}

/* SLIDER WRAPPER */
.testi-wrapper {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* TRACK */
.testi-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* CARD */
.testi-card {
    flex: 0 0 70%;
    background: #ffffff;
    border-radius: 26px;
    padding: 40px 38px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

/* ACTIVE CARD */
.testi-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

/* TEXT */
.testi-text {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 28px;
}

/* USER */
.testi-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-user img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 3px solid #263a8b;
}

.testi-user h4 {
    font-size: 16px;
    margin-bottom: 2px;
    color: #0f1533;
}

.testi-user span {
    font-size: 14px;
    color: #263a8b;
    display: block;
}

.testi-user small {
    font-size: 13px;
    color: #777;
}


/* ===== BLOG SECTION ===== */
.blog-signature {
    background: linear-gradient(180deg, #ffffff, #f7f9ff);
    padding: clamp(80px, 8vw, 120px) 0;
}

/* HEADER */
.blog-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.blog-head span {
    font-size: 13px;
    font-weight: 700;
    color: #263a8b;
    text-transform: uppercase;
}

.blog-head h2 {
    color: #0f1533;
    margin: 12px 0;
}

.blog-head p {
    font-size: 15.5px;
    color: #666;
}

/* LAYOUT */
.blog-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* FEATURED BLOG */
.blog-featured {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.blog-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.18);
}

.blog-img {
    position: relative;
    height: 260px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #263a8b;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
}

/* CONTENT */
.blog-content {
    padding: 32px;
}

.blog-content h3 {
    font-size: 20px;
    color: #0f1533;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: #263a8b;
}

/* SIDE BLOGS */
.blog-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.blog-mini {
    display: flex;
    gap: 16px;
    background: #ffffff;
    padding: 16px;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.blog-mini:hover {
    transform: translateX(6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.blog-mini img {
    width: 92px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
}

.blog-mini span {
    font-size: 12px;
    font-weight: 600;
    color: #263a8b;
}

.blog-mini h4 {
    font-size: 15px;
    color: #0f1533;
    margin-top: 4px;
    line-height: 1.4;
}


/* ================= COURSE SECTION ================= */
.course-section {
    padding: 60px 0;
    background: #f7f9fd;
    font-family: Arial, sans-serif;
}

.course-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 12px;
}

.course-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a2456;
}

/* ================= LAYOUT ================= */
.course-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: flex-start;
}

/* ================= FILTER SIDEBAR ================= */
.course-filter {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);

    height: calc(100vh - 120px);   /* 🔥 FIXED HEIGHT */
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.course-filter h3 {
    margin-bottom: 18px;
    color: #1a2456;
}

/* Disabled input box */
.filter-box input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f5f6fb;
    margin-bottom: 18px;
}

/* ================= FILTER GROUP ================= */
.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: #1a2456;
}

.filter-group input[type="text"] {
    width: 100%;
    padding: 11px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 12px;
}

/* ================= SCROLL AREA ================= */
.filter-scroll {
    max-height: 200px;          /* 🔥 SCROLL ONLY HERE */
    overflow-y: auto;
    padding-right: 6px;
}

/* scrollbar styling */
.filter-scroll::-webkit-scrollbar {
    width: 6px;
}

.filter-scroll::-webkit-scrollbar-thumb {
    background: #c7d2fe;
    border-radius: 10px;
}

/* ================= FILTER ITEMS ================= */
.filter-scroll label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    cursor: pointer;
}

.filter-scroll input {
    cursor: pointer;
}

/* ================= SEARCH ================= */
.course-search {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    max-width: 600px;
}

.course-search input {
    flex: 1;
    padding: 13px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.course-search button {
    padding: 13px 24px;
    background: linear-gradient(135deg, #1a2456, #2c3e90);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* ================= COURSE GRID ================= */
.course-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* ================= COURSE CARD ================= */
.course-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eef1ff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
    transition: .35s ease;
}

.course-card:hover {
    border-color: #1a2456;
    transform: translateY(-6px);
}

/* ================= LEFT CONTENT ================= */
.course-left {
    display: flex;
    gap: 20px;
}

.course-left img {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px dashed #c7d2fe;
    padding: 6px;
}

/* ================= TEXT ================= */
.course-left h4 {
    color: #1a2456;
    margin-bottom: 6px;
}

.course-rating {
    color: #ffb400;
    font-size: 14px;
}

.course-left p {
    font-size: 14px;
    margin: 4px 0;
}

/* ================= LINKS ================= */
.course-links a {
    color: #ff4d4d;
    font-size: 14px;
    margin-right: 10px;
    text-decoration: none;
}

/* ================= BUTTON ================= */
.course-btn {
    background: #1a2456;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

/* ================= COURSE NAME ELLIPSIS ================= */
.course-name {
    display: inline-block;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

/* ================= NO COURSE MESSAGE ================= */
#noCourseMsg {
    text-align: center;
    margin-top: 30px;
    color: #999;
    font-size: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .course-layout {
        grid-template-columns: 1fr;
    }

    .course-filter {
        position: relative;
        height: auto;
        max-height: none;
    }

    .course-content {
        grid-template-columns: 1fr;
    }
}

/* HERO */
.detail-hero {
    background: linear-gradient(135deg, #1d2b64, #2c3e8f);
    padding: 70px 0;
    color: #fff;
    text-align: center;
}

.badge-tag {
    background: #f4c400;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

/* MAIN SECTION */
.university-detail {
    background: #f5f7fb;
    padding: 60px 0;
}

/* LEFT CONTENT */
.detail-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.detail-box h2 {
    color: #1d2b64;
    margin-bottom: 15px;
}

.detail-box p {
    color: #444;
    line-height: 1.7;
}

/* BULLET LIST (LEFT ONLY) */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    padding: 8px 0 8px 26px;
    position: relative;
}

.bullet-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1d2b64;
    font-weight: bold;
}

/* NUMBER LIST */
.number-list {
    padding-left: 20px;
}

.number-list li {
    padding: 8px 0;
}

/* TABLE */
.custom-table thead th {
    background: #1d2b64;
    color: #fff;
    padding: 14px;
}

.custom-table tbody td {
    padding: 14px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.custom-table tbody tr:hover td {
    background: #f8f9ff;
}

/* RIGHT SIDEBAR */
.right-sticky-wrapper {
    position: sticky;
    top: 110px;
}

.side-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.side-box h4 {
    color: #1d2b64;
    margin-bottom: 15px;
}

/* REMOVE ICONS FROM RIGHT LISTS */
.info-list,
.related-list {
    list-style: none;
    padding: 0;
}

.info-list li,
.related-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.info-list li::before,
.related-list li::before {
    content: none !important;
}

/* FORM */
.inquiry-form input,
.inquiry-form select {
    width: 100%;
    padding: 11px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.inquiry-form button {
    width: 100%;
    padding: 12px;
    background: #f4c400;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.inquiry-form button:hover {
    background: #e0b000;
}


/* ===== HERO ===== */
.detail-hero h1 {
    font-size: 36px;
    font-weight: 700;
}

.detail-hero p {
    max-width: 800px;
    margin: 10px auto 0;
    line-height: 1.6;
}

.badge-tag {
    background: #f4c400;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

/* ===== MAIN SECTION ===== */
.course-detail {
    background: #f5f7fb;
    padding: 60px 0;
}

/* ===== LEFT CONTENT ===== */
.detail-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.detail-box h2 {
    color: #1d2b64;
    margin-bottom: 15px;
}

.detail-box p {
    color: #444;
    line-height: 1.7;
}

/* BULLET LIST (LEFT ONLY) */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    padding: 8px 0 8px 26px;
    position: relative;
}

.bullet-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1d2b64;
    font-weight: bold;
}

/* NUMBER LIST */
.number-list {
    padding-left: 20px;
}

.number-list li {
    padding: 8px 0;
}

/* TABLE */
.custom-table thead th {
    background: #1d2b64;
    color: #fff;
    padding: 14px;
}

.custom-table tbody td {
    padding: 14px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.custom-table tbody tr:hover td {
    background: #f8f9ff;
}

/* ===== RIGHT SIDEBAR ===== */
.right-sticky-wrapper {
    position: sticky;
    top: 110px;
}

.side-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.side-box h4 {
    color: #1d2b64;
    margin-bottom: 15px;
}

/* RIGHT LISTS (NO ICONS) */
.info-list,
.related-list {
    list-style: none;
    padding: 0;
}

.info-list li,
.related-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.info-list li::before,
.related-list li::before {
    content: none !important;
}

/* FORM */
.small-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.inquiry-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.inquiry-form button {
    width: 100%;
    padding: 14px;
    background: #f4c400;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.inquiry-form button:hover {
    background: #e0b000;
}

/* ===== BLOG SHOWCASE ===== */
.blog-showcase {
    background: linear-gradient(180deg, #f6f8fc, #ffffff);
    padding: 80px 0;
}

/* TOP AREA */
.blog-showcase-top {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    margin-bottom: 80px;
}

/* FEATURED EDITORIAL */
.blog-editorial {
    background: #ffffff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(29, 43, 100, 0.08);
}

.editorial-label {
    display: inline-block;
    background: #1d2b64;
    color: #fff;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.blog-editorial h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 18px;
}

.blog-editorial h2 a {
    color: #000;
    text-decoration: none;
}

.editorial-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.editorial-link {
    display: inline-block;
    margin-top: 25px;
    font-weight: 600;
    color: #1d2b64;
    text-decoration: none;
}

/* INSIGHTS */
.blog-insights {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 25px 60px rgba(29, 43, 100, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-item {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.insight-item:last-child {
    border-bottom: none;
}

.insight-tag {
    display: inline-block;
    background: #eef1ff;
    color: #1d2b64;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.insight-item a {
    display: block;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
}

/* ARCHIVE */
.blog-archive {
    text-align: center;
}

.archive-title {
    font-size: 30px;
    margin-bottom: 40px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.archive-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 20px 45px rgba(29, 43, 100, 0.08);
    text-decoration: none;
    transition: transform .3s ease;
}

.archive-card:hover {
    transform: translateY(-6px);
}

.archive-tag {
    background: #1d2b64;
    color: #fff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.archive-card h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
}

.archive-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== BLOG HERO ===== */
.blog-detail-hero {
    background: linear-gradient(180deg, #1d2b64, #223b8f);
    padding: 100px 0 80px;
    color: #fff;
}

.blog-category {
    background: #f4c400;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 18px;
}

.blog-detail-hero h1 {
    font-size: 40px;
    line-height: 1.3;
    max-width: 900px;
}

.blog-subtitle {
    max-width: 800px;
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.95;
}

.blog-meta {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.blog-meta span {
    margin-right: 15px;
}

/* ===== CONTENT ===== */
.blog-detail-content {
    background: #f5f7fb;
    padding: 70px 0;
}

.blog-article {
    background: #fff;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(29, 43, 100, 0.08);
}

.blog-article .intro {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.blog-article h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1d2b64;
}

.blog-article h3 {
    margin-top: 30px;
    color: #1d2b64;
}

.blog-article p {
    line-height: 1.8;
    color: #444;
}

.content-points {
    padding-left: 20px;
    margin: 15px 0;
}

.content-points li {
    margin-bottom: 10px;
}

.numbered-steps {
    padding-left: 22px;
    margin: 20px 0;
}

.numbered-steps li {
    margin-bottom: 10px;
}

blockquote {
    margin: 40px 0;
    padding: 20px 30px;
    background: #f0f3ff;
    border-left: 5px solid #1d2b64;
    font-style: italic;
    border-radius: 12px;
}

/* ===== SIDEBAR ===== */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-box {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(29, 43, 100, 0.08);
    margin-bottom: 30px;
}

.sidebar-box h4 {
    margin-bottom: 15px;
    color: #1d2b64;
}

.sidebar-link {
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 12px;
}

.sidebar-link:hover {
    text-decoration: underline;
}

.cta-box p {
    font-size: 14px;
    color: #555;
}

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    background: #f4c400;
    color: #000;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* Overlay */
.phd-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 40, 0.65);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* Popup */
.phd-popup {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(180deg, #ffffff, #f3f6ff);
    border-radius: 20px;
    padding: 30px 28px;
    position: relative;
    animation: popupZoom 0.45s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* Animation */
@keyframes popupZoom {
    from {
        transform: scale(0.85) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Close */
.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: #eef1ff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

/* Top Section */
.popup-top {
    text-align: center;
    margin-bottom: 25px;
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #262262, #4b5cff);
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.popup-top h2 {
    font-size: 26px;
    color: #1b2a6d;
    margin-bottom: 8px;
}

.popup-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 6px;
}

.popup-badges span {
    background: #e9edff;
    color: #262262;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 14px;
    font-weight: 500;
}

.popup-top p {
    font-size: 14px;
    color: #666;
}

/* Form */
.popup-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.popup-form .form-row.full input {
    width: 100%;
}

.popup-form input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1px solid #dcdffc;
    font-size: 14px;
}

.popup-form input:focus {
    outline: none;
    border-color: #4b5cff;
    box-shadow: 0 0 0 3px rgba(75, 92, 255, 0.15);
}

/* Button */
.popup-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #262262, #4b5cff);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 5px;
}

.popup-btn:hover {
    opacity: 0.92;
}

/* Footer */
.popup-footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}


.detail-box p table,
.detail-box table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 15px;
}

/* Table Header */
.detail-box table thead th {
    background: #f1f5ff;
    color: #0b2c6a;
    font-weight: 700;
    padding: 12px 14px;
    text-align: left;
    border-bottom: 2px solid #dce5ff;
}

/* Table Body */
.detail-box table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
    color: #333;
}

/* First Column (Particulars) */
.detail-box table tbody td:first-child {
    font-weight: 600;
    width: 28%;
    color: #111827;
}

/* Zebra rows */
.detail-box table tbody tr:nth-child(even) {
    background: #f9fafb;
}

/* Last row border remove */
.detail-box table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile Responsive */


.popup-success {
    display: none;
    text-align: center;
    padding: 25px;
}

.popup-success .success-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.popup-success h3 {
    color: #1b8a3b;
    margin-bottom: 5px;
}

.popup-success p {
    color: #444;
    font-size: 15px;
}


.inquiry-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: #f0fff5;
    border-radius: 10px;
    margin-bottom: 15px;
}

.inquiry-success .success-icon {
    font-size: 40px;
}

.error {
    color: #e63946;
    font-size: 12px;
}

.input-error {
    border: 1.5px solid #e63946;
}


.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.custom-pagination .page {
    padding: 8px 14px;
    border-radius: 8px;
    background: #0d1b4c;
    /* theme blue */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.custom-pagination .page:hover {
    background: #ffcc00;
    /* theme yellow */
    color: #0d1b4c;
}

.custom-pagination .active {
    background: #ffcc00;
    color: #0d1b4c;
}

.custom-pagination .disabled {
    opacity: .4;
    cursor: not-allowed;
}

.custom-pagination .dots {
    padding: 8px 6px;
    color: #888;
    font-weight: bold;
}

.flash-toast {
    position: fixed;
    top: 90px;
    /* header ke niche */
    right: -420px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    width: 340px;
    transition: all .5s ease;
    border-left: 6px solid;
}

/* show animation */
.flash-toast.show {
    right: 25px;
}

/* SUCCESS STYLE */
.flash-toast.success {
    border-color: #facc15;
    /* yellow accent */
    background: linear-gradient(135deg, #0f2a56, #1f4b8f);
}

.flash-toast.success .flash-text strong,
.flash-toast.success .flash-text p {
    color: #fff;
}

.flash-toast.success .flash-icon {
    background: #facc15;
    color: #0f2a56;
}

/* ERROR STYLE */
.flash-toast.error {
    border-color: #ef4444;
    background: linear-gradient(135deg, #7f1d1d, #b91c1c);
}

.flash-toast.error .flash-text strong,
.flash-toast.error .flash-text p {
    color: #fff;
}

.flash-toast.error .flash-icon {
    background: #fee2e2;
    color: #b91c1c;
}

.flash-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    font-weight: bold;
}

.flash-text strong {
    display: block;
    font-size: 14px;
    letter-spacing: .3px;
}

.flash-text p {
    margin: 0;
    font-size: 13px;
    opacity: .95;
}

.field {
    width: 100%;
    position: relative;
}

.error {
    color: #e63946;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.input-error {
    border: 1.5px solid #e63946 !important;
}