: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: 30px 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: 20px;
    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: 15px !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);
}

/* 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;
}

/* Glass Premium Container */
.glass-premium-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-ambient-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    filter: blur(40px);
}

.hero-gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Styles */
.btn-hero-warning {
    background: #ffd700;
    color: #000;
    border: none;
}

.btn-hero-warning:hover {
    background: #ffc400;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-transparent {
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    .premium-insight-card {
        margin-bottom: 10px;
    }

    .card-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .premium-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .card-number {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .premium-icon-box {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .card-number {
        font-size: 1rem;
    }

    .glass-premium-container {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }
}

/* 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);
}

/* Responsive Bento Grid Span */
@media (min-width: 992px) {
    .bento-span-2 {
        grid-column: span 2;
    }
}

/* Snake Container Styles */
.snake-container {
    position: relative;
}

.snake-row {
    display: flex;
    flex-wrap: wrap;
}

.snake-row-reverse {
    flex-direction: row-reverse;
}

.z-index-1 {
    z-index: 1;
}

.snake-connector {
    z-index: 0;
}

.connector-path {
    opacity: 0.6;
}

/* Mobile Timeline View */
.timeline-connector-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    opacity: 0.3;
}

.mobile-timeline-number {
    left: 6px;
    top: 20px;
    width: 30px;
    height: 30px;
    z-index: 2;
    border: 3px solid var(--primary-color);
}

/* Mobile Responsive Fixes for Bento Grid */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .bento-card {
        padding: 25px;
    }

    .snake-container {
        overflow-x: hidden;
    }

    .snake-row {
        flex-direction: column;
        gap: 20px;
    }

    .snake-row-reverse {
        flex-direction: column;
    }

    .premium-insight-card {
        margin-bottom: 10px;
    }

    .card-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bento-card {
        padding: 20px;
    }

    .icon-box-bento {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-connector-line {
        left: 15px;
    }

    .mobile-timeline-number {
        left: 1px;
        top: 15px;
        width: 25px;
        height: 25px;
    }

    .premium-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .card-number {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .bento-card {
        padding: 15px;
    }

    .icon-box-bento {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .premium-icon-box {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .card-number {
        font-size: 1rem;
    }

    .glass-premium-container {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }
}

/* Utility to hide specific cards on mobile initially */
@media (max-width: 767px) {
    .mobile-hidden-card {
        display: none !important
    }
}

/* Premium Cards Fix CSS - Responsive Improvements */

/* Root Variables for Consistent Typography */
:root {
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Outfit', var(--font-primary);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --line-height-base: 1.6;
    --line-height-heading: 1.2;
    --line-height-tight: 1.1;
}

/* Base Typography */
body {
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
}

/* Heading Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: var(--line-height-heading);
    font-weight: var(--font-weight-bold);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-semibold);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: var(--font-weight-semibold);
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: var(--font-weight-medium);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: var(--font-weight-medium);
}

/* Paragraph Typography */
p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
}

.lead {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.7;
}

.small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-secondary {
    font-weight: var(--font-weight-normal);
}

.fw-bold {
    font-weight: var(--font-weight-bold) !important;
}

.fw-semibold {
    font-weight: var(--font-weight-semibold) !important;
}

.fw-medium {
    font-weight: var(--font-weight-medium) !important;
}

/* Button Typography */
.btn {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* Badge Typography */
.badge {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    letter-spacing: 0.03em;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        will-change: opacity, transform;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        will-change: auto;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        will-change: box-shadow;
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
        will-change: auto;
    }
}

@keyframes floatMorph {
    0% {
        transform: translateY(0) rotate(0deg);
        will-change: transform;
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
        will-change: auto;
    }
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
}

.bento-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    font-family: var(--font-primary);
    contain: layout style paint;
    will-change: opacity, transform;
}

.bento-card:nth-child(1) {
    animation-delay: 0.1s;
}

.bento-card:nth-child(2) {
    animation-delay: 0.2s;
}

.bento-card:nth-child(3) {
    animation-delay: 0.3s;
}

.bento-card:nth-child(4) {
    animation-delay: 0.4s;
}

.bento-card:nth-child(5) {
    animation-delay: 0.5s;
}

.bento-card:nth-child(6) {
    animation-delay: 0.6s;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 71, 161, 0.15);
    border-color: rgba(13, 71, 161, 0.3);
}

.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.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform: perspective(1000px) rotateY(0deg);
    will-change: transform;
    contain: strict;
}

