/* ===================================
   GNDU University Website - Global Styles
   =================================== */

/* CSS Custom Properties - Brand Colors */
:root {
    --primary-blue: #0066B3;
    --primary-gold: #FFB81C;
    --dark-blue: #004A7C;
    --light-blue: #4A9FD8;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-color: #2C3E50;
    --shadow: 0 4px 20px rgba(0, 102, 179, 0.15);
    --shadow-hover: 0 8px 30px rgba(0, 102, 179, 0.25);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 180px;
    /* Adjust based on header + sub-nav height */
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-blue);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 19px;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    background: #dceaf5;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-bar {
    background-color: var(--dark-blue);
    /* GNDU Brand Color */
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
}

.top-bar a:hover {
    opacity: 0.8;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 102, 179, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #dceaf5;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.mobile-nav-item {
    display: none;
}

.nav-link:hover {
    color: #800000;
    /* Burgundy hover */
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 0rem;
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbar for Dropdown */
.dropdown::-webkit-scrollbar {
    width: 4px;
}

.dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.dropdown::-webkit-scrollbar-thumb {
    background: #0362a1;
    /* Burgundy to match theme */
    border-radius: 10px;
}

.dropdown::-webkit-scrollbar-thumb:hover {
    background: #0362a1;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(180deg, rgba(14, 28, 38, 1) 0%, rgba(42, 69, 75, 1) 100%);
    color: var(--white);
}

/* Apply Button */
/* Apply Button */
.btn-apply {
    background: var(--primary-gold);
    color: var(--dark-blue);
    /* Or Burgundy #800000 if preferred */
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-apply:hover {
    transform: translateY(-2px);
    background: #e6a619;
    color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(255, 184, 28, 0.3);
}

.btn-request-info {
    background: var(--primary-gold);
    color: var(--dark-blue);
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 1rem;
}

.btn-request-info:hover {
    transform: translateY(-2px);
    background: #e6a619;
    color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(255, 184, 28, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    /* Parallax effect */
    color: #fff;
    background: url(../images/imges2.png) no-repeat top center;
}



.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
}

/* Badges */
.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon {

    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5px;
}

.badge-icon img {
    height: auto;
    object-fit: contain;
}

.badge-text {
    font-size: 0.9rem;
    line-height: 1.2;
    color: #fff;
}

/* Hero Form (Fixed/Sticky Look) */
.hero-form-container {
    background: #0e1b2b;
    /* Dark Blue from screenshot */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0px;
    /* Sticky while scrolling */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-form-container.highlight-form {
    animation: highlightPulse 2s ease;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }

    30% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
        transform: scale(1.02);
        border-color: rgba(255, 215, 0, 0.5);
    }

    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: scale(1);
    }
}

.form-header h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.hero-form .form-control,
.hero-form .form-select {
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: none;
    font-size: 0.9rem;
}

.hero-form .row {
    margin-left: -5px;
    margin-right: -5px;
}

.hero-form .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
}

.form-check {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.85rem;
}

.btn-submit-hero {
    width: 100%;
    background: #ffb81c;
    /* Gold/Orange */
    color: #000;
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit-hero:hover {
    background: #e0a319;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-gold);
    width: 35px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--primary-gold);
    color: var(--dark-blue);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* ===================================
   SPOTLIGHT SECTION (About Redesign)
   =================================== */

.spotlight-section {
    background-color: #ffffff;
    /* Light grey background */
    padding: 4rem 0;
    color: #333;
}

.spotlight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
}

/* Divider line */
.spotlight-container::after {
    content: '';
    position: absolute;
    left: 55%;
    top: 5%;
    bottom: 5%;
    width: 2px;
    background-color: #000000;
    display: none;
    /* Show only on desktop */
}

@media (min-width: 992px) {
    .spotlight-container::after {
        display: block;
    }
}

.spotlight-left {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
    text-align: right;
    /* Match screenshot alignment */
}

