* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: white;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    transition: box-shadow 0.3s;
    position: relative;
}

header.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    height: 96px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 54px; /* Slightly smaller to accommodate stacking */
    width: auto;
    object-fit: contain;
}

.naac-logo {
    height: 60px;
}

@media (max-width: 768px) {
    .logo a {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 5px 0;
    }
    .header-content {
        height: auto !important;
        min-height: 96px;
    }
}

@media (min-width: 768px) {
    .logo img {
        height: 90px;
    }
    .naac-logo {
        height: 80px;
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .desktop-nav {
        flex-wrap: wrap;
        display: flex;
        gap: 0px 24px;
    }

    .mobile-menu-btn {
        display: none;
    }
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: #0092D1;
}

/* Desktop Dropdown */
.nav-dropdown-desktop {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.nav-dropdown-desktop:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu-desktop {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
}

.nav-dropdown-desktop:hover .dropdown-menu-desktop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-desktop a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-menu-desktop a:last-child {
    border-bottom: none;
}

.dropdown-menu-desktop a:hover {
    background-color: #f9fafb;
    color: #0092D1;
}

.login-btn {
    background: #F58220;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-btn:hover {
    background: #e07310;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.mobile-menu-btn{position:absolute; top:50%; right:0px;}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #4b5563;
    padding: 0.5rem;
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 3rem 1.5rem 1.5rem;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.mobile-close-btn:hover {
    color: #800000;
}

.mobile-nav a {
    display: block;
    color: #4b5563;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    transition: all 0.2s;
}

.mobile-nav a:hover {
    background: #f3f4f6;
    color: #800000;
}

/* Unique Header CTA Styles */
.header-admissions-cta {
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 1024px) {
    .header-admissions-cta {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .header-admissions-link {
        color: #4b5563;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .header-admissions-link:hover {
        color: #009846;
        /* Brand green */
    }

    .header-admissions-link svg {
        width: 18px;
        height: 18px;
    }

    .header-admissions-btn {
        background: #009846;
        color: white;
        padding: 0.5rem 1.25rem;
        border-radius: 9999px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }

    .header-admissions-btn:hover {
        background: #007a38;
        transform: translateY(-1px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Header Social Links */
    .header-social-links {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .header-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        color: #6b7280;
        transition: all 0.2s ease;
        border-radius: 50%;
        background: #f9fafb;
        border: 1px solid #e5e7eb;
    }

    .header-social-link:hover {
        color: #0092D1;
        background: #eff6ff;
        border-color: #0092D1;
        transform: translateY(-1px);
    }

    .header-social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #4b5563;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.dropdown-toggle:hover {
    background: #f3f4f6;
}

.dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    background: #f9fafb;
    border-radius: 0.5rem;
    margin: 0 0.5rem 0.5rem 1.5rem;
    padding: 0.25rem 0;
    border-left: 2px solid #e5e7eb;
}

.nav-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    padding: 0.5rem 1rem !important;
    margin-bottom: 0 !important;
    font-size: 0.8rem !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 550px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
    }

    .about-card {
        padding: 1rem !important;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s;
    cursor: pointer;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.85;
    display: none;
}

.overlay-blue-green {
    background: linear-gradient(to bottom right, #0092D1, #006838);
}

.overlay-green-blue {
    background: linear-gradient(to bottom right, #009846, #0092D1);
}

.overlay-dark-green {
    background: linear-gradient(to bottom right, #006838, #009846);
}

.hero-content {
    position: relative;
    height: 100%;
    display: none;
    align-items: center;
    color: white;
}

.hero-text {
    max-width: 768px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 4.5rem;
    }
}

.hero-text .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-text .subtitle {
        font-size: 1.875rem;
    }
}

.hero-text .description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero-text .description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #009846;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #007a38;
    transform: scale(1.05);
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #F58220;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #e07310;
    transform: scale(1.05);
    box-shadow: 0 25px 30px rgba(0, 0, 0, 0.15);
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #00000033;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.hero-nav-btn:hover {
    background: #007bb1;
}

.hero-nav-btn.prev {
    left: 1rem;
}

.hero-nav-btn.next {
    right: 1rem;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    width: 12px;
    background: #F58220;
}

/* About Section Styles */
.about {
    background-color: #ffffff;
    padding: 2rem 0 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #006838;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.about-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 5px;

    border-radius: 2px;
}

.about-text p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 146, 209, 0.1);
}

.about-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem;
    border-radius: 1.5rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.stat-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
}

.stat-item:nth-child(1) .stat-icon {
    background: rgba(0, 146, 209, 0.1);
    color: #fff;
}

.stat-item:nth-child(2) .stat-icon {
    background: rgba(0, 152, 70, 0.1);
    color: #fff;
}

.stat-item:nth-child(3) .stat-icon {
    background: rgba(245, 130, 32, 0.1);
    color: #fff;
}

.stat-item:nth-child(4) .stat-icon {
    background: rgba(0, 104, 56, 0.1);
    color: #fff;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #fff;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Program Type Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    margin: 0 auto 1.5rem;
}

.value-icon .icon-lg {
    width: 2rem;
    height: 2rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.value-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Styles */
section {
    padding: 4rem 0;
    position: relative;
}

/* Student Journey */
.journey {
    background: linear-gradient(to bottom right, #f9fafb, white);
    position: relative;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 672px;
    margin: 0 auto;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .journey-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.journey-line {
    display: none;
}

@media (min-width: 768px) {
    .journey-line {
        display: block;
        position: absolute;
        top: 33.333%;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, #0092D1, #009846, #F58220);
    }
}

.journey-item {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    transition: all 0.3s;
}

.journey-item:hover .journey-icon {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.journey-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.journey-item p {
    color: #6b7280;
}

/* Programs Section */
.programs {
    background: white;
    border-top: 4px solid #f3f4f6;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, #0092D1, #009846, #F58220);
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.program-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.program-header {
    padding: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.program-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: -4rem -4rem 0 0;
}

.program-header-content {
    position: relative;
    z-index: 10;
}

.program-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.program-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.program-body {
    padding: 1.5rem;
}

.program-body p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.program-list {
    list-style: none;
    margin-bottom: 1rem;
}

.program-list li {
    display: flex;
    align-items: center;
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.program-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.program-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
}

/* Career Section */
.career {
    background: linear-gradient(to bottom right, #0092D1, #006838);
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.career::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.career::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.career-content {
    position: relative;
    z-index: 10;
}

.career-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 2rem;
}

.career-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.career-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .career-header h2 {
        font-size: 3rem;
    }
}

.career-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 672px;
    margin: 0 auto;
}

.career-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .career-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .career-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.career-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.career-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.career-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.career-stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.career-stat-desc {
    font-size: 0.875rem;
    opacity: 0.8;
}

.recruiters {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem;
}

.recruiters h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.recruiters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .recruiters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .recruiters-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.recruiter-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s;
}

.recruiter-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    background: #f9fafb;
    border-top: 4px solid white;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, #F58220, #009846, #0092D1);
}

.testimonial-container {
    max-width: 896px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 3rem;
    }
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 4rem;
    color: #0092D1;
    opacity: 0.2;
}

.testimonial-content {
    position: relative;
    z-index: 10;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    font-size: 4rem;
    margin-right: 1.5rem;
}


/* Program Layout & Sidebar */
.program-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.program-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
    max-height: calc(100vh - 4rem);
}

.enquire-form-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 146, 209, 0.15);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.enquire-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0092D1, #00b4d8, #0077b6);
}