.bento-card:hover .icon-box-bento {
    background: var(--primary-color);
    color: #fff;
    transform: perspective(1000px) rotateY(360deg);
}

/* Responsive Bento Grid Span */
@media (min-width: 992px) {
    .bento-span-2 {
        grid-column: span 2;
    }
}

/* Snake Container Styles */
.snake-container {
    position: relative;
}

.snake-row {
    display: flex;
    flex-wrap: wrap;
}

.snake-row-reverse {
    flex-direction: row-reverse;
}

.z-index-1 {
    z-index: 1;
}

.snake-connector {
    z-index: 0;
}

.connector-path {
    opacity: 0.6;
}

/* Mobile Timeline View */
.timeline-connector-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    opacity: 0.3;
}

.mobile-timeline-number {
    left: 6px;
    top: 20px;
    width: 30px;
    height: 30px;
    z-index: 2;
    border: 3px solid var(--primary-color);
}

/* Premium Insight Cards */
.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.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.5s ease forwards;
    font-family: var(--font-primary);
    contain: layout style paint;
    will-change: opacity, transform;
}

.premium-insight-card:nth-child(1) {
    animation-delay: 0.1s;
}

.premium-insight-card:nth-child(2) {
    animation-delay: 0.2s;
}

.premium-insight-card:nth-child(3) {
    animation-delay: 0.3s;
}

.premium-insight-card:nth-child(4) {
    animation-delay: 0.4s;
}

.premium-insight-card:nth-child(5) {
    animation-delay: 0.5s;
}

.premium-insight-card:nth-child(6) {
    animation-delay: 0.6s;
}

.premium-insight-card:nth-child(7) {
    animation-delay: 0.7s;
}

.premium-insight-card:nth-child(8) {
    animation-delay: 0.8s;
}

.premium-insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(13, 71, 161, 0.25);
}

.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.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    will-change: transform;
    contain: strict;
}