.spotlight-right {
    flex: 0.8;
    min-width: 300px;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

/* Typography Left */
.spotlight-title {
    color: #eaaa00;
    /* Yellow/Gold */
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.spotlight-subtitle {
    font-size: 3.5rem;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2rem;
    color: #000;
}

.spotlight-text {
    font-family: 'Times New Roman', serif;
    /* Match serif look if desired, or keep sans */
    font-size: 1.2rem;
    line-height: 1.4;
    color: #666;
    /* Muted text color */
    font-weight: 300;
}

.spotlight-text .highlight {
    color: #8fa144;
    /* Olive green from screenshot */
}

/* Right Column Items */
.spotlight-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.spotlight-right-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    /* or Black based on screenshot? Using brand color */
    margin-bottom: 1rem;
}

.spotlight-item {
    text-align: left;
    margin-bottom: 1rem;
}

.spotlight-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    /* Using Gold to highlight important terms like NAAC */
    /* Screenshot shows black text mostly? Let's make main Accreditations Title Orange? 
       Actually user asked to match screenshot.
       Screenshot: "Accreditations and Recognitions" - Black/Dark
       "NAAC 'A++' Accredited" - Black/Dark
       Text - Grey
       
       Let's stick to clean dark text with brand accents if needed.
    */
    color: #000;
    margin-bottom: 0.5rem;
}

.spotlight-item-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-gold));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 179, 0.08);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 102, 179, 0.2);
}

.card h2,
.card h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card ul {
    list-style: none;
    padding-left: 0;
}

.card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* ===================================
   BREADCRUMB
   =================================== */

.breadcrumb-container {
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.05) 0%, rgba(255, 184, 28, 0.05) 100%);
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 102, 179, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

/* ===================================
   FEATURED PROGRAMS (Redesign)
   =================================== */

.program-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    /* Left align text */
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.program-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

/* Red Separator Line */
.program-separator {
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    /* Burgundy/Red to match screenshot */
}