.enquire-form-card h3 {
    color: #0092D1;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-align: center;
    position: relative;
}

.enquire-form-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0092D1, #00b4d8);
}

.sidebar-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.sidebar-contact p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sidebar-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0092D1;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-phone:hover {
    color: #0077b6;
}

@media (max-width: 1024px) {
    .program-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .program-sidebar {
        position: static;
        order: -1;
    }

    .enquire-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .enquire-form-card {
        padding: 1.5rem;
        margin: 0;
        max-width: none;
    }
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.overview-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;

}



.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.overview-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.overview-icon {
    width: 40px;
    height: 40px;
    color: #009846;
}

.overview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0092D1;
    margin-bottom: 0.75rem;
}

.overview-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
    font-weight: 500;
}

.overview-subtext {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .program-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}

.program-main-content {
    flex: 1;
    min-width: 0;
    /* Prevent overflow issues */
}

.program-sidebar {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .program-sidebar {
        width: 350px;
        position: sticky;
        top: 120px;
        /* Header height + gap */
        height: fit-content;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        /* Scrollbar styling for sidebar if content is long */
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 transparent;
    }
}

/* Enquire Form Card */
.enquire-form-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #F58220;
    border-bottom: 4px solid #F58220;
    transition: transform 0.3s ease;
}