.premium-insight-card:hover .premium-icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.15) rotate(5deg);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(13, 71, 161, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.card-number:hover {
    color: rgba(13, 71, 161, 0.3);
    transform: scale(1.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;
}

/* Glass Premium Container */
.glass-premium-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    font-family: var(--font-primary);
    contain: layout style paint;
    will-change: opacity, transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hero-ambient-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 3s ease-in-out infinite;
    will-change: filter;
    contain: layout style paint;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #fdb931 50%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.hero-gradient-text:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Styles */
.btn-hero-warning {
    background: #ffd700;
    color: #000;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.btn-hero-warning:hover {
    background: #ffc400;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.btn-hero-warning:active {
    transform: translateY(-2px);
}

.btn-hero-warning::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-hero-warning:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

.btn-transparent {
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    will-change: transform, box-shadow;
    contain: layout style paint;
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25);
}

.btn-transparent:active {
    transform: translateY(-2px);
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.5s ease forwards;
    will-change: transform, opacity;
    contain: layout style paint;
}

.hover-lift:nth-child(1) {
    animation-delay: 0.1s;
}

.hover-lift:nth-child(2) {
    animation-delay: 0.2s;
}

.hover-lift:nth-child(3) {
    animation-delay: 0.3s;
}

.hover-lift:nth-child(4) {
    animation-delay: 0.4s;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Mobile Responsive Fixes */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .bento-card {
        padding: 25px;
    }

    .snake-container {
        overflow-x: hidden;
    }

    .snake-row {
        flex-direction: column;
        gap: 20px;
    }

    .snake-row-reverse {
        flex-direction: column;
    }

    .premium-insight-card {
        margin-bottom: 10px;
    }

    .card-number {
        font-size: 1.5rem;
    }
}

/* Large screen enhancements */
@media (min-width: 1200px) {
    .bento-grid {
        gap: 30px;
    }

    .bento-card {
        padding: 35px;
    }

    .icon-box-bento {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .premium-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .btn-hero-warning,
    .btn-transparent {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bento-card {
        padding: 20px;
    }

    .icon-box-bento {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .premium-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .timeline-connector-line {
        left: 15px;
    }

    .mobile-timeline-number {
        left: 1px;
        top: 15px;
        width: 25px;
        height: 25px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-hero-warning,
    .btn-transparent {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .bento-card {
        padding: 15px;
    }

    .icon-box-bento {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .premium-icon-box {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .card-number {
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }

    .glass-premium-container {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .btn-hero-warning,
    .btn-transparent {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .premium-insight-card {
        padding: 15px;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}

.bg-icon-decoration {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    animation: floatMorph 8s ease-in-out infinite;
}

.pcp-advantage-header {
    position: relative;
    padding: 2rem 0;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.7s ease forwards;
}

/* Extra small devices (portrait phones, less than 400px) */
@media (max-width: 399px) {
    .bento-card {
        padding: 12px;
    }

    .icon-box-bento {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .premium-icon-box {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .card-number {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .btn-hero-warning,
    .btn-transparent {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .glass-premium-container {
        padding: 15px 10px;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    /* Ensure proper spacing on very small screens */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12,
    .col-auto {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* 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);
    }
}

/* MIGRATED HOSTEL CSS START */

.page-hostel-sikar {
    --primary-color: #0d47a1;
    --accent-color: #fbc02d;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa
}

.page-hostel-sikar {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden
}

.page-hostel-sikar .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
}

.page-hostel-sikar .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px
}

.page-hostel-sikar .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px
}

.page-hostel-sikar .section-title {
    text-align: center;
    margin-bottom: 50px
}

.page-hostel-sikar .section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block
}

.page-hostel-sikar .section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0
}

.page-hostel-sikar .feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color)
}

.page-hostel-sikar .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1)
}

.page-hostel-sikar .feature-icon {
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 15px
}

.page-hostel-sikar .img-rounded-custom {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    object-fit: cover
}

.page-hostel-sikar .girls-hostel-bg {
    background-color: var(--bg-light)
}

.page-hostel-sikar .gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 24px;
    transition: opacity 0.3s
}

.page-hostel-sikar .gallery-img:hover {
    opacity: 0.9
}

.page-hostel-sikar .btn-pcp {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s
}

.page-hostel-sikar .btn-pcp:hover {
    background-color: #f9a825;
    color: #000;
    transform: scale(1.05)
}

.page-hostel-sikar .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
}

.page-hostel-sikar .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
}

.page-hostel-sikar .custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: none
}

.page-hostel-sikar .custom-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1)
}

.page-hostel-sikar .custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125)
}

.page-hostel-sikar .custom-accordion .accordion-body {
    padding: 20px 25px;
    background-color: #fff;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid #f0f0f0
}

.page-hostel-sikar .fee-table thead th {
    background-color: #f1f5f9;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0
}

.page-hostel-sikar .fee-table tbody td {
    vertical-align: middle;
    color: var(--text-dark)
}

.page-hostel-sikar .additional-charges {
    background-color: #fff9c4;
    border-left: 4px solid var(--accent-color)
}

.page-hostel-sikar .card-header h4 {
    font-size: 1.25rem;
    font-weight: 600
}

@media(max-width:768px) {
    .page-hostel-sikar #gallery .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        gap: 15px
    }

    .page-hostel-sikar #gallery .col-md-4 {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center
    }

    .page-hostel-sikar #gallery .row::-webkit-scrollbar {
        display: none
    }

    .page-hostel-sikar #gallery .row {
        -ms-overflow-style: none;
        scrollbar-width: none
    }
}

.page-hostel-sikar .news-detail-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 400px
}

.page-hostel-sikar .news-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark)
}

.page-hostel-sikar .news-content h3,
.page-hostel-sikar .news-content h4 {
    color: var(--primary-color);
    margin-top: 30px
}

.page-hostel-sikar .sidebar-widget a {
    transition: color 0.3s ease
}

.page-hostel-sikar .sidebar-widget a:hover {
    color: var(--primary-color) !important
}

.page-hostel-sikar .sidebar-gallery-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer
}

.page-hostel-sikar .sidebar-gallery-img:hover {
    transform: scale(1.05);
    opacity: 0.9
}

.page-hostel-sikar .page-header {
    background: linear-gradient(135deg, #1e1b4b, #312e81) !important;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 150px
}

.page-hostel-sikar .news-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1
}