.program-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-title {
    color: #000000;
    /* Burgundy/Red title */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-learn-more {
    display: inline-block;
    background-color: #ffb81c;
    /* Burgundy button */
    color: #000000;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
    /* Left align button */
}

.btn-learn-more:hover {
    background-color: #700020;
    /* Darker burgundy hover */
    color: #fff;
    transform: translateY(-2px);
}


/* ===================================
   PROGRAM SLIDER
   =================================== */

.program-slider-wrapper {
    position: relative;
    padding: 0 40px;
    /* Space for arrows */
}

.program-slider-container {
    overflow: hidden;
    width: 100%;
}

.program-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.program-slide {
    flex: 0 0 33%;
    /* 4 cards per view on Desktop */
    padding: 0 15px;
    /* Gutter between cards */
    max-width: 33%;
}

.program-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.program-arrow:hover {
    background: var(--primary-blue);
    color: #fff;
}

.program-arrow.prev {
    left: -10px;
}

.program-arrow.next {
    right: -10px;
}

/* Responsive Slider */
@media (max-width: 992px) {
    .program-slide {
        flex: 0 0 50%;
        /* 2 cards on Tablet */
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .hero-badges {
        flex-wrap: wrap;
    }

    .program-slide {
        flex: 0 0 100%;
        /* 1 card on Mobile */
        max-width: 100%;
    }

    .program-slider-wrapper {
        padding: 0 10px;
    }

    .program-arrow {
        width: 35px;
        height: 35px;
    }

    .program-arrow.prev {
        left: -5px;
    }

    .program-arrow.next {
        right: -5px;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(180deg, rgba(14, 28, 38, 1) 0%, rgba(42, 69, 75, 1) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 0rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-gold);
    padding-left: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 0;
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 2rem 0;
    background-color: #fff;
}

.faq-title h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    /* Rounded corners like screenshot */
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1.1rem;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    color: var(--primary-gold);
    /* Gold plus icon */
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* Rotate to X on active */
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-item.active .faq-answer {
    /* Max-height will be set by JS or large enough value */
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.faq-image-container {
    /* Sticky Positioning */
    position: sticky;
    position: -webkit-sticky;
    top: 120px;
    align-self: start;

    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: auto;
}

.faq-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */

@media (max-width: 768px) {

    /* Mobile Navigation */
    .hamburger {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
    }

    .top-bar-links {
        display: none;
    }

    .mobile-nav-item {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        color: var(--text-color);
        padding: 1rem 2rem;
        border-radius: 0;
        justify-content: space-between;
    }

    .nav-link:hover {
        background: var(--light-gray);
        transform: none;
    }

    /* Mobile Dropdowns */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.dropdown-active .dropdown {
        max-height: 500px;
    }

    .dropdown-item {
        padding: 0.75rem 3rem;
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        padding-left: 3.5rem;
    }

    .btn-request-info {
        padding: 0.70rem 0.5rem;
    }

    .logo-container {
        margin-bottom: 10px;
    }

    /* Apply button stays outside hamburger */
    .btn-apply {
        margin-left: auto;
        padding: 0.55rem 2.5rem;
        font-size: 0.9rem;
    }

    /* Adjust navbar for mobile */
    .navbar {
        padding: 1rem;
    }

    .logo {
        height: 50px;
    }

    /* Banner Slider Mobile */
    .banner-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    /* Typography Mobile */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}

/* ===================================
   FORM STYLING
   =================================== */

.form-control,
.form-select {
    border: 2px solid rgba(0, 102, 179, 0.2);
    border-radius: 10px;
    padding: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    margin-bottom: 10px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 179, 0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Table Styling */
.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
}

.table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 1rem;
    border: none;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(0, 102, 179, 0.03);
    transform: scale(1.01);
}

/* Accordion Styling */
.accordion .card {
    border: 1px solid rgba(0, 102, 179, 0.1);
    margin-bottom: 1rem;
}

.accordion .card-header {
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.05) 0%, rgba(255, 184, 28, 0.05) 100%);
    border-bottom: none;
    padding: 0;
}

.accordion .btn-link {
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion .btn-link:hover {
    color: var(--primary-blue);
    background: rgba(0, 102, 179, 0.05);
}

.accordion .card-body {
    padding: 1.5rem;
    line-height: 1.8;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-blue);
}

.text-gold {
    color: var(--primary-gold);
}

.text-muted {
    color: #6c757d;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.py-1 {
    padding: 1rem 0;
}

.py-2 {
    padding: 2rem 0;
}

.py-3 {
    padding: 3rem 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styling */
::selection {
    background: var(--primary-blue);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===================================
   THE EDGE SECTION
   =================================== */

.edge-section {
    background: linear-gradient(359deg, rgba(0, 51, 102, 1) 0%, rgb(255 175 0) 100%);
    /* Deep Dark Blue */
    color: #fff;
    padding: 6rem 0;
    overflow: hidden;
    /* For decor overflow */
}

.edge-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
}

.edge-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.edge-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.edge-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.edge-feature-item:hover .edge-icon {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #000;
}

.edge-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
}

.edge-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Image Decorators */
.edge-image-container {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
    z-index: 1;
}

.edge-main-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.edge-decor-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-color: var(--primary-gold);
    border-bottom-left-radius: 20px;
    z-index: 1;
}

.edge-decor-dots {
    position: absolute;
    top: -20px;
    left: 10px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: 0;
}

/* ===================================
   PROGRAM PAGES (B.Com / B.Tech Style)
   =================================== */

