/* ===================================================
   GURUDEO PARAMEDICAL COLLEGE - MAIN STYLESHEET
   Modern, Clean, Responsive Healthcare UI
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #0e7a44;         /* Green */
    --primary-dark: #0a5c33;    /* Dark Green */
    --primary-light: #e8f5e9;   /* Light Green Tint */
    --secondary: #800000;       /* Maroon / Dark Red */
    --accent: #f5b041;          /* Gold / Amber */
    --dark: #0f172a;            /* Slate Dark */
    --dark-muted: #334155;      /* Slate Neutral */
    --light: #f8fafc;           /* Light Background */
    --white: #ffffff;
    --border: #e2e8f0;
    --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --hover-shadow: 0 20px 30px -10px rgba(2, 132, 199, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-muted);
    background-color: var(--light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: var(--dark);
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-contact a {
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact a:hover {
    color: var(--primary-light);
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-links a {
    color: #cbd5e1;
    padding: 2px 8px;
    border-radius: 4px;
}

.top-bar-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* NAVBAR */
.site-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 14px 60px 14px 100vw;
    margin: -14px 0 -14px -100vw;
    clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.logo-badge {
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    min-height: 55px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0; 
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: #fff;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #f5b041; /* Accent color on hover */
}

/* NEW badge */
.badge-new {
    background: #ff0000;
    color: #fff;
    font-size: 0.55rem;
    padding: 2px 5px;
    border-radius: 3px;
    position: absolute;
    top: 5px;
    right: 5px;
    font-weight: 800;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111; /* Dark dropdown */
    min-width: 220px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    border-top: 2px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ddd;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
    padding-left: 25px;
}

/* Submenu (Nested Dropdown) */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #111;
    min-width: 260px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    border-top: 2px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    display: block;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ddd;
}

.submenu a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding-left: 25px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background: #bae6fd;
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* PAGE HEADER / BANNER */
.page-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
    color: #fff;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2,132,199,0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.breadcrumb-nav a {
    color: #e2e8f0;
}

.breadcrumb-nav a:hover {
    color: var(--primary-light);
}

.breadcrumb-nav span {
    color: #38bdf8;
}

/* UNDER DEVELOPMENT CARD */
.dev-section {
    padding: 60px 0 90px;
    flex-grow: 1;
}

.dev-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    padding: 50px 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid #fde68a;
}

.dev-icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-light), #cffafe);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.15);
}

.dev-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.dev-card p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 30px;
}

.dev-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PLACEHOLDER CARDS GRID */
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.placeholder-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 25px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.placeholder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: #bae6fd;
}

.placeholder-card .p-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.placeholder-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.placeholder-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* FOOTER */
.site-footer {
    background: #090e1a;
    color: #94a3b8;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #38bdf8;
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    background: #050811;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        transition: 0.4s ease;
        overflow-y: auto;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        left: 0;
    }
    .header-cta {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.15);
}

.dev-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.dev-card p {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 30px;
}

.dev-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PLACEHOLDER CARDS GRID */
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.placeholder-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 25px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.placeholder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: #bae6fd;
}

.placeholder-card .p-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.placeholder-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.placeholder-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

/* FOOTER */
.site-footer {
    background: #090e1a;
    color: #94a3b8;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #38bdf8;
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    background: #050811;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        transition: 0.4s ease;
        overflow-y: auto;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        left: 0;
    }
    .header-cta {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .banner-title {
        font-size: 1.7rem;
    }
}

/* ===================================================
   HOMEPAGE SPECIFIC COMPONENTS
   =================================================== */

/* --- COLLEGE INFO BANNER --- */
.info-banner {
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 25px 15px;
    border-bottom: 4px solid var(--accent);
}

.info-banner h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

.info-banner .recognition {
    margin: 8px 0 3px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
}

.info-banner .affiliation {
    margin: 0 0 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-action {
    background-color: #dc3545; /* Reddish button color */
    color: white;
    border: 1px solid #c82333;
    padding: 10px 20px;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-action:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    color: white;
}

/* --- HERO SLIDER --- */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.95;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    z-index: 10;
}
.prev { left: 20px; }
.next { right: 20px; }
.prev:hover, .next:hover { background-color: var(--primary); }

.fade {
    animation-name: fadeAnim;
    animation-duration: 1.5s;
}

@keyframes fadeAnim {
    from {opacity: .4} 
    to {opacity: 1}
}

/* --- MARQUEE --- */
.admission-marquee {
    background: #fff;
    padding: 15px 0;
}
.admission-marquee marquee {
    font-size: 1.4rem;
    color: #d32f2f;
    font-weight: 800;
    text-transform: uppercase;
}