.page-hostel-sikar .news-hero-bg i {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    animation: floatIcons 15s infinite linear
}

.page-hostel-sikar .news-hero-bg i:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 3rem;
    animation-duration: 12s
}

.page-hostel-sikar .news-hero-bg i:nth-child(2) {
    top: 20%;
    right: 20%;
    font-size: 4rem;
    animation-duration: 15s;
    animation-delay: 1s
}

.page-hostel-sikar .news-hero-bg i:nth-child(3) {
    bottom: 30%;
    left: 15%;
    font-size: 3.5rem;
    animation-duration: 18s;
    animation-delay: 2s
}

.page-hostel-sikar .news-hero-bg i:nth-child(4) {
    bottom: 40%;
    right: 10%;
    font-size: 2.5rem;
    animation-duration: 14s;
    animation-delay: 0.5s
}

.page-hostel-sikar .news-hero-bg i:nth-child(5) {
    top: 50%;
    left: 50%;
    font-size: 5rem;
    animation-duration: 20s;
    animation-delay: 3s;
    opacity: 0.02
}

.page-hostel-sikar .news-hero-bg i:nth-child(6) {
    top: 15%;
    left: 40%;
    font-size: 2.5rem;
    animation-duration: 16s;
    animation-delay: 1.5s
}

.page-hostel-sikar .news-hero-bg i:nth-child(7) {
    bottom: 25%;
    right: 35%;
    font-size: 3rem;
    animation-duration: 19s;
    animation-delay: 2.5s
}

.page-hostel-sikar .news-hero-bg i:nth-child(8) {
    top: 60%;
    right: 15%;
    font-size: 2.2rem;
    animation-duration: 14s;
    animation-delay: 0.5s
}

.page-hostel-sikar .news-hero-bg i:nth-child(9) {
    bottom: 10%;
    left: 30%;
    font-size: 2.8rem;
    animation-duration: 17s;
    animation-delay: 1.2s
}

.page-hostel-sikar .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
    }
}

.page-hostel-sikar .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
}

.page-hostel-sikar .glass-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px
}

.page-hostel-sikar .glass-card small {
    font-size: 0.8rem;
    opacity: 0.8
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-10px)
    }
}

.page-hostel-sikar .custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3
}

.page-hostel-sikar .custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px
}

.page-hostel-sikar .custom-shape-divider-bottom .shape-fill {
    fill: #f8f9fa
}

.page-hostel-sikar .hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: left
}

.page-hostel-sikar .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
}

.page-hostel-sikar .hero-visuals {
    position: relative;
    height: 300px
}

.page-hostel-sikar .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform
}

.page-hostel-sikar .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.page-hostel-sikar .animate-on-scroll.delay-100 {
    transition-delay: 0.1s
}

.page-hostel-sikar .animate-on-scroll.delay-200 {
    transition-delay: 0.2s
}

.page-hostel-sikar .animate-on-scroll.delay-300 {
    transition-delay: 0.3s
}

.page-hostel-sikar .sr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px
}

@media(max-width:900px) {
    .page-hostel-sikar .sr-grid {
        grid-template-columns: 1fr
    }
}

.page-hostel-sikar .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%
}

.page-hostel-sikar .sr-year-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1)
}

.page-hostel-sikar .sr-year-card.highlight {
    border-left: 5px solid var(--accent-color);
    background: #fff;
    position: relative;
    border: 1px solid var(--accent-color)
}

.page-hostel-sikar .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
}

.page-hostel-sikar .sr-year {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px
}

.page-hostel-sikar .sr-subsection {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid transparent
}

.page-hostel-sikar .sr-year-card .sr-subsection:nth-of-type(1) {
    border-left-color: #28a745
}

.page-hostel-sikar .sr-year-card .sr-subsection:nth-of-type(2) {
    border-left-color: var(--primary-color)
}

.page-hostel-sikar .sr-title {
    font-size: 0.9rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px
}

.page-hostel-sikar .sr-number {
    font-size: 1.5rem;
    color: #333;
    font-weight: 800
}

.page-hostel-sikar .sr-number strong {
    color: var(--primary-color)
}

.page-hostel-sikar .sr-note {
    color: #777;
    font-size: 0.85rem;
    margin-top: 5px;
    font-style: italic
}