.program-sub-nav {
    background-color: #000;
    padding: 0.5rem 0;
    position: sticky;
    top: 132px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sub-nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.sub-nav-link:hover,
.sub-nav-link.active {
    color: var(--white);
    border-bottom-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .program-sub-nav {
        top: 105px;
        /* Adjusted for mobile header height */
        padding: 0;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .program-sub-nav .container {
        display: flex !important;
        flex-wrap: nowrap;
        padding: 0 10px;
    }

    .sub-nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
}


.floating-enquire-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #e33c43;
    /* Red/Orange Enquire Now color */
    color: var(--white);
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    z-index: 1050;
    border-radius: 5px 5px 0 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.floating-enquire-tab:hover {
    background-color: #c93238;
    color: var(--white);
}

.program-intro-section {
    padding: 2.3rem 0;
    background-color: #fff;
}

.about-program-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.about-program-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.action-buttons-grid .action-box {
    display: block;
    border: 1px solid rgba(0, 102, 179, 0.3);
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.action-box-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
}

.action-box:hover {
    border-color: var(--primary-blue);
    background-color: rgba(0, 102, 179, 0.05);
    transform: translateY(-5px);
}

.action-box:hover .action-box-content {
    color: var(--dark-blue);
}

@media (max-width: 992px) {
    .faq-title h2 {
        font-size: 31px;
    }

    .about-program-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-program-title {
        font-size: 31px;
    }

    .floating-enquire-tab {
        top: 50%;
    }
}

/* ===================================
   PROGRAM BANNER
   =================================== */

.program-banner {
    background: linear-gradient(90deg, rgba(0, 3, 40, 1) 0%, rgba(0, 69, 142, 1) 100%);
    padding: 2.1rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.banner-breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.banner-breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.banner-breadcrumb .separator {
    margin: 0 0.5rem;
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.banner-subtitle-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.banner-subtitle-bar {
    width: 4px;
    height: 60px;
    background-color: var(--primary-gold);
    flex-shrink: 0;
}

.banner-subtitle-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.banner-subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-subtitle i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.banner-btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-banner {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-banner-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-banner-outline:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

.btn-banner-solid {
    background-color: var(--primary-gold);
    color: var(--dark-blue);
    border: 2px solid var(--primary-gold);
}

.btn-banner-solid:hover {
    background-color: transparent;
    color: var(--white);
}

/* Banner Info Grid */
.banner-info-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 800px;
}

.banner-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.banner-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.banner-info-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    color: var(--dark-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.banner-info-content h4 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.banner-info-content p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .banner-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 992px) {
    .banner-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.2rem;
    }

    .banner-subtitle-wrapper {
        gap: 1rem;
    }

    .banner-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-banner {
        text-align: center;
    }
}

/* ===================================
   PROGRAM HIGHLIGHTS (REDESIGN)
   =================================== */

.highlights-redesign {
    background-color: #001a3d;
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
}

.highlights-container {
    align-items: center;

}

.highlights-image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlights-student-backdrop {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: #ff8c00;
    border-radius: 50%;
    z-index: 1;
}

.highlights-student-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}

.highlights-content-side {
    flex: 1.5;
}

.highlights-redesign-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-box {
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.highlight-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
}

.highlight-box i {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-top: 5px;
}

.highlight-box-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .highlights-container {
        flex-direction: column;
        text-align: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        text-align: left;
    }

    .highlights-student-backdrop {
        width: 300px;
        height: 300px;
    }
}


/* ===================================
   TARGET AUDIENCE SECTION
   =================================== */

.audience-section {
    padding: 0 0 50px 0;
    background-color: #fff;
    text-align: center;
}

.audience-header {
    margin-bottom: 50px;
}

.audience-title {
    font-size: 3rem;
    font-weight: 800;
    color: #004a7c;
    margin-bottom: 15px;
}

.audience-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.audience-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
}

.icon-blue {
    color: #1e3c72;
}

.icon-green {
    color: #1e3c72;
}

.icon-gold {
    color: #1e3c72;
}

.audience-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.audience-card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.audience-footer {
    margin-top: 10px;
    font-size: 1.05rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
    .audience-title {
        font-size: 2.2rem;
    }

    .audience-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}

/* ===================================
   CAREER OPPORTUNITIES SECTION
   =================================== */

.career-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #6e45e2 100%);
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.career-section .container {
    position: relative;
    z-index: 2;
}

.career-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--white);
}

.career-roles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.career-role-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    gap: 20px;
}

.career-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.career-role-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.career-image-col {
    position: relative;
}

