:root {
    --primary-color: #0d47a1;
    --accent-color: #fbc02d;
    --secondary-color: #ff9900;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-gray: #f9f9f9;
    --white: #ffffff;
    --dark-blue: #003366;
    --success-green: #28a745;
    --warning-orange: #ff9900;
    --danger-red: #dc3545;
    --info-blue: #17a2b8;
    --light-gray: #e9ecef;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--text-dark)
}

h1 {
    font-size: 2.5rem
}

h2 {
    font-size: 2rem
}

h3 {
    font-size: 1.75rem
}

h4 {
    font-size: 1.5rem
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1.1rem
}

p {
    margin-bottom: 1rem
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease
}

a:hover {
    color: var(--accent-color)
}

a:focus {
    outline: 2px dashed var(--accent-color);
    outline-offset: 2px;
}

/* Spacing System */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px
}

.section {
    padding: 80px 0
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0
    }

    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.75rem
    }

    h3 {
        font-size: 1.5rem
    }
}

.hero-section {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(13, 71, 161, 0.7)), url('images/gallery/h1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 50px 0;
    text-align: center
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px
}

.section-padding {
    padding: 0px 0
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 20px
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 1300px;
    margin: 0 auto
}

/* Component System */

/* Card Components */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #dbeafe
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color)
}

.course-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid #edf2f7;
    border-bottom: 4px solid var(--primary-color);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 71, 161, 0.2);
    border-color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    background: var(--primary-color)
}

.feature-icon {
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 15px
}

.img-rounded-custom {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: cover
}

.girls-hostel-bg {
    background-color: var(--bg-light)
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 24px;
    transition: opacity 0.3s
}

.gallery-img:hover {
    opacity: 0.9
}

/* Button Components */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    font-family: 'Poppins', sans-serif
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15)
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm)
}

.btn:focus {
    outline: 2px dashed var(--accent-color);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white)
}

.btn-primary:hover {
    background-color: #0b3d8a;
    color: var(--white)
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-dark)
}

.btn-secondary:hover {
    background-color: #f9a825;
    color: #000
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color)
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white)
}

.btn-outline-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color)
}

.btn-outline-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-dark)
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem
}

.btn-block {
    display: block;
    width: 100%
}

.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden
}

.custom-accordion .accordion-button {
    background-color: #fff;
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1)
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125)
}

.custom-accordion .accordion-body {
    padding: 20px 25px;
    background-color: #fff;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid #f0f0f0
}

.fee-table thead th {
    background-color: #f1f5f9;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0
}

.fee-table tbody td {
    vertical-align: middle;
    color: var(--text-dark)
}

.additional-charges {
    background-color: #fff9c4;
    border-left: 4px solid var(--accent-color)
}

.card-header h4 {
    font-size: 1.25rem;
    font-weight: 600
}

@media(max-width:768px) {
    #gallery .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        gap: 15px
    }

    #gallery .col-md-4 {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center
    }

    #gallery .row::-webkit-scrollbar {
        display: none
    }

    #gallery .row {
        -ms-overflow-style: none;
        scrollbar-width: none
    }
}

.news-detail-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px
}

.news-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark)
}

.news-content h3,
.news-content h4 {
    color: var(--primary-color);
    margin-top: 30px
}

.sidebar-widget a {
    transition: color 0.3s ease
}

.sidebar-widget a:hover {
    color: var(--primary-color) !important
}

.sidebar-gallery-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer
}

.sidebar-gallery-img:hover {
    transform: scale(1.05);
    opacity: 0.9
}

.page-header {
    background: linear-gradient(rgba(51, 3, 47, 0.9), rgb(11, 10, 36));
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 100px
}

.news-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1
}

.news-hero-bg i {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    animation: floatIcons 15s infinite linear
}

.news-hero-bg i:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 3rem;
    animation-duration: 12s
}

.news-hero-bg i:nth-child(2) {
    top: 20%;
    right: 20%;
    font-size: 4rem;
    animation-duration: 15s;
    animation-delay: 1s
}

.news-hero-bg i:nth-child(3) {
    bottom: 30%;
    left: 15%;
    font-size: 3.5rem;
    animation-duration: 18s;
    animation-delay: 2s
}

.news-hero-bg i:nth-child(4) {
    bottom: 40%;
    right: 10%;
    font-size: 2.5rem;
    animation-duration: 14s;
    animation-delay: 0.5s
}