.enquire-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.enquire-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    color: #1f2937;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #f9fafb;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #F58220;
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
    background-color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(to right, #F58220, #e07310);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(245, 130, 32, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(245, 130, 32, 0.3);
    background: linear-gradient(to right, #ed7712, #d66a0a);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Sidebar Contact Info */
.sidebar-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.sidebar-contact p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #009846;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.sidebar-phone:hover {
    text-decoration: underline;
}


.testimonial-program {
    color: #0092D1;
    font-weight: 600;
}

.testimonial-company {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
}

.star {
    color: #F58220;
    font-size: 1.5rem;
}

.testimonial-text {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0092D1;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.testimonial-nav:hover {
    background: #007ab8;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: -1.5rem;
}

.testimonial-nav.next {
    right: -1.5rem;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-indicator.active {
    width: 32px;
    background: #0092D1;
}

/* News Section */
.news {
    background: white;
    border-top: 4px solid #f3f4f6;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, #009846, #0092D1, #F58220);
}

.news-impact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .news-impact-grid {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
        gap: 3rem;
    }
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
}

.news-ticker-container {
    background: #fdfdf0;
    /* Light cream background */
    border: 1px solid #eee;
    border-radius: 12px;
    height: 374px;
    /* Adjust height based on how many items you want to see */
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.news-ticker {
    display: flex;
    flex-direction: column;
    animation: ticker-scroll 20s linear infinite;
}

.news-ticker:hover {
    animation-play-state: paused;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.news-arrow {
    color: #f58220;
    font-size: 1.2rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.news-item a {
    color: #e65100;
    /* Darker orange/red for contrast */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-item a:hover {
    color: #0092d1;
    /* Blue on hover */
    text-decoration: underline;
}

@keyframes ticker-scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
        /* Adjust based on duplicated items */
    }
}

.impact-section {
    height: 100%;
}

.news-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.news-image {
    height: 192px;
    background: linear-gradient(to bottom right, #f9fafb, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.news-body {
    padding: 1.5rem;
}

.news-category {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.news-category svg {
    width: 14px;
    height: 14px;
    margin-right: 0.25rem;
}

.news-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.news-date {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.news-date svg {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}

.news-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.news-btn svg {
    width: 16px;
    height: 16px;
    margin-left: 0.25rem;
}

.announcements {
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.announcements h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.announcements h3 svg {
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
    color: #0092D1;
}

.announcements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .announcements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.announcement-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.announcement-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(0.5rem);
}

.announcement-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.announcement-info p {
    font-size: 0.875rem;
    color: #6b7280;
}

.announcement-badge {
    padding: 0.25rem 0.75rem;
    background: #0092D1;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-left: 1rem;
    white-space: nowrap;
}

/* About Section */
.about {
    background: linear-gradient(to bottom right, #f9fafb, white);
    border-top: 4px solid white;
}

/* .about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, #0092D1, #F58220, #009846);
} */

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
}



.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1f2937;
    position: relative;
    display: inline-block;
}

@media (min-width: 768px) {
    .about-text h2 {
        font-size: 3rem;
    }
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, #0092D1, #009846);
    border-radius: 9999px;
}

.about-text p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-card {
    background: linear-gradient(to bottom right, #0092D1, #006838);
    border-radius: 1.5rem;
    padding: 1rem;
    color: white;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-card h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.d-none {
    display: none;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #006838;
    color: white;
    position: relative;
    box-shadow: 0 -25px 50px rgba(0, 0, 0, 0.25);
    border-top: 8px solid #009846;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #F58220, #0092D1, #009846);
}

.footer-content {
    padding: 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.footer-logo span {
    color: #006838;
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-brand h3 {
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-brand p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #0092D1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.social-link:hover {
    background: #007ab8;
    transform: scale(1.1);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    /* margin-bottom: 0.75rem; */
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.9;
    transition: all 0.2s;
    display: inline-block;
}

.footer-section a:hover {
    opacity: 1;
    color: #0092D1;
    transform: translateX(0.25rem);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: #0092D1;
}

.contact-item p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-resources {
    margin-top: 1.5rem;
}

.footer-resources h5 {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    opacity: 0.9;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: #0092D1;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

.icon-xl {
    width: 48px;
    height: 48px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    position: absolute;
    top: 1rem;
    left: 53px;
    right: 0;
    z-index: 5;
    padding: 0.75rem 0;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

/* Enhanced Page Hero Section */
.page-hero {
    position: relative;
    min-height: auto;
    margin-top: 0px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 146, 209, 0.8) 0%, rgba(0, 104, 56, 0.8) 100%);
    z-index: 1;
}

.page-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 146, 209, 0.85);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    text-align: left;
    z-index: 2;
}

.page-hero-text {
    animation: slideInUp 0.6s ease-out;
    text-align: left;
    width: 100%;
}

.page-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.page-hero-text p {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero-text h1 {
        font-size: 2rem;
    }

    .page-hero-text p {
        font-size: 1rem;
    }
}

/* Page Intro Section (Modern Gradient) */
.page-intro {
    padding: 50px 0 50px;
    position: relative;
    background: linear-gradient(135deg, #003366 0%, #0077b6 50%, #009846 100%);
    color: white;
    overflow: hidden;
}

.page-intro::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-intro .container {
    position: relative;
    z-index: 2;
}

.intro-content h1 {
    font-size: clamp(2.5rem, 6vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    line-height: 1;
}

.intro-content h1 span {
    font-weight: 300;
    opacity: 0.8;
}

.intro-content p {    text-align: left;
    font-size: 1.15rem;
    max-width: 600px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--primary-orange);
    padding-left: 20px;
}

/* Breadcrumb Layer */
.custom-breadcrumb {
    margin-bottom:0px;
    display: block;
}

.breadcrumb-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
}

/* Enhanced Content Section */

.content-section {
    padding: 4rem 0;
    animation: fadeIn 0.6s ease-out;
}

.content-section h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #0092D1, #009846);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.card:hover {
    box-shadow: 0 12px 30px rgba(0, 146, 209, 0.15);
    transform: translateY(-5px);
    border-color: #0092D1;
}

/* Reusable Grid for Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cards-grid .card {
    padding: 2rem;
    text-align: center;
}

.cards-grid .card h3 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cards-grid .card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Professional Page Card Styles */
.program-detail-card,
.eligibility-card,
.semester-card,
.download-card,
.faculty-card,
.admin-card,
.news-item {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.program-detail-card:hover,
.eligibility-card:hover,
.semester-card:hover,
.download-card:hover,
.faculty-card:hover,
.admin-card:hover,
.news-item:hover {
    box-shadow: 0 12px 30px rgba(0, 146, 209, 0.15);
    transform: translateY(-5px);
    border-color: #0092D1;
}

.program-detail-header,
.eligibility-header,
.semester-header,
.download-header {
    padding: 1.5rem;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, #0092D1, #0073a3);
}

.program-detail-body,
.eligibility-body,
.semester-details,
.download-body {
    padding: 1.5rem;
}

.program-detail-body h3,
.eligibility-body h3,
.semester-details h3,
.download-body h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.program-detail-body p,
.eligibility-body p,
.semester-details p,
.download-body p {
    color: #6b7280;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.program-detail-body ul,
.eligibility-body ul,
.semester-details ul,
.download-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.program-detail-body li,
.eligibility-body li,
.semester-details li,
.download-body li {
    color: #374151;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.program-detail-body li::before,
.eligibility-body li::before,
.semester-details li::before,
.download-body li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #009846;
    font-weight: bold;
}

/* Read More Button */
.read-more-btn {
    background: linear-gradient(135deg, #0092D1, #0073a3);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 146, 209, 0.3);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #0073a3, #00578a);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 146, 209, 0.4);
}

.read-more-btn:active {
    transform: translateY(0);
}

/* Program Card Top Image */
.program-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Inner banner for individual program pages */
.inner-banner {
    width: 100%;
    height: 220px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 1.5rem 0 2.5rem 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

@media (min-width: 768px) {
    .program-card-image {
        height: 200px;
    }

    .inner-banner {
        height: 280px;
    }
}

/* Faculty & Admin Card Styles */
.faculty-card,
.admin-card {
    text-align: center;
    padding: 2rem;
}

.faculty-card h3,
.admin-card h3 {
    color: #1f2937;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.faculty-card p,
.admin-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

/* Download Card Styles */
.download-card {
    padding: 2rem;
    text-align: center;
}

.download-card h3 {
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.download-card p {
    color: #6b7280;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.download-btn {
    background: linear-gradient(135deg, #0092D1, #0073a3);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 146, 209, 0.3);
}

/* News Item Styles */
.news-item {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-category {
    background: #0092D1;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-date {
    color: #6b7280;
    font-size: 0.85rem;
}

.news-item h3 {
    color: #1f2937;
    margin: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.news-item p {
    color: #6b7280;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    flex-grow: 1;
}

.read-more {
    color: #0092D1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 1rem;
    display: inline-block;
}

.read-more:hover {
    color: #0073a3;
    margin-left: 0.25rem;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 1;
    background: #e5e7eb;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.gallery-item:hover {
    box-shadow: 0 12px 30px rgba(0, 146, 209, 0.15);
    transform: translateY(-5px);
    border-color: #0092D1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.gallery-caption p {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #0092D1;
    transform: rotate(90deg);
}

/* News Item Styles */
.news-item {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
    transition: all 0.3s;
}

.news-item:hover {
    border-color: #0092D1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.news-category {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-achievement {
    background: linear-gradient(135deg, #0092D1, #0073a3);
}

.cat-event {
    background: linear-gradient(135deg, #009846, #006838);
}

.cat-admission {
    background: linear-gradient(135deg, #F58220, #d66b16);
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-item h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.25rem;
    transition: all 0.2s;
}

.news-item:hover h3 {
    color: #0092D1;
}

.news-item p {
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.read-more {
    color: #0092D1;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.read-more:hover {
    color: #0073a3;
    gap: 0.75rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1.5px solid #ddd;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0092D1;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 146, 209, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #0092D1, #0073a3);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 146, 209, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0073a3, #005580);
    box-shadow: 0 6px 20px rgba(0, 146, 209, 0.4);
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* About Page Specific */
.history-timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-weight: 700;
    color: #0092D1;
    font-size: 1.5rem;
    min-width: 100px;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.timeline-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.impact-card {
    padding: 2rem;
    border-left: 4px solid #0092D1;
    background: linear-gradient(135deg, #f0f9ff, #f8f9fa);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.impact-card:hover {
    border-left-color: #009846;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.impact-card h3 {
    margin: 0 0 0.5rem 0;
    color: #0092D1;
    font-size: 1.5rem;
}

.impact-card p {
    color: #666;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #0092D1;
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-item h3 {
    color: #0092D1;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Programs Page Specific */
.program-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-detail-card {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.program-detail-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0092D1;
    transform: translateY(-4px);
}

.program-detail-header {
    padding: 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #0092D1, #0073a3);
}

.program-detail-body {
    padding: 1.5rem;
}

.program-detail-body h3 {
    color: #333;
    margin: 0 0 1rem 0;
}

.program-detail-body p {
    color: #666;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.program-detail-body ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.program-detail-body li {
    color: #666;
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.program-detail-body li::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: #0092D1;
    font-weight: bold;
}

.eligibility-box {
    background: #f0f9ff;
    border-left: 4px solid #0092D1;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

.eligibility-box h4 {
    color: #0092D1;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.eligibility-box p {
    margin: 0.5rem 0;
    color: #333;
}

/* Admissions Page Specific */

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3.5rem 0;
}

.process-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0092D1, #009846, #F58220);
    width: 0;
    transition: width 0.3s ease;
}

.process-card:hover::before {
    width: 100%;
}

.process-card:hover {
    box-shadow: 0 12px 30px rgba(0, 146, 209, 0.15);
    transform: translateY(-5px);
    border-color: #0092D1;
}

.process-step {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0092D1, #0073a3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 146, 209, 0.25);
    transition: all 0.3s ease;
}

.process-card:hover .process-step {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 146, 209, 0.35);
}

.process-card h3 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.process-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-box {
    background: #f9fafb;
    border-left: 4px solid #0092D1;
    padding: 2rem;
    border-radius: 0.8rem;
    margin: 2.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-box h3 {
    color: #0092D1;
    margin: 0 0 1.2rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    color: #374151;
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.info-box li:hover {
    color: #0092D1;
    padding-left: 1.8rem;
}

.info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #009846;
    font-weight: bold;
    font-size: 1rem;
}

.timeline {
    margin: 3.5rem 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0092D1, #009846, #F58220);
}

.timeline-item {
    display: flex;
    margin-bottom: 2.5rem;
    gap: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0.5rem;
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid #0092D1;
    border-radius: 50%;
}

.timeline-marker {
    min-width: 100px;
}

.timeline-date {
    font-weight: 700;
    color: #0092D1;
    font-size: 0.9rem;
}

.timeline-content h4 {
    color: #1f2937;
    margin: 0.5rem 0 0.3rem 0;
    font-weight: 700;
    font-size: 1rem;
}

.timeline-content p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.faq-section {
    margin: 3.5rem 0;
}

.faq-item {
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    border-radius: 0.8rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: #0092D1;
    box-shadow: 0 6px 16px rgba(0, 146, 209, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #f9fafb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f3f4f6;
    color: #0092D1;
}

.faq-answer {
    padding: 1.5rem;
    color: #4b5563;
    display: none;
    line-height: 1.7;
    background: white;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.2s ease;
    color: #0092D1;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.cta-box {
    background: linear-gradient(135deg, #0092D1, #0073a3);
    color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 146, 209, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: -150px -150px 0 0;
}

.cta-box h3 {
    margin: 0 0 1rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-box p {
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-btn {
    background: white;
    color: #0092D1;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 0.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #f3f4f6;
}

.cta-box p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background: white;
    color: #0092D1;
    border: none;
}

.cta-box .btn-primary:hover {
    background: #f0f0f0;
}

/* Downloads Page Specific */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0092D1;
    transition: all 0.3s;
    text-align: center;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-left-color: #009846;
}

.download-card h3 {
    color: #333;
    margin: 1rem 0 0.5rem 0;
}

.download-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.download-btn {
    background: #0092D1;
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.download-btn:hover {
    background: #0073a3;
    transform: scale(1.05);
}

/* Faculty Page Specific */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.admin-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 4px solid #0092D1;
    transition: all 0.3s;
}

.admin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.admin-card h3 {
    color: #0092D1;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.admin-card p {
    color: #666;
    margin: 0;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.faculty-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.faculty-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faculty-card h3 {
    color: #0092D1;
    margin: 1rem 0 0.5rem 0;
}

.faculty-card p {
    color: #666;
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

/* Academic Calendar Specific */
.semester-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.semester-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0092D1;
}

.semester-card h3 {
    color: #333;
    margin: 0 0 1rem 0;
}

.semester-date {
    color: #0092D1;
    font-weight: 600;
    margin: 0.5rem 0;
}

.dates-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.dates-table thead {
    background: linear-gradient(135deg, #0092D1, #0073a3);
}

.dates-table th {
    padding: 1.2rem;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
}

.dates-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 0.95rem;
}

.dates-table tr:last-child td {
    border-bottom: none;
}

.dates-table tbody tr:hover {
    background: #f9fafb;
}

.event-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-tag.tag-admission {
    background: #dbeafe;
    color: #0092D1;
}

.event-tag.tag-exam {
    background: #fce7f3;
    color: #db2777;
}

.event-tag.tag-holiday {
    background: #dcfce7;
    color: #009846;
}

.holidays-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.holiday-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border-top: 4px solid #F58220;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.holiday-card:hover {
    box-shadow: 0 12px 30px rgba(245, 130, 32, 0.15);
    transform: translateY(-5px);
    border-color: #F58220;
}

.holiday-card h4 {
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 700;
}

.holiday-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border-top: 4px solid #0092D1;
    transition: all 0.2s;
}

.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    color: #0092D1;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666;
    margin: 0.25rem 0;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .dept-grid {
        grid-template-columns: 1fr;
    }
}

.dept-item {
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #0092D1;
}

.dept-item h4 {
    color: #0092D1;
    margin: 0 0 0.5rem 0;
}

.dept-item p {
    margin: 0.25rem 0;
    color: #666;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Program Pages CSS */
.program-hero {
    background: linear-gradient(135deg, #0092D1, #0073a3);
    color: white;
    padding: 4rem 0;

}

.program-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.program-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.program-content {
    padding: 3rem 0;
}

.program-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-section h2 {
    color: #0092D1;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.program-section h3 {

    margin: 1rem 0 1rem 0;
    font-size: 1.3rem;
}

.program-section p {
    color: #666;
    line-height: 1.6;
    /* margin-bottom: 1rem; */
}

.program-section ul {
    color: #666;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.program-section li {
    margin-bottom: 0.5rem;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.fee-table th,
.fee-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.fee-table th {
    background: #f8fafc;
    color: #0092D1;
    font-weight: 600;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    background: #f8fafc;
    padding: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 1rem;
    color: #666;
    line-height: 1.6;
}

.apply-btn {
    background: linear-gradient(135deg, #0092D1, #0073a3);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
}

.apply-btn:hover {
    background: linear-gradient(135deg, #0073a3, #00578a);
    transform: translateY(-2px);
}

/* Program Highlights Grid - Advanced Design */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 146, 209, 0.03) 0%, rgba(0, 180, 216, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0092D1, #00b4d8, #0077b6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 146, 209, 0.12);
    border-color: rgba(0, 146, 209, 0.3);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-item:hover::after {
    transform: scaleX(1);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 146, 209, 0.4);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0092D1 0%, #00b4d8 50%, #0077b6 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 146, 209, 0.25);
}

.highlight-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0092D1, #00b4d8, #0077b6);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-item:hover .highlight-icon::before {
    opacity: 0.3;
}

.highlight-content {
    flex: 1;
    z-index: 1;
}

.highlight-content h4 {
    color: #1e293b;
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.highlight-item:hover .highlight-content h4 {
    color: #0f172a;
}

.highlight-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.highlight-item:hover .highlight-content p {
    color: #475569;
}

/* Admission Process */
.admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.admission-step {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0092D1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.admission-step h4 {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.admission-step p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Career Opportunities - Advanced Design */
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.career-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 1rem;
    /* Reduced horizontal padding */
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    /* overflow: hidden; */
    /* Removed to prevent cutting off text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Ensure uniform height across cards */
}

.career-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0092D1, #00b4d8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.career-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 146, 209, 0.15);
    border-color: #0092D1;
}

.career-item:hover::before {
    transform: scaleX(1);
}

.career-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0092D1, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 146, 209, 0.3);
    transition: all 0.3s ease;
}

.career-item:hover .career-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 146, 209, 0.4);
}

.career-item h4 {
    color: #1e293b;
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* Ensure long words wrap */
}

.career-item p {
    color: #64748b;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.career-salary {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #0369a1;
    font-weight: 600;
    border: 1px solid #bae6fd;
    margin-top: auto;
    /* Push to bottom of the flex container */
}

.career-skills {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Program Objectives - Advanced Design */
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.objective-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 10px;
    position: relative;
    /* overflow: hidden; */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.objective-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0092D1, #00b4d8);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.objective-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 146, 209, 0.02) 0%, rgba(0, 180, 216, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.objective-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 146, 209, 0.15);
    border-color: rgba(0, 146, 209, 0.3);
}

.objective-item:hover::before {
    transform: scaleY(1);
}

.objective-item:hover::after {
    opacity: 1;
}

.objective-item:hover .objective-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, #0077b6, #0092D1);
}

.objective-content {
    position: relative;
    z-index: 1;
}

.objective-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0092D1, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 146, 209, 0.3);
    position: absolute;
    top: -22.5px;
    left: -22.5px;
    z-index: 2;
}

.objective-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 25px;
    transition: color 0.3s ease;
}

.objective-item:hover .objective-text {
    color: #1f2937;
}

/* Alternating animation delays for staggered effect */
.objective-item:nth-child(1) {
    animation-delay: 0.1s;
}

.objective-item:nth-child(2) {
    animation-delay: 0.2s;
}

.objective-item:nth-child(3) {
    animation-delay: 0.3s;
}

.objective-item:nth-child(4) {
    animation-delay: 0.4s;
}

.objective-item:nth-child(5) {
    animation-delay: 0.5s;
}

.objective-item:nth-child(6) {
    animation-delay: 0.6s;
}

.objective-item:nth-child(7) {
    animation-delay: 0.7s;
}

/* Certificate Section */
.certificate-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    margin: 2rem 0;
}

.certificate-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

/* Program Pages Responsive Design */
@media (max-width: 1024px) {
    .career-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .objectives-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .program-hero h1 {
        font-size: 2rem;
    }

    .program-hero p {
        font-size: 1rem;
    }

    .program-section {
        padding: 1.5rem;
    }

    .fee-table {
        font-size: 0.9rem;
    }

    .fee-table th,
    .fee-table td {
        padding: 0.75rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .highlight-content h4 {
        font-size: 1.1rem;
    }

    .objective-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -20px;
        left: -20px;
    }

    .objective-text {
        padding-left: 2rem;
    }

    .objective-text {
        font-size: 0.95rem;
    }

    .objective-item {
        padding: 1.25rem;
    }

    .career-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .objectives-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .career-item {
        padding: 1.5rem;
    }

    .career-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .admission-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .admission-step {
        padding: 1rem;
    }
}

/* Enquire Now Form - Sticky Sidebar */
.program-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.program-main-content {
    min-width: 0;
}

.enquire-form-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
    max-height: calc(100vh - 4rem);
}

.enquire-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 146, 209, 0.15);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.enquire-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0092D1, #00b4d8, #0077b6);
}

.enquire-form h3 {
    color: #0092D1;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-align: center;
    position: relative;
}

.enquire-form h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0092D1, #00b4d8);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0092D1;
    box-shadow: 0 0 0 3px rgba(0, 146, 209, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0092D1, #00b4d8);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #0077b6, #0092D1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 146, 209, 0.3);
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-benefits {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.form-benefits h4 {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #64748b;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #0092D1, #00b4d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Responsive Design for Form */
@media (max-width: 1200px) {
    .program-layout {
        grid-template-columns: 1fr 320px;
        gap: 2rem;
    }

    .enquire-form {
        padding: 1.5rem;
    }
}

@media (max-width: 968px) {
    .program-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enquire-form-sidebar {
        position: static;
        order: -1;
    }

    .enquire-form {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .enquire-form {
        padding: 1.5rem;
        margin: 0;
        max-width: none;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }
}

/* Sticky Enquire Form */
.program-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.program-main-content {
    min-width: 0;
}

.enquire-form-container {
    position: sticky;
    top: 2rem;
    height: fit-content;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.enquire-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 146, 209, 0.15);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.enquire-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0092D1, #00b4d8, #0077b6);
}

.enquire-form h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    text-align: center;
    position: relative;
}

.enquire-form h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0092D1, #00b4d8);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0092D1;
    box-shadow: 0 0 0 3px rgba(0, 146, 209, 0.1);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #0092D1, #00b4d8);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 146, 209, 0.3);
}

.form-submit:hover {
    background: linear-gradient(135deg, #0077b6, #0092D1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 146, 209, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.form-benefits {
    background: #f0f9ff;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid #0092D1;
}

.form-benefits h4 {
    color: #0369a1;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.form-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-benefits li {
    color: #0c4a6e;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1rem;
}

.form-benefits li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: #0092D1;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .program-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .enquire-form-container {
        position: static;
        order: -1;
    }

    .enquire-form {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .enquire-form {
        padding: 1.5rem;
    }

    .enquire-form h3 {
        font-size: 1.3rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.75rem;
    }
}

/* Semester Accordion */
.semester-accordion {
    margin: 2rem 0;
}



/* Year Accordion */
.year-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f9fafb;
}

.year-header {
    background: #f58220;
    /* Orange to distinguish from blue semester headers */
    padding: 0rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.year-header:hover {
    background: #e07310;
}

.year-title {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.year-icon {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f58220;
    font-weight: bold;
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.year-content {
    display: none;
    padding: 1.5rem;
    background: white;
}

.year-item.active .year-content {
    display: block;
}

.year-item.active .year-icon {
    transform: rotate(180deg);
}

.semester-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}


@media (max-width: 768px) {
    .semester-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.semester-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 0;
    /* Changed from 1rem to 0 as grid gap handles spacing */
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.semester-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.semester-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}



.semester-content {
    display: block;
    padding: 1.5rem;
}

.curriculum-table {

    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.curriculum-table th,
.curriculum-table td {
    border: 1px solid #e5e7eb;
    padding: 1rem;
    text-align: left;
}

.curriculum-table th {
    background: #fdfdfd;
    color: #1f2937;
    font-weight: 700;
}

.curriculum-table tr:nth-child(even) {
    background: #fafafa;
}

@media (max-width: 640px) {

    .curriculum-table th,
    .curriculum-table td {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* B.Com Video Discovery Section */
.video-discovery-section {
    background-color: #EEFBF3;
    border-radius: 1.5rem;
    padding: 3rem !important;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 152, 70, 0.1);
}

.video-discovery-container {

    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.video-discovery-text {
    flex: 1;
    min-width: 300px;
}

.video-discovery-text h2 {
    color: #1a202c !important;
    font-size: 2.25rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    text-align: left !important;
    font-weight: 700 !important;
}

.video-discovery-text h2 span {
    color: #0e92c6;
}

.video-discovery-text p {
    color: #4a5568 !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;

    margin-bottom: 15px;
}

.video-discovery-media {
    flex: 1.2;
    min-width: 300px;
}

.video-discovery-frame {
    width: 100%;
    aspect-ratio: 16 / 6;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    background: #000;
}

.video-discovery-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .video-discovery-container {
        gap: 2rem;
    }

    .video-discovery-text h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .video-discovery-section {
        padding: 2rem 1.5rem !important;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .video-discovery-container {
        flex-direction: column;
        text-align: center;
    }

    .video-discovery-text h2 {
        font-size: 1.75rem !important;
        text-align: center !important;
    }

    .video-discovery-text p {
        text-align: center !important;
    }
}

/* Learning Outcomes Section */
.learning-outcomes-section {
    background-color: #EEFBF3;
    border-radius: 1.5rem;
    padding: 4rem 3rem !important;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.learning-outcomes-section h2 {
    color: #1a202c !important;
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 3rem !important;
}

.learning-cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.learning-card {
    background: white;

    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.learning-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.learning-card-image {
    width: 100px;
    height: 100px;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.learning-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learning-card-content {
    flex: 1;
}

.learning-card-content h3 {
    color: #0d94c5 !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
}

.learning-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

.learning-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.learning-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0092D1, #0073a3);
    color: white !important;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.learning-read-more-btn:hover {
    background-color: #55a379;
}

@media (max-width: 768px) {
    .learning-outcomes-section {
        padding: 3rem 1.5rem !important;
    }

    .learning-outcomes-section h2 {
        font-size: 1.75rem !important;
        margin-bottom: 2rem !important;
    }

    .learning-card {
        min-width: 100%;
        border-radius: 1.5rem 1.5rem 3rem 1.5rem;
    }

    .learning-card-image {
        width: 80px;
        height: 80px;
    }
}

/* Integrated Design Tokens and Section Styles */
:root {
    --primary-blue: #0092D1;
    --primary-green: #009846;
    --primary-orange: #F58220;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    --card-hover-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Tightened Content Section */
.content-section {
    padding: 60px 0;
    position: relative;
    background: white;
}

/* Section Headings */
.category-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.category-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Denser Program Grid */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

/* Card Refinement */
.program-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
    background: white;
}

.card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.program-card:hover .card-img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}

/* Badges */
.card-badge {
    position: absolute;
    top: 15px;
    left: 66px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(245, 130, 32, 0.2);
}

.card-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 3;
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.25;
}

.card-body p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Modern Button */
.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--primary-blue);
    color: white;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    gap: 8px;
    border: none;
    font-size: 0.95rem;
}

.explore-btn:hover {
    background: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(245, 130, 32, 0.2);
}

.explore-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.explore-btn:hover svg {
    transform: translateX(3px);
}


.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
    margin: 60px 0;
}

/* Advantages Section */
.advantages-sec {
    padding: 80px 0;
    background: #fbfcfd;
    position: relative;
    overflow: hidden;
}

.advantages-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.advantages-header h2 span {
    color: var(--primary-green);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.advantage-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.advantage-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 152, 70, 0.08);
}

.adv-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 152, 70, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.advantage-card:hover .adv-icon-wrapper {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.adv-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Why Choose Section */
.why-choose-sec {
    padding: 100px 0;
    background-color: #eefdf5;
    position: relative;
    overflow: hidden;
}

.why-choose-sec::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><g fill="none" stroke="%23009846" stroke-width="0.5" stroke-opacity="0.1"><circle cx="400" cy="200" r="100"/><circle cx="400" cy="200" r="150"/><circle cx="400" cy="200" r="200"/><circle cx="400" cy="200" r="250"/><circle cx="400" cy="200" r="300"/></g></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    opacity: 0.6;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header span {
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.why-choose-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: white;
    border-radius: 10px;
    padding: 40px 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 152, 70, 0.1);
}

.why-number {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #1e293b;
    color: white;
    padding: 5px 12px;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 4px;
    z-index: 3;
}

.why-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    border-left: 8px solid transparent;
    border-top: 8px solid #0f172a;
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.why-icon-wrapper svg {
    width: 50px;
    height: 50px;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}
img.naac-logo{height:80px;}
@media (max-width: 768px) {
    .programs-intro {
        padding: 100px 0 40px;
    }

    .intro-content h1 {
        font-size: 2.8rem;
    }

    .custom-breadcrumb { padding: 10px 0;
        top:0px !important;
		position: relative !important;
    }

    .category-header h2 {
        font-size: 1.8rem;
    }

    .program-grid {
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-header h2 {
        font-size: 2rem;
    }
}

/* FAQ Section Styles */
.index-faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    background: #f0f9ff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.3s ease-in-out;
    padding: 0 24px 24px;
    border-top: 1px solid rgba(0, 146, 209, 0.1);
}

.faq-answer-content {
    padding-top: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-answer-content a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.faq-read-more {
    text-align: center;
    margin-top: 40px;
}

/* Faculty Page Content */
.faculty-content {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.staff-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #009846;
    /* Brand Green */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:nth-child(2) {
    border-top-color: #0092D1;
    /* Brand Blue */
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.staff-card h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.staff-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdf-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.pdf-link:hover {
    background: #fff;
    border-color: #009846;
    color: #009846;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.staff-card:nth-child(2) .pdf-link:hover {
    border-color: #0092D1;
    color: #0092D1;
}

.pdf-link svg {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.pdf-link span {
    font-weight: 500;
}

/* Thank You Page */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 2rem;
    font-family: 'Inter', sans-serif;
}

.thank-you-card {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.mail-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mail-icon-bg {
    width: 100px;
    height: 100px;
    background: #004d40;
    /* Dark Green */
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
}

.mail-icon-bg svg {
    width: 60px;
    height: 60px;
    stroke-width: 1.5;
}

.at-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-top: -5px;
    background: #00bcd4;
    /* Light Blue for @ circle */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    font-family: monospace;
}

.mail-icon {
    display: none;
    /* Using custom SVG structure above */
}

.thank-you-title {
    color: #1a237e;
    /* Dark Blue */
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.thank-you-subtitle {
    color: #1a237e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.thank-you-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 2rem auto;
    width: 100%;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-label {
    color: #1a237e;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #1a237e;
    /* Using dark blue for text */
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-email {
    color: #6b7280;
    /* Gray for email */
    font-weight: 500;
    font-size: 1rem;
}

.download-btn {
    display: inline-block;
    background-color: #66bb6a;
    /* Light Green */
    color: white;
    padding: 1rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #4caf50;
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 1.8rem;
    }

    .thank-you-subtitle {
        font-size: 1.2rem;
    }
}
/* Modern Faculty Card Styles */
.dept-faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.dept-faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dept-faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 152, 70, 0.15);
    border-color: #009846;
}

.dept-faculty-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.dept-faculty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.dept-faculty-card:hover .dept-faculty-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.dept-faculty-info {
    padding: 25px;
    text-align: center;
    position: relative;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dept-faculty-role {
    color: #009846; /* Primary Green */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.dept-faculty-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a; /* Text Dark */
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.dept-faculty-bio {
    color: #475569; /* Text Muted */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.dept-social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.dept-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dept-social-icon:hover {
    background: #0092D1; /* Primary Blue */
    color: white;
    transform: translateY(-3px);
}

.dept-social-icon svg {
    width: 18px;
    height: 18px;
}


/* Coming Soon Page Styles */
.coming-soon-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.cs-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 152, 70, 0.1);
    color: #009846;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

.cs-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cs-title .highlight {
    color: #009846;
}

.cs-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cs-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cs-btn {
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cs-btn-primary {
    background: #009846;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 152, 70, 0.2);
}

.cs-btn-primary:hover {
    background: #007a38;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 152, 70, 0.3);
}

.cs-btn-outline {
    background: transparent;
    color: #475569;
    border: 2px solid #e2e8f0;
}

.cs-btn-outline:hover {
    border-color: #009846;
    color: #009846;
    background: rgba(0, 152, 70, 0.05);
}

@media (max-width: 640px) {
    .cs-title {
        font-size: 2.5rem;
    }
    .coming-soon-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
}

/* Top Bar Styling */
.top-bar {
    background-color: #800000; /* Deep red */
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between; /* Space between links and socials */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: white !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar-links a:hover {
    opacity: 0.8;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: white !important;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.top-bar-social a:hover {
    opacity: 0.8;
}

.top-bar-social a svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 12px;
        padding: 10px 15px;
    }

    .top-bar-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 15px;
        text-align: center;
    }

    .top-bar-social {
        justify-content: center;
    }
}