.career-image-wrapper {
    position: absolute;
    right: -100px;
    top: -50px;
    width: 120%;
    height: 500px;
    background-color: #d1d1d1;
    border-top-left-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.career-student-img {
    width: 90%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .career-image-wrapper {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 350px;
        border-radius: 20px;
        margin-top: 50px;
    }

    .career-student-img {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .career-role-item {
        width: 100%;
    }

    .career-title {
        font-size: 2rem;
    }
}

/* ===================================
   FEE STRUCTURE SECTION
   =================================== */

.fee-section {
    background-color: #f0f0f0;
    padding: 40px 0;
}

.fee-title {
    font-size: 3rem;
    font-weight: 800;
    color: #004a7c;
}

.fee-table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2c313a;
    /* Dark gray like the screenshot */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.fee-table th {
    background-color: #004a7c;
    /* Slightly lighter header */
    padding: 10px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #454d5a;
    font-size: 1.1rem;
}

.fee-table th:first-child {
    text-align: left;
    padding-left: 30px;
}

.fee-table td {
    padding: 10px 15px;
    text-align: center;
    border-bottom: 1px solid #454d5a;
    font-size: 1rem;
}

.fee-table td.fee-head {
    text-align: left;
    padding-left: 30px;
    background-color: #2c313a;
    font-weight: 500;
}

.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.fee- Total-row td {
    background-color: #383e49;
    font-weight: 700;
    padding: 22px 20px;
    font-size: 1.1rem;
}

.fee-grand- Total {
    background-color: #5c5545 !important;
    /* Goldish-dark background */
    color: #ffbb00 !important;
    /* Brighter gold text */
    font-weight: 800 !important;
}

@media (max-width: 992px) {
    .fee-title {
        font-size: 2.2rem;
    }
}

/* ===================================
   THE CURRICULUM SECTION (REDESIGN)
   =================================== */

.curriculum-section {
    padding: 80px 0;
    background-color: var(--white);
}

.curriculum-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.curriculum-item {
    background-color: #fff9f5;
    /* Light cream/off-white */
    margin-bottom: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.curriculum-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.curriculum-icon-box {
    width: 40px;
    height: 40px;
    background-color: #282c3f;
    /* Dark background from screenshot */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.curriculum-icon-box i {
    font-size: 0.9rem;
}

.curriculum-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
}

.curriculum-body {
    padding: 0 20px 20px 80px;
    display: none;
    /* Hidden by default */
}

.curriculum-item.active .curriculum-body {
    display: block;
    /* Visible for active items */
}

.curriculum-body ul {
    list-style: disc;
    padding-left: 0;
    margin: 0;
    color: #666;
}

.curriculum-body li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .curriculum-main-title {
        font-size: 2rem;
    }

    .curriculum-body {
        padding-left: 20px;
    }
}

/* Floating Contact Button */
.floating-contact-container {
    position: fixed;
    top: 50%;
    right: 10px;
    z-index: 9999;
}

.floating-contact-trigger {
    width: 60px;
    height: 60px;
    background: #e31e24;
    /* Red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-contact-trigger:hover {
    transform: scale(1.1);
}

.contact-options {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-contact-container:hover .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: white;
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-option i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.contact-option.call i {
    background: #e31e24;
}

.contact-option.whatsapp i {
    background: #25d366;
}

.contact-option span {
    font-weight: 600;
    color: #333;
}

.contact-option:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .floating-contact-container {
        top: 50%;
        right: 20px;
    }

    .spotlight-left {
        text-align: left;
    }

    .spotlight-right {
        padding-left: 0px
    }

    .floating-contact-trigger {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* University Profile Hero Section */
.university-profile-hero {
    min-height: 500px;
    background: #f8f9fa;
}

.profile-text-section {
    background: white;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
}

.profile-content {
    max-width: 500px;
}

.profile-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.profile-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.profile-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.profile-image-section {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.university-building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .profile-text-section {
        padding: 3rem 2rem;
    }

    .profile-title {
        font-size: 2rem;
    }

    .profile-image-section {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .profile-text-section {
        padding: 2rem 1.5rem;
    }

    .profile-title {
        font-size: 1.75rem;
    }

    .profile-description {
        font-size: 1rem;
    }

    .profile-image-section {
        min-height: 250px;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -2rem;
    position: relative;
}

.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 102, 179, 0.2);
    border-color: rgba(0, 102, 179, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 179, 0.3);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(0, 102, 179, 0.4);
}

.contact-info-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 179, 0.1);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-form-header h2 i {
    color: var(--primary-blue);
}

.contact-form-header p {
    font-size: 1.05rem;
    color: #666;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form .form-label i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.contact-form .required {
    color: #dc3545;
    font-weight: 700;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 179, 0.15);
    background: var(--white);
    outline: none;
}

.contact-form .form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.5rem) center;
    background-size: calc(0.75em + 1rem) calc(0.75em + 1rem);
    padding-right: calc(1.5em + 2rem);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.5rem) center;
    background-size: calc(0.75em + 1rem) calc(0.75em + 1rem);
    padding-right: calc(1.5em + 2rem);
}