.news-hero-bg i:nth-child(5) {
    top: 50%;
    left: 50%;
    font-size: 5rem;
    animation-duration: 20s;
    animation-delay: 3s;
    opacity: 0.02
}

.news-hero-bg i:nth-child(6) {
    top: 15%;
    left: 40%;
    font-size: 2.5rem;
    animation-duration: 16s;
    animation-delay: 1.5s
}

.news-hero-bg i:nth-child(7) {
    bottom: 25%;
    right: 35%;
    font-size: 3rem;
    animation-duration: 19s;
    animation-delay: 2.5s
}

.news-hero-bg i:nth-child(8) {
    top: 60%;
    right: 15%;
    font-size: 2.2rem;
    animation-duration: 14s;
    animation-delay: 0.5s
}

.news-hero-bg i:nth-child(9) {
    bottom: 10%;
    left: 30%;
    font-size: 2.8rem;
    animation-duration: 17s;
    animation-delay: 1.2s
}

.news-hero-bg i:nth-child(10) {
    top: 35%;
    left: 5%;
    font-size: 2rem;
    animation-duration: 13s;
    animation-delay: 0.2s
}

@keyframes floatIcons {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.05
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.1
    }

    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.05
    }
}

.glass-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: floatCard 6s ease-in-out infinite
}

.glass-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px
}

.glass-card small {
    font-size: 0.8rem;
    opacity: 0.8
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-10px)
    }
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px
}

.custom-shape-divider-bottom .shape-fill {
    fill: #f8f9fa
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: left
}

.hero-title-large {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-visuals {
    position: relative;
    height: 300px
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.animate-on-scroll.delay-100 {
    transition-delay: 0.1s
}

.animate-on-scroll.delay-200 {
    transition-delay: 0.2s
}

.animate-on-scroll.delay-300 {
    transition-delay: 0.3s
}

.sr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px
}

@media(max-width:900px) {
    .sr-grid {
        grid-template-columns: 1fr
    }
}

.sr-year-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%
}

.sr-year-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1)
}

.sr-year-card.highlight {
    border-left: 5px solid var(--accent-color);
    background: #fff;
    position: relative;
    border: 1px solid var(--accent-color)
}

.sr-year-card.highlight::before {
    content: "Historic";
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px
}

.sr-year {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px
}

.sr-subsection {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid transparent
}

.sr-year-card .sr-subsection:nth-of-type(1) {
    border-left-color: #28a745
}

.sr-year-card .sr-subsection:nth-of-type(2) {
    border-left-color: var(--primary-color)
}

.sr-title {
    font-size: 0.9rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px
}

.sr-number {
    font-size: 1.5rem;
    color: #333;
    font-weight: 800
}

.sr-number strong {
    color: var(--primary-color)
}

.sr-note {
    color: #777;
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic
}

.sr-ratio {
    margin-top: 8px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.05);
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px
}

.sr-foot {
    margin-top: 20px;
    color: #888;
    font-size: 0.85rem;
    text-align: center
}

.sr-foot a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600
}

.about-img-wrapper {
    position: relative;
    padding: 0 0 30px 30px;
    z-index: 1
}

.about-img-wrapper img {
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease
}

.about-img-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2)
}

.about-img-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 70%;
    background-color: var(--accent-color);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.5s ease
}

.about-img-wrapper:hover::before {
    bottom: -5px;
    left: -5px
}

.about-img-wrapper::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#ccc 20%, transparent 20%);
    background-position: 0 0;
    background-size: 10px 10px;
    z-index: 0;
    opacity: 0.6
}

.about-float-badge {
    position: absolute;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    animation: floatBadge 5s ease-in-out infinite
}

.about-float-badge i {
    color: var(--accent-color);
    font-size: 1.2rem
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.eduhub-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a237e 100%);
    color: #fff !important;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.eduhub-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important
}

.eduhub-card h3 {
    color: #fff !important
}

.eduhub-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 15rem;
    opacity: 0.05;
    transform: rotate(-15deg)
}

.experience-wrapper {
    position: relative;
    padding: 30px
}

.experience-wrapper .main-img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.experience-wrapper:hover .main-img {
    transform: scale(1.02)
}

.experience-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: #e0e7ff;
    border-radius: 30px;
    z-index: 1;
    transition: all 0.5s ease
}

.experience-wrapper:hover::before {
    top: -25px;
    right: -25px
}