.page-hostel-sikar .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
}

.page-hostel-sikar .sr-foot {
    margin-top: 20px;
    color: #888;
    font-size: 0.85rem;
    text-align: center
}

.page-hostel-sikar .sr-foot a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600
}

.page-hostel-sikar .about-img-wrapper {
    position: relative;
    padding: 0 0 30px 30px;
    z-index: 1
}

.page-hostel-sikar .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
}

.page-hostel-sikar .about-img-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2)
}

.page-hostel-sikar .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
}

.page-hostel-sikar .about-img-wrapper:hover::before {
    bottom: -5px;
    left: -5px
}

.page-hostel-sikar .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
}

.page-hostel-sikar .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
}

.page-hostel-sikar .about-float-badge i {
    color: var(--accent-color);
    font-size: 1.2rem
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.page-hostel-sikar .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
}

.page-hostel-sikar .eduhub-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important
}

.page-hostel-sikar .eduhub-card h3 {
    color: #fff !important
}

.page-hostel-sikar .eduhub-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 15rem;
    opacity: 0.05;
    transform: rotate(-15deg)
}

.page-hostel-sikar .experience-wrapper {
    position: relative;
    padding: 30px
}

.page-hostel-sikar .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
}

.page-hostel-sikar .experience-wrapper:hover .main-img {
    transform: scale(1.02)
}

.page-hostel-sikar .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
}

.page-hostel-sikar .experience-wrapper:hover::before {
    top: -25px;
    right: -25px
}

.page-hostel-sikar .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
}

.page-hostel-sikar .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
}

.page-hostel-sikar .exp-float-card.bottom-left {
    bottom: 40px;
    left: 0;
    border-left: 5px solid var(--accent-color);
    max-width: 260px;
    animation-delay: 0.5s
}

.page-hostel-sikar .exp-float-card.top-right {
    top: 10px;
    right: 10px;
    border-bottom: 5px solid var(--primary-color)
}

.page-hostel-sikar .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
}

.page-hostel-sikar .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)
    }
}

.page-hostel-sikar .pcp-link {
    color: #fff;
    text-decoration: none
}

.page-hostel-sikar .pcp-link:hover {
    color: #fdfdfd;
    text-decoration: underline
}

.page-hostel-sikar .pcp-link:visited {
    color: #fff
}
/* Premium Design Fixes for PCP Sikar Hostel Page */

/* =========================================
   Fee Structure Section Premium Styles
   ========================================= */

/* Fee Cards */
#fee-structure .card {
    border: none;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    margin-bottom: 2rem;
}

#fee-structure .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Card Headers */
#fee-structure .card-header {
    background: linear-gradient(135deg, var(--primary-color, #0d47a1) 0%, #1565c0 100%);
    color: #ffffff;
    border-bottom: none;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

#fee-structure .card-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
    transform: skewX(-20deg);
}

/* Pre-Foundation Variant */
#fee-structure .card-header.bg-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
}

#fee-structure .card-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Card Body */
#fee-structure .card-body {
    padding: 40px;
}

#fee-structure h5.text-primary {
    color: var(--primary-color, #0d47a1) !important;
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.3rem;
    display: inline-block;
    border-bottom: 3px solid var(--accent-color, #fbc02d);
    padding-bottom: 5px;
}

/* Premium Tables */
.fee-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
}

.fee-table thead th {
    background-color: #f1f5f9;
    color: #334155;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 18px 20px;
    border-bottom: 2px solid #e2e8f0;
    letter-spacing: 1px;
}

.fee-table tbody td {
    padding: 18px 20px;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.fee-table tbody tr:hover {
    background-color: #f8fafc;
}

.fee-table strong {
    color: var(--primary-color, #0d47a1);
    font-weight: 800;
    font-size: 1.1em;
}

/* Additional Charges Highlight Box */
.additional-charges {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    position: relative;
}

.additional-charges::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 4px;
    background-color: #f59e0b;
    border-radius: 0 4px 4px 0;
}

.additional-charges h6 {
    color: #78350f;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.additional-charges ul li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: #92400e;
    display: flex;
    align-items: center;
}

.additional-charges i {
    color: #d97706;
    margin-right: 10px;
    font-size: 1.1rem;
}


/* =========================================
   FAQ Section Premium Styles
   ========================================= */

#pcpFaqAccordion .accordion-item {
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#pcpFaqAccordion .accordion-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

#pcpFaqAccordion .accordion-button {
    background-color: #fff;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
}