/* --- WELCOME & UPDATES SECTION --- */
.welcome-section {
    padding: 60px 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.section-header .stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.section-header .stars i:nth-child(2) {
    transform: translateY(-3px);
}

.section-title {
    color: var(--secondary);
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.welcome-text {
    color: var(--dark-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: justify;
    text-align-last: center;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--secondary);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-header {
    background-color: var(--primary);
    padding: 15px;
    text-align: center;
    color: var(--white);
}

.card-header .stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 25px 20px;
    min-height: 200px;
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list li i {
    color: var(--dark);
    margin-top: 3px;
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.helpline-icon, .resume-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.8;
}

.phone-numbers {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.resume-text {
    font-size: 1.1rem;
    color: var(--dark-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.email-link {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: underline;
}

.email-link:hover {
    color: var(--secondary);
}

@media (max-width: 992px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    .info-card {
        margin-bottom: 20px;
    }
}

/* --- ACTION BANNER --- */
.action-banner {
    background-color: var(--secondary);
    color: var(--white);
    text-align: center;
    padding: 15px 15px;
    border-bottom: 2px solid var(--accent);
}

/* --- NEW FOOTER STYLES --- */
.new-footer {
    background-color: var(--secondary);
    color: var(--white);
    border-top: none;
}
.new-footer .footer-main {
    padding: 50px 0 30px;
}
.footer-grid-3 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}
.new-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-family: serif;
    text-transform: uppercase;
}
.new-col h3::after {
    display: none;
}
.footer-contact-new {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-new li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #f8f9fa;
}
.footer-contact-new i {
    margin-top: 4px;
    font-size: 1rem;
}
.footer-social-new {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social-new a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.footer-social-new a:hover {
    background-color: var(--white);
    color: var(--secondary);
}
.footer-links-new {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-new li {
    margin-bottom: 15px;
}
.footer-links-new a {
    color: #f8f9fa;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links-new a:hover {
    color: var(--accent);
}
.courses-list-new li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.courses-list-new li::before {
    content: "•";
    color: var(--white);
    margin-right: 8px;
    font-size: 1.2rem;
    line-height: 1;
}
.courses-list-new a {
    font-size: 0.85rem;
}
.new-footer-bottom {
    background-color: #5c0000;
    padding: 15px 0;
    font-size: 0.85rem;
    color: #e2e8f0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 992px) {
    .footer-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer-grid-3 {
        grid-template-columns: 1fr;
    }
}


/* Premium Top Bar Buttons */
.btn-premium-top {
    background: linear-gradient(135deg, #004d99, #0073e6);
    color: white !important;
    border: none;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 77, 153, 0.3);
}

.btn-premium-top:hover {
    background: linear-gradient(135deg, #003366, #0059b3);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 77, 153, 0.4);
}

/* Premium Slider Arrows */
.hero-slider .prev, .hero-slider .next {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.hero-slider .prev:hover, .hero-slider .next:hover {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.1) translateY(-50%) !important;
    color: #fff !important;
}

.hero-slider .prev { left: 20px; top: 50%; transform: translateY(-50%); }
.hero-slider .next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ==================================================
   OVERRIDE FOR NEW REQUIREMENTS
   ================================================== */

/* Animated Colorful Gradient for Top Buttons */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-premium-top {
    background: linear-gradient(45deg, #ff0055, #ff9900, #00d2ff, #3a7bd5) !important;
    background-size: 300% 300% !important;
    animation: gradientBG 4s ease infinite !important;
    color: white !important;
    border: none !important;
    padding: 8px 20px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
}

.btn-premium-top:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

/* Limit Hero Slider Height */
.hero-slider {
    height: 65vh !important;
    max-height: 600px !important;
}
.slide img {
    height: 65vh !important;
    max-height: 600px !important;
    object-fit: cover !important;
}

/* Premium Slider Arrows Overlaid correctly */
.hero-slider .prev, .hero-slider .next {
    position: absolute !important;
    z-index: 999 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 1.6rem !important;
}

.hero-slider .prev:hover, .hero-slider .next:hover {
    background: linear-gradient(45deg, #ff0055, #ff9900) !important;
    transform: scale(1.1) translateY(-50%) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.5) !important;
}

.hero-slider .prev { left: 30px !important; top: 50% !important; transform: translateY(-50%) !important; margin-top: 0 !important; }
.hero-slider .next { right: 30px !important; top: 50% !important; transform: translateY(-50%) !important; margin-top: 0 !important; }