.experience-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary-color) 15%, transparent 15%);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0
}

.exp-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
    min-width: 140px
}

.exp-float-card.bottom-left {
    bottom: 40px;
    left: 0;
    border-left: 5px solid var(--accent-color);
    max-width: 260px;
    animation-delay: 0.5s
}

.exp-float-card.top-right {
    top: 10px;
    right: 10px;
    border-bottom: 5px solid var(--primary-color)
}

.exp-year-big {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-block
}

.spin-ring {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 2px dashed var(--accent-color);
    border-radius: 50%;
    z-index: 0;
    animation: spin 10s linear infinite;
    opacity: 0.5
}

@keyframes spin {
    100% {
        transform: rotate(360deg)
    }
}

.pcp-link {
    color: #fff;
    text-decoration: none
}

.pcp-link:hover {
    color: #fdfdfd;
    text-decoration: underline
}

.pcp-link:visited {
    color: #fff
}


/* Comparison Section Styles */
.comparison-section {
    background-color: #f9fbfd;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    align-items: center;
    text-align: center;
}

.comparison-header div:first-child {
    text-align: left;
}

.pcp-heading {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 800;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background-color 0.3s ease;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background-color: #f8f9fa;
}

.row-param {
    font-weight: 600;
    color: #444;
}

.pcp-cell {
    background: rgba(13, 71, 161, 0.05);
    /* Light primary tint */
    color: var(--primary-color);
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    border: 1px solid rgba(13, 71, 161, 0.1);
}

.pcp-cell i {
    color: #28a745;
    /* Green check */
    margin-right: 8px;
}

.other-cell {
    color: #666;
    padding: 15px;
}

.other-cell i {
    color: #dc3545;
    /* Red cross */
    margin-right: 8px;
}

@media (max-width: 768px) {
    .comparison-header {
        display: none;
    }

    .comparison-table {
        padding: 15px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        border: 1px solid #eee;
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    .row-param {
        font-size: 1.1rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 5px;
    }

    .pcp-cell::before {
        content: "PCP Sikar: ";
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: var(--primary-color);
    }

    .other-cell::before {
        content: "Others: ";
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #666;
    }
}

/* Course Section Styles */
.course-section {
    background-color: #fcfdfe;
    padding-bottom: 80px;
    position: relative;
    /* faint pattern background */
    background-image: radial-gradient(#e0e7ff 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Course Section Title */
/* Course Section Title (Shared with Comparison) */
.course-section .section-title,
.comparison-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    padding-top: 60px;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 20px;
}

.course-section .section-title::after,
.comparison-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.course-section .section-title i,
.comparison-section .section-title i {
    color: var(--accent-color);
    margin-right: 15px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 0.7em;
    vertical-align: middle;
    border: 1px solid #f0f0f0;
}

/* Course Intro Styling */
/* Course Intro Styling: Simple */
.course-intro {
    max-width: 1100px;
    margin: 0 auto 50px;
    text-align: center;
}

.course-intro p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Course Card: Framed Geometric Design */
.course-card {
    background: #fff;
    border-radius: 12px;
    /* Sharper corners */
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #edf2f7;
    border-bottom: 4px solid var(--primary-color);
    /* Permanent bottom frame */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px
}

/* Hover State: Dark Background with preserved frame */
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 71, 161, 0.2);
    border-color: var(--primary-color);
    /* Full border color change */
    border-bottom-color: var(--accent-color);
    /* Accent pop at bottom */
    background: var(--primary-color)
}

/* Hidden Top Gradient (Removed for new design) */
.course-card::before {
    display: none
}

.course-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #f8faff;
    border-radius: 12px;
    /* Matching corner radius */
    box-shadow: none;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0
}

/* Icon Changes on Hover */
.course-card:hover .course-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.2)
}

.course-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a2e;
    line-height: 1.3;
    transition: color 0.3s ease
}

.course-card:hover h3 {
    color: #fff
}

.course-tag {
    align-self: flex-start;
    display: inline-block;
    background: rgba(13, 71, 161, 0.06);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    border: 1px solid rgba(13, 71, 161, 0.1);
    transition: all 0.3s ease
}

.course-card:hover .course-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    border-color: rgba(255, 255, 255, 0.2)
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid #edf2f7;
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #dbeafe
}

.card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700
}

.card p {
    color: var(--text-light);
    line-height: 1.6
}