#pcpFaqAccordion .accordion-button:not(.collapsed) {
    background-color: #eff6ff;
    color: var(--primary-color, #0d47a1);
    font-weight: 700;
}

/* Custom Accordion Icon */
#pcpFaqAccordion .accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#pcpFaqAccordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d47a1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

#pcpFaqAccordion .accordion-body {
    padding: 0 25px 25px 25px;
    color: #475569;
    line-height: 1.7;
    background-color: #eff6ff;
    /* Keep it slightly subtle to match header if open */
    border-top: none;
}

/* Make inner body white again so it contrasts if header is blueish */
#pcpFaqAccordion .accordion-button:not(.collapsed)+.accordion-collapse .accordion-body {
    background-color: #fff;
    /* Reset to white for readability */
    color: #475569;
}


/* Media Queries */
@media (max-width: 768px) {
    .additional-charges {
        padding: 15px;
    }
}


/* =========================================
   Unified Tabbed Design Styles
   ========================================= */

/* Custom Tabs */
.nav-pills-custom .nav-link {
    background-color: #f1f5f9;
    color: #64748b;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-pills-custom .nav-link:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}

.nav-pills-custom .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color, #0d47a1) 0%, #1565c0 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(13, 71, 161, 0.3);
}

/* Clean Tables */
.fee-table-clean th {
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}

.fee-table-clean td {
    vertical-align: middle;
    color: #334155;
}

.fee-table-clean tr.bg-primary td {
    color: #fff !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* =========================================
   New Integrated Fee Structure Design (from h.html)
   ========================================= */

.fee-container {
    max-width: 700px;
    margin: 50px auto;
    /* Added margin for section spacing */
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fee-header {
    background: var(--primary-color, #004a99);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.fee-header h1 {
    margin: 0;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: #fff;
}

.fee-section-title {
    background: #eef4ff;
    color: var(--primary-color, #004a99);
    padding: 12px 15px;
    font-weight: bold;
    font-size: 1.1rem;
    border-left: 5px solid var(--primary-color, #004a99);
    margin: 20px 15px 10px 15px;
    border-radius: 0 5px 5px 0;
    text-align: left;
}

/* --- Table/Card Logic --- */
.fee-table-v2 {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

/* Desktop View Headers */
.fee-table-v2 thead {
    background: #f8f9fa;
}

.fee-table-v2 th {
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #d1d9e0;
    color: #555;
    font-size: 0.9rem;
}

.fee-table-v2 td {
    padding: 15px 12px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-align: left;
}

.fee-total-amt {
    color: #e67e22;
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Additional Charges Boxes --- */
.fee-addon-grid {
    padding: 0 15px 20px 15px;
}

.fee-addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff9f2;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #ffe8cc;
}

.fee-addon-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    text-align: left;
}

.fee-addon-price {
    font-weight: bold;
    color: #d35400;
}

.fee-footer-note {
    padding: 15px;
    font-size: 0.85rem;
    color: #666;
    background: #f9f9f9;
    text-align: center;
    border-top: 1px solid #eee;
}

/* --- Mobile Responsive (No Scroll Design) --- */
@media screen and (max-width: 600px) {

    /* Hide Table Header on Mobile */
    .fee-table-v2 thead {
        display: none;
    }

    /* Make Table Rows look like Cards */
    .fee-table-v2 tr {
        display: block;
        background: #fff;
        border: 1px solid #d1d9e0;
        margin: 15px;
        border-radius: 10px;
        padding: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .fee-table-v2 td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        border-bottom: 1px solid #f1f1f1;
        padding: 10px 5px;
    }

    .fee-table-v2 td:last-child {
        border-bottom: none;
    }

    /* Adding Labels via Pseudo-elements */
    .fee-table-v2 td::before {
        content: attr(data-label);
        font-weight: bold;
        color: var(--primary-color, #004a99);
        text-align: left;
        flex: 1;
        font-size: 0.85rem;
        text-transform: uppercase;
    }
}
/* MIGRATED HOSTEL CSS END */