.contact-form .invalid-feedback,
.contact-form .valid-feedback {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.btn-submit-contact {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 179, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 179, 0.4);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.btn-submit-contact:active {
    transform: translateY(-1px);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-header h2 i {
    color: var(--primary-blue);
}

.map-header p {
    font-size: 1.05rem;
    color: #666;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 2.75rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .contact-form-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }

    .contact-hero-title {
        font-size: 2.25rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-info-section {
        padding: 3rem 0;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .contact-form-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form-header h2 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-submit-contact {
        padding: 0.85rem 2.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .map-section {
        padding: 3rem 0;
    }

    .map-header h2 {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .map-wrapper iframe {
        height: 350px !important;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.85rem;
    }

    .contact-hero-subtitle {
        font-size: 0.95rem;
    }

    .contact-info-card h3 {
        font-size: 1.2rem;
    }

    .contact-info-card p {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-form .form-control {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .map-wrapper iframe {
        height: 300px !important;
    }
}

/* ===================================
   RECOGNITION SECTION (UGC)
   =================================== */

.recognition-section {
    padding: 100px 0;
    background: #f0f7ff;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.recognition-section::before,
.recognition-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 179, 0.05) 0%, rgba(0, 102, 179, 0) 70%);
    z-index: 1;
}

.recognition-section::before {
    top: -100px;
    left: -100px;
}

.recognition-section::after {
    bottom: -100px;
    right: -100px;
}

.recognition-card {
    background: #225197;
    color: #ffffff;
    padding: 80px 60px;
    border-radius: 0 160px 160px 0;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    margin-left: -100px;
    max-width: 700px;
}

.recognition-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.recognition-text {
    font-size: 1.35rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.recognition-image-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.framed-doc {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 0 0 15px #333,
        0 0 0 20px #111,
        20px 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 90%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.framed-doc:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

@media (max-width: 1199px) {
    .recognition-card {
        padding: 60px 40px;
        border-radius: 0 120px 120px 0;
    }

    .recognition-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .recognition-section {
        padding: 60px 0;
    }

    .recognition-card {
        border-radius: 30px;
        margin-left: 0;
        margin-bottom: 40px;
        padding: 40px;
        max-width: 100%;
        text-align: center;
    }

    .recognition-title {
        font-size: 2.5rem;
    }

    .framed-doc {
        transform: none;
        max-width: 80%;
    }
}

@media (max-width: 576px) {
    .recognition-title {
        font-size: 2rem;
    }

    .recognition-text {
        font-size: 1.1rem;
    }

    .framed-doc {
        padding: 10px;
        border-width: 8px;
        box-shadow:
            0 5px 15px rgba(0, 0, 0, 0.1),
            0 0 0 8px #333,
            0 0 0 12px #111;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 179, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    opacity: 0;
    transform: scale(0.8);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 102, 179, 0.5);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.form-ban {
    position: absolute !important;
    right: 5%;
    top: 5%;
    max-width: 430px !important;

}

.form-container {

    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #f79d18;
    width: 100%;
    position: relative;
}

/* .form-container::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        height: 3px;
                        background: linear-gradient(90deg, #f68d23, #ff6b35);
                        border-radius: 12px 12px 0 0;
                     } */

.form-title {
    text-align: center;
    margin-bottom: 10px;
}

.form-title h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.form-title strong {
    color: #f79d18;
}

.form-title p {
    color: #7f8c8d;
    font-size: 0.8rem;
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 10px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    background: white;
    color: #000;
}

.form-control:focus {
    outline: none;
    border-color: #f79d18;
    box-shadow: 0 0 0 2px rgba(246, 141, 35, 0.1);
}

.form-control::placeholder {
    color: #000;
    font-size: 0.85rem;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px;
    padding-right: 35px;
}

.checkbox-container {
    margin: 12px 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f79d18;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.75rem;
    color: #ffffff;
    line-height: 1.3;
    cursor: pointer;
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #f79d18;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(246, 141, 35, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Tablet adjustments */
@media (min-width: 481px) and (max-width: 768px) {
    .form-ban {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 30px auto 0 auto !important;
        max-width: 430px !important;
        display: block !important;
        clear: both;
    }
}

/* Desktop adjustments */
@media (min-width: 769px) {
    .form-container {
        max-width: 380px;
    }
}

/* Extra compact for mobile */
@media (max-width: 480px) {
    .form-ban {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        margin: 20px auto 0 auto !important;
        max-width: 100% !important;
        padding: 0 15px;
        display: block !important;
        clear: both;
    }

    .form-container {
        max-width: 100%;
        margin: 0 auto;
        position: relative !important;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-title h2 {
        font-size: 1.2rem;
    }

    .form-control {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .submit-btn {
        padding: 10px;
        font-size: 0.85rem;
    }

    .checkbox-group label {
        font-size: 0.7rem;
    }
}


.classic-service-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.classic-service-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
}

.text-div {
    background: linear-gradient(135deg, #1a3868 0%, #2d5aa0 100%);
    border-top-left-radius: 40%;
    aspect-ratio: 3 / 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 56, 104, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-div::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    transition: transform 0.6s ease;
    transform: scale(0);
}

.text-div:hover::before {
    transform: scale(1);
}

.text-div::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.text-div:hover::after {
    opacity: 1;
}

.text-div h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.text-div p {
    color: #e0e7ff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.main-div {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.img-div {
    margin-left: -5px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.img-div::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg,
            rgba(26, 56, 104, 0.1),
            rgba(45, 90, 160, 0.1));
    border-radius: 20px;
    z-index: -1;
    transition: all 0.6s ease;
}

.img-div img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Floating animation for decorative elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .text-div {
        padding: 0 40px;
    }

    .text-div h2 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .classic-service-section {
        padding: 60px 0;
    }

    .text-div {
        aspect-ratio: 2 / 1;
        border-radius: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .text-div {
        padding: 0 30px;
        aspect-ratio: 2.5 / 1;
    }

    .text-div h2 {
        font-size: 32px;
    }

    .text-div p {
        font-size: 16px;
    }

    .img-div {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .classic-service-section {
        padding: 40px 0;
    }

    .text-div {
        margin-top: 0;
        border-radius: 15px;
        padding: 25px;
        aspect-ratio: 2 / 1;
    }

    .text-div h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .text-div p {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .floating-element {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 400px) {
    .text-div h2 {
        font-size: 20px;
    }

    .text-div p {
        font-size: 13px;
    }

    .text-div {
        padding: 25px 20px;
    }
}

/* Hover effects for the entire section */
.row:hover .text-div {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(26, 56, 104, 0.4);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.text-div:focus-within {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* classic-service-section-end */

/* ===================================
   VC PHOTO STICKY SECTION
   =================================== */

/* Make the VC photo section sticky on the vice-chancellor page */
.vice-chancellor-photo-sticky {
    position: sticky;
    top: 120px;
    /* Adjust based on header height */
    align-self: flex-start;
}

/* Ensure smooth scrolling behavior */
@media (min-width: 992px) {
    .vice-chancellor-photo-sticky {
        position: sticky;
        top: 120px;
    }
}

/* On mobile, remove sticky behavior */
@media (max-width: 991px) {
    .vice-chancellor-photo-sticky {
        position: relative;
        top: auto;
    }
}