/* Course Details: Hidden by Default */
.course-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
    text-align: left;

    /* Collapsed State */
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    overflow: hidden;
    border-top: 0 solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Group Reveal: Hovering the GRID reveals ALL cards */
.course-grid:hover .course-details {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

/* Individual Card Hover Style (Visual Highlight Only) */
.course-card:hover .course-details {
    /* No layout change, strictly handled by grid hover */
    border-top-color: rgba(255, 255, 255, 0.2);
}

.course-details li {
    background: #f8f9fa;
    /* Light grey by default */
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.8rem;
    color: #555;
    /* Dark text by default */
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.course-details li:hover {
    background: #fff;
    border-color: var(--accent-color);
}

.course-card:hover .course-details li {
    background: rgba(255, 255, 255, 0.1);
    /* Glassy on card hover */
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.course-details li i {
    color: var(--primary-color);
    /* Primary color icon by default */
    font-size: 1rem;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.course-card:hover .course-details li i {
    color: var(--accent-color);
    /* Accent icon on card hover */
}

.course-details li strong {
    color: #333;
    /* Dark title by default */
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    color: #fff;
    /* White title on card hover */
}

/* Hero Content Box with Light Background */
.hero-content-box {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .hero-content-box {
        padding: 20px;
    }
}

/* Full width for last item if odd (optional, but good for symmetry) */
.course-details li:last-child:nth-child(odd) {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .course-section {
        padding-bottom: 50px
    }

    .course-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on mobile */
        gap: 20px
    }

    .course-card {
        padding: 25px 20px
    }

    .course-icon {
        font-size: 2.5rem;
        padding: 12px;
        margin-bottom: 15px
    }

    .course-card h3 {
        font-size: 1.25rem
    }

    .section-title h2 {
        font-size: 2rem
    }

    .feature-card {
        padding: 20px
    }

    .btn-pcp,
    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem
    }
}

@media (max-width: 480px) {
    .comparison-row {
        padding: 15px;
    }

    .comparison-table {
        padding: 10px;
        border-radius: 15px;
    }

    .row-param {
        font-size: 1rem;
    }

    .pcp-cell,
    .other-cell {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Marquee / Infinite Scroll Styles */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 30px;
    /* Space between cards */
    animation: scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content .card-wrapper {
    flex: 0 0 auto;
    width: 500px;
    /* Wider for better text fit */
    white-space: normal;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ensure inner cards take full height */
.card-wrapper .h-100 {
    height: 100% !important;

}

/* Infrastructure Marquee - Specific Styles */
.infra-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.infra-marquee-content {
    display: flex;
    width: max-content;
    gap: 25px;
    animation: scroll 40s linear infinite;
}

.infra-marquee-content:hover {
    animation-play-state: paused;
}

.infra-marquee-content .infra-card-wrapper {
    flex: 0 0 auto;
    width: 320px;
    /* Specific width for infra cards */
}

/* Desktop Grid Layout for Infrastructure */


/* Infrastructure Card Styling */
.infra-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.infra-card img {
    width: 100%;
    height: 200px;
    /* Fixed height for uniformity */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
}

/* Hide old icon as image replaces it */
.infra-card .infra-icon {
    display: none !important;
}

/* Utility for compact fee card */
.small-font {
    font-size: 0.85rem;
}

/* Glass Hero Design */
.glass-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Experience / Legacy Section Styles */
.experience-wrapper {
    position: relative;
    border-radius: 20px;
    margin-bottom: 30px;
}

.experience-wrapper img.main-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.exp-float-card {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    min-width: 180px;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.exp-float-card.bottom-left {
    bottom: 30px;
    left: -30px;
    animation-delay: 0s;
}

.exp-float-card.top-right {
    top: 30px;
    right: -30px;
    animation-delay: 1.5s;
}

.exp-year-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    display: block;
}

/* Fix for mobile overlap */
@media (max-width: 991px) {
    .experience-wrapper {
        display: block;
        margin-bottom: 40px;
        padding-bottom: 0;
    }

    .experience-wrapper img.main-img {
        width: 100%;
        margin-bottom: 0;
        /* No margin so card can overlap */
        display: block;
    }

    .exp-float-card {
        position: relative !important;
        margin: 0 auto 15px !important;
        width: 90% !important;
        max-width: 350px;
        transform: none !important;
        animation: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        padding: 15px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* The "Established" card comes first in HTML */
    .exp-float-card.bottom-left {
        margin-top: -30px !important;
        /* Overlap the image */
        z-index: 5;
        background: #fff;
        /* Ensure background covers image */
        flex-direction: row;
        /* Horizontal layout for this card */
        justify-content: center;
        gap: 15px;
    }

    .exp-float-card.bottom-left i {
        margin-bottom: 0 !important;
    }

    .exp-float-card.bottom-left .d-flex {
        flex-direction: row !important;
        text-align: left;
    }

    /* The "17+ Years" card comes second */
    .exp-float-card.top-right {
        margin-top: 10px !important;
    }
}

/* Trust Checklist Card Styles */
.checklist-card {
    background: #fff;
    padding: 30px 25px 25px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 5px solid #28a745;
    position: relative;
    height: 100%;
    transition: var(--transition-base);
    min-width: 320px;
    /* Ensure width for marquee */
}

.checklist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.15);
}

.checklist-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d1e7dd;
    color: #0f5132;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.checklist-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards
}

.pulse {
    animation: pulse 2s infinite
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

.text-success {
    color: var(--success-green);
}

.text-danger {
    color: var(--danger-red);
}

.text-warning {
    color: var(--warning-orange);
}

.text-muted {
    color: var(--text-light);
}

.text-info {
    color: var(--info-blue);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-accent {
    background-color: var(--accent-color);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-info {
    background-color: var(--info-blue);
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
}

.rounded-full {
    border-radius: 50px;
}

.shadow {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.py-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-3 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.px-1 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-2 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-3 {
    padding-left: 30px;
    padding-right: 30px;
}

.p-1 {
    padding: 10px;
}

.p-2 {
    padding: 20px;
}

.p-3 {
    padding: 30px;
}

.border {
    border: 1px solid var(--border-color);
}

.border-top {
    border-top: 1px solid var(--border-color);
}

.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

.border-primary {
    border-color: var(--primary-color);
}

.transition {
    transition: var(--transition-base);
}

.transition-fast {
    transition: var(--transition-fast);
}


.transition-slow {
    transition: var(--transition-slow);
}

.section-padding {
    padding: 20px 0;
}

/* Form Components */
.form-group {
    margin-bottom: 20px
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark)
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: var(--radius-md);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out
}

.form-control:focus {
    color: var(--text-dark);
    background-color: var(--white);
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.25)
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 1
}

textarea.form-control {
    min-height: 120px;
    resize: vertical
}

/* Premium Card Styles */
.premium-insight-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(13, 71, 161, 0.2);
}

.premium-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(13, 71, 161, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.premium-insight-card:hover .premium-icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(13, 71, 161, 0.1);
    line-height: 1;
}

/* Card Colors */
.card-color-1 {
    border-left: 5px solid #4f46e5;
}

.card-color-2 {
    border-left: 5px solid #ec4899;
}

.card-color-3 {
    border-left: 5px solid #06b6d4;
}

.card-color-4 {
    border-left: 5px solid #10b981;
}

.card-color-5 {
    border-left: 5px solid #f59e0b;
}

.card-color-6 {
    border-left: 5px solid #ef4444;
}

.card-color-7 {
    border-left: 5px solid #8b5cf6;
}

.card-color-8 {
    border-left: 5px solid #0ea5e9;
}

.card-color-9 {
    border-left: 5px solid #f97316;
}

.card-color-10 {
    border-left: 5px solid #22c55e;
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 2rem;
}

.bento-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.1);
    border-color: rgba(13, 71, 161, 0.2);
}

.icon-box-bento {
    width: 60px;
    height: 60px;
    background: rgba(13, 71, 161, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.bento-card:hover .icon-box-bento {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

/* Touch device enhancements */
@media (hover: none) and (pointer: coarse) {

    .bento-card,
    .premium-insight-card {
        transition: none;
    }

    .bento-card:hover,
    .premium-insight-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .icon-box-bento:hover,
    .premium-icon-box:hover {
        transform: none;
        background: rgba(13, 71, 161, 0.1);
        color: var(--primary-color);
    }

    .btn-hero-warning:hover,
    .btn-transparent:hover {
        transform: none;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
}


/* =========================================
   SCOPED STYLES FOR DIRECTOR & RESULTS
   Verified & Clean Implementation
   ========================================= */

/* --- 1. Director's Message Page (.director-msg-page) --- */
.director-msg-page {
    --primary: #004d7a;
    --primary-700: #003859;
    --secondary: #ffc107;
    --text-dark: #212529;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);

    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 1rem;
}

.director-msg-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.director-msg-page .container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .director-msg-page .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .director-msg-page .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .director-msg-page .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .director-msg-page .container {
        max-width: 1140px;
    }
}

.director-msg-page .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.director-msg-page .col-md-6,
.director-msg-page .col-lg-4,
.director-msg-page .col-lg-8,
.director-msg-page .col-md-3 {
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .director-msg-page .col-md-6 {
        width: 50%;
    }

    .director-msg-page .col-md-3 {
        width: 25%;
    }
}

@media (min-width: 992px) {
    .director-msg-page .col-lg-4 {
        width: 33.3333%;
    }

    .director-msg-page .col-lg-8 {
        width: 66.6666%;
    }
}

.director-msg-page .text-center {
    text-align: center;
}

.director-msg-page .justify-center {
    justify-content: center;
}

.director-msg-page .align-center {
    align-items: center;
}

.director-msg-page .btn {
    display: inline-block;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.director-msg-page .btn-primary {
    background-color: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.director-msg-page .btn-primary:hover {
    background-color: var(--primary-700);
    border-color: var(--primary-700);
    transform: translateY(-2px);
}

.director-msg-page .page-header {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-700) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.director-msg-page .page-header h1 {
    font-size: 2.5rem;
    margin-top: 0;
    color: white;
}

.director-msg-page .breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.director-msg-page .breadcrumb li+li::before {
    content: "/";
    padding: 0 10px;
}

.director-msg-page .section-padding {
    padding: 20px 0;
}

.director-msg-page .director-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    width: 100%;
    height: auto;
}

.director-msg-page .message-heading {
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

.director-msg-page .message-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
}

.director-msg-page .drop-cap::first-letter {
    font-size: 3rem;
    float: left;
    margin-right: 10px;
    line-height: 1;
    color: var(--secondary);
    font-family: "Georgia", serif;
}

.director-msg-page p {
    margin-bottom: 1.5rem;
    color: #444;
}

.director-msg-page .stats-stripe {
    background-color: var(--primary);
    color: white;
    padding: 20px 0;
    margin: 0px 0;
}

.director-msg-page .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.director-msg-page .philosophy-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-700));
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.director-msg-page .quote-text {
    font-size: 1.6rem;
    font-style: italic;
    font-family: "Georgia", serif;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.director-msg-page .reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s ease;
}

.director-msg-page .reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.director-msg-page .reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s ease;
}

.director-msg-page .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.director-msg-page .zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s ease;
}

.director-msg-page .zoom-in.active {
    opacity: 1;
    transform: scale(1);
}


/* --- 2. Results Pages (JEE/NEET) --- */
.results-page {
    --res-primary: #0d6efd;
    --res-secondary: #ffc107;
    --res-dark: #212529;
    --res-light: #f8f9fa;

    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
}

.results-page h1,
.results-page h2,
.results-page h3,
.results-page h4,
.results-page h5,
.results-page h6 {
    font-weight: 700;
}

.results-page .hero-section {
    background: linear-gradient(135deg, #051937 0%, #004d7a 100%);
    padding: 20px 0 20px;
    position: relative;
    overflow: hidden;
    color: white;
}

.results-page .hero-content {
    position: relative;
    z-index: 5;
}

.results-page .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffd700, #ffec8b, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.results-page .hero-subtitle {
    font-size: 1.35rem;
    opacity: 0.95;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.results-page .hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.results-page .shape-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    animation: results-spin 20s infinite linear;
}

.results-page .shape-2 {
    width: 300px;
    height: 300px;
    bottom: 50px;
    right: 10%;
    animation: results-spin 15s infinite reverse linear;
}

@keyframes results-spin {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    50% {
        transform: rotate(180deg) translate(20px, 20px);
    }

    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

.results-page .hero-image-wrapper {
    position: relative;
    z-index: 5;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.results-page .hero-main-img {
    max-height: 100%;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s;
}

.results-page .hero-main-img:hover {
    transform: scale(1.02);
}

.results-page .floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: results-float 5s ease-in-out infinite;
    min-width: 180px;
    z-index: 100 !important;
    transform: translateZ(20px);
}

.results-page .badge-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
}

.results-page .badge-2 {
    top: 45%;
    right: -30px;
    animation-delay: 2s;
}

.results-page .badge-3 {
    bottom: 10%;
    left: 0;
    animation-delay: 4s;
}

.results-page .f-icon {
    width: 35px;
    height: 35px;
    background: #ffc107;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

@keyframes results-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.results-page .result-stat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 5px solid transparent;
    transition: all 0.4s ease;
}

.results-page .result-stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-top-color: var(--res-primary);
}

.results-page .stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.05);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--res-primary);
    transition: all 0.4s ease;
}

.results-page .result-stat-card:hover .stat-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.results-page .topper-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.results-page .topper-card:hover {
    transform: translateY(-5px);
}

.results-page .topper-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.results-page .rank-badge {
    background: linear-gradient(45deg, #FFD700, #FDB931);
    color: #000;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(253, 185, 49, 0.4);
    font-size: 0.9rem;
    margin-bottom: 15px;

    /* Hover Reveal Styles */
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.results-page .topper-card:hover .rank-badge {
    opacity: 1;
    transform: translateY(0);
}

.results-page .graph-bar {
    border-radius: 10px 10px 0 0;
    background: linear-gradient(to bottom, #0d6efd, #0a58ca);
    position: relative;
    box-shadow: 0 -5px 15px rgba(13, 110, 253, 0.3);
}

.results-page .bar-label {
    background: #fff;
    color: #212529;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.results-page .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.results-page .marquee-content {
    display: inline-flex;
    gap: 30px;
    animation: results-marquee 25s linear infinite;
}

.results-page .marquee-content:hover {
    animation-play-state: paused;
}

@keyframes results-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.results-page .faculty-card {
    text-align: center;
    padding: 20px;
    width: 250px;
    flex-shrink: 0;
    white-space: normal;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.results-page .faculty-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid var(--res-primary);
    padding: 3px;
}

.results-page .year-card {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

.results-page .year-card:hover {
    transform: translateY(-5px);
}

.results-page .year-header {
    background: var(--res-light);
    padding: 15px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.results-page footer {
    background: #111;
    color: #aaa;
}

@media (max-width: 768px) {
    .results-page .hero-section {
        padding: 120px 0 60px;
    }

    .results-page .hero-title {
        font-size: 2.8rem;
    }

    .results-page .hero-subtitle {
        font-size: 1.1rem;
    }

    .results-page .hero-main-img {
        height: 300px;
    }
}

/* Fee Structure Page Styles */
:root {
    --pcp-blue: #0d47a1;
    --pcp-red: #d32f2f;
    --pcp-yellow: #fbc02d;
}

.fee-structure-page {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8;
}

.fee-structure-page .header-strip {
    background: var(--pcp-blue);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
}

.fee-structure-page .section-header {
    background-color: var(--pcp-blue);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fee-structure-page .fee-table-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.fee-structure-page .table-custom {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border: 1px solid #dee2e6;
}

.fee-structure-page .table-custom thead th {
    background-color: #e3f2fd;
    color: var(--pcp-blue);
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    border-bottom: 2px solid var(--pcp-blue);
}

.fee-structure-page .table-custom tbody td {
    text-align: center;
    vertical-align: middle;
    font-weight: 500;
    color: #333;
}

.fee-structure-page .table-custom tbody tr:nth-of-type(odd) {
    background-color: #f9fcff;
}

.fee-structure-page .note-list {
    font-size: 0.9rem;
    color: #444;
}

.fee-structure-page .note-list li {
    margin-bottom: 8px;
}

.fee-structure-page .highlight-red {
    color: var(--pcp-red);
    font-weight: 700;
}

.fee-structure-page .important-note-header {
    background-color: var(--pcp-blue);
    color: white;
    display: inline-block;
    padding: 5px 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.fee-structure-page .info-box {
    background-color: #fff3e0;
    border: 1px solid #ffe0b2;
    padding: 15px;
    border-radius: 5px;
    height: 100%;
}

.fee-structure-page .tick-list {
    list-style: none;
    padding-left: 0;
}

.fee-structure-page .tick-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.fee-structure-page .tick-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--pcp-red);
}

.fee-structure-page .page-title-area {
    background: white;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 4px solid var(--pcp-blue);
    text-align: center;
}

.fee-structure-page .helpline {
    font-size: 1.2rem;
    color: var(--pcp-red);
    font-weight: 700;
}