:root {
    --primary-red: #C1272D;
    --primary-blue: #010048;
    --primary-cream: #F5F5DC;
    --light-blue: #1a1a6e;
    --light-gray: #f8f9fa;
    --text-dark: #222;
    --text-light: #555;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 30px rgba(1, 0, 72, 0.08);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: white;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 5px 20px rgba(1, 0, 72, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 300;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact span {
    margin-right: 30px;
    display: inline-flex;
    align-items: center;
}

.header-contact i {
    margin-right: 8px;
    color: var(--primary-red);
    font-size: 1rem;
}

/* Search Bar Styles */
.header-search {
    display: flex;
    align-items: center;
    position: relative;
    width: 280px;
}

.header-search input {
    width: 100%;
    padding: 10px 45px 10px 20px;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.header-search input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 2px var(--primary-red);
}

.header-search button {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.header-search button:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.header-social a {
    color: white;
    margin-left: 20px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.main-header {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 110px;
    height: 110px;
    margin-right: 20px;
    position: relative;
    border: none;
    background: transparent;
    box-shadow: none;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-blue);
    border-radius: 0;
    font-weight: 700;
    font-size: 2.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.university-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.faculty-name {
    font-size: 1.4rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-top: 8px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.15rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-red);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-red);
    bottom: 0;
    left: 0;
    transition: width 0.4s ease;
    border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary-red);
}

/* FIXED: Carousel Slider with Individual Captions - CORRECTED */
.carousel-container {
    position: relative;
    width: 100%;
    height: 850px;
    overflow: hidden;
    margin-top: 0;
}

.carousel-slide {
    display: flex;
    width: 600%; /* Changed from 500% to 600% for 6 slides */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.slide-item {
    position: relative;
    width: 16.6667%; /* Changed from 20% to 16.6667% (100/6) */
    height: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Individual caption for each slide */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(1, 0, 72, 0.85), transparent);
    color: white;
    padding: 70px 100px 50px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-caption.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-caption h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-caption p {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 800px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.6;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    right: 100px;
    display: flex;
    gap: 20px;
    z-index: 11;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.indicator.active {
    background-color: var(--primary-red);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(193, 39, 45, 0.8);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 11;
}

.carousel-nav button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.carousel-nav button:hover {
    background-color: var(--primary-red);
    transform: scale(1.15);
}

/* Hero Section - CENTERED with original font sizes */
.hero {
    padding: 100px 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 45px;
    font-weight: 300;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a02025 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(193, 39, 45, 0.2);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(193, 39, 45, 0.3);
}

.btn:active {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 6px 15px rgba(1, 0, 72, 0.12);
}

/* Section Styles - Minimalistic */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), #ff6b6b);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section - Minimalistic Style */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-blue);
    font-size: 1.9rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 22px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background-color: white;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-red);
    border: 1px solid rgba(225, 229, 235, 0.6);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(1, 0, 72, 0.08);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1.15rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* REDESIGNED Minimalistic Academic Programs Section with Background */
.programs-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.programs-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 1;
}

.programs-container {
    position: relative;
    z-index: 2;
}

.programs-header {
    text-align: center;
    margin-bottom: 60px;
}

.programs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.program-category {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.category-title h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
    display: inline-block;
    background: white;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #e1e5eb, transparent);
    z-index: 0;
}

.programs-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.program-card-minimal {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(225, 229, 235, 0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

.program-card-minimal:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(1, 0, 72, 0.1);
    background-color: white;
}

.program-card-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-red), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.program-card-minimal:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.1) 0%, rgba(1, 0, 72, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
    transition: var(--transition);
}

.program-card-minimal:hover .program-icon {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-blue) 100%);
    color: white;
    transform: scale(1.05);
}

.program-card-minimal h4 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.program-card-minimal p {
    color: var(--text-light);
    margin-bottom: 22px;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
}

.program-duration {
    display: inline-block;
    background-color: rgba(1, 0, 72, 0.08);
    color: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.program-cta {
    margin-top: 18px;
}

.program-cta .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
}

.programs-actions {
    text-align: center;
    margin-top: 60px;
    padding-top: 45px;
    border-top: 1px solid rgba(225, 229, 235, 0.6);
}

.programs-actions h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 22px;
    font-weight: 600;
}

/* Hidden Programs Modal */
.hidden-programs-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 0, 72, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hidden-programs-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 50px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-red);
}

.hidden-programs-content h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.hidden-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.hidden-program-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(225, 229, 235, 0.6);
}

.hidden-program-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(1, 0, 72, 0.08);
}

.hidden-program-card h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.hidden-program-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 15px;
}

/* Faculty Slider Section - Minimalistic Style */
.faculty-section {
    background-color: white;
}

.faculty-slider-container {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.faculty-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faculty-slide {
    min-width: 300px;
    margin: 0 15px;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0.9;
    transform: scale(0.95);
    border: 1px solid rgba(225, 229, 235, 0.6);
}

.faculty-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 30px rgba(1, 0, 72, 0.1);
}

.faculty-slide:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(1, 0, 72, 0.15);
}

.faculty-img {
    height: 280px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.faculty-slide:hover .faculty-img {
    transform: scale(1.05);
}

.faculty-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(1, 0, 72, 0.6), transparent);
}

.faculty-info {
    padding: 25px;
    text-align: center;
}

.faculty-info h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.faculty-info p.position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faculty-info .degree {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
}

.faculty-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.faculty-nav button {
    background-color: rgba(1, 0, 72, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.faculty-nav button:hover {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

/* ENHANCED GALLERY SECTION - Elegant Grouped Photo Albums */
.gallery-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 70px;
}

.gallery-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.gallery-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), #ff6b6b);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.gallery-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-albums-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.album-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(225, 229, 235, 0.6);
    height: 100%;
}

.album-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(1, 0, 72, 0.12);
}

.album-cover {
    height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.album-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(1, 0, 72, 0.7), transparent);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(193, 39, 45, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.album-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.album-overlay-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.album-photo-count {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

.album-info {
    padding: 28px;
}

.album-title {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.album-description {
    color: var(--text-light);
    margin-bottom: 22px;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.05rem;
}

.album-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.album-date {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
}

.album-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-size: 1rem;
}

.album-link:hover {
    color: var(--primary-red);
}

.album-link i {
    margin-left: 6px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.album-link:hover i {
    transform: translateX(4px);
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* Photo Grid Modal for Albums */
.album-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 0, 72, 0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.album-modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(225, 229, 235, 0.6);
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal-btn:hover {
    color: var(--primary-red);
    background-color: rgba(193, 39, 45, 0.1);
}

.modal-body {
    padding: 30px;
}

.album-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.modal-photo-item {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.modal-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modal-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modal-photo-item:hover img {
    transform: scale(1.1);
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(225, 229, 235, 0.6);
    text-align: center;
}

/* Partners Section - Minimalistic Style - UPDATED */
.partners-section {
    padding: 90px 0;
    background-color: white;
}

.partners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 55px;
    margin-top: 55px;
}

.partner-category {
    width: 100%;
    text-align: center;
}

.category-title-partner {
    color: var(--primary-blue);
    font-size: 1.7rem;
    margin-bottom: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.category-title-partner::after {
    content: '';
    position: absolute;
    width: 55px;
    height: 2.5px;
    background-color: var(--primary-red);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 18px;
}

.partner-logo-simple {
    background-color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    min-width: 180px;
    border: 1px solid rgba(225, 229, 235, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-logo-simple:hover {
    transform: translateY(-6px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 25px rgba(1, 0, 72, 0.08);
}

.partner-logo-img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    border: none;
}

.partner-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.partner-logo-placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-blue);
    border-radius: 0;
    font-weight: 700;
    font-size: 1.8rem;
    border: none;
}

.partner-logo-simple h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.partner-logo-simple p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Testimonial Section - Simple & Intuitive */
.testimonials-section {
    background-color: white;
    padding: 100px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}

.testimonial-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.testimonial-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-red), #ff6b6b);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.testimonial-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    border: 1px solid rgba(225, 229, 235, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    padding: 0 30px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.3;
    position: absolute;
    font-family: Georgia, serif;
}

.testimonial-content p::before {
    top: -20px;
    left: -5px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -5px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--primary-red);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.author-info p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(1, 0, 72, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dot.active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

.testimonial-nav-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

/* ENHANCED NEWS SECTION with Calendar Layout */
.news-section {
    background-color: white;
    padding: 100px 0;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.news-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-highlight {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(225, 229, 235, 0.6);
}

.news-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 0, 72, 0.1);
}

.news-highlight-img {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.news-highlight-content {
    padding: 35px;
}

.news-highlight-content .news-date {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    font-size: 1rem;
}

.news-highlight-content h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.news-highlight-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.1rem;
}

.news-sidebar {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(225, 229, 235, 0.6);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

/* Calendar Widget */
.calendar-widget {
    margin-bottom: 35px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 600;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav button {
    background-color: rgba(1, 0, 72, 0.08);
    color: var(--primary-blue);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav button:hover {
    background-color: var(--primary-blue);
    color: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
    padding: 8px 0;
}

.calendar-day {
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.calendar-day:hover {
    background-color: rgba(1, 0, 72, 0.05);
}

.calendar-day.current {
    background-color: var(--primary-red);
    color: white;
    font-weight: 600;
}

.calendar-day.event::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--primary-red);
    border-radius: 50%;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.calendar-events {
    margin-top: 25px;
}

.calendar-event-item {
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(1, 0, 72, 0.03);
    margin-bottom: 15px;
    transition: var(--transition);
}

.calendar-event-item:hover {
    background-color: rgba(1, 0, 72, 0.08);
    transform: translateX(5px);
}

.event-date {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.event-title {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.news-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(225, 229, 235, 0.6);
}

.news-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(1, 0, 72, 0.1);
}

.news-item-img {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.news-item-content {
    padding: 25px;
}

.news-item-content .news-date {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    font-size: 0.95rem;
}

.news-item-content h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.news-item-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.5;
    font-size: 1rem;
}

.view-all-news {
    text-align: center;
    margin-top: 50px;
}

/* Contact Section - Minimalistic Style */
.contact-section {
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background-color: white;
    padding: 40px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(225, 229, 235, 0.6);
}

.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
    font-size: 1.05rem;
}

.contact-form {
    background-color: white;
    padding: 40px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(225, 229, 235, 0.6);
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: 'Segoe UI', sans-serif;
    transition: var(--transition);
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.1);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* Footer - Minimalistic Style */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 90px 0 35px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 55px;
    margin-bottom: 65px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: white;
}

.footer-logo span {
    color: var(--primary-red);
}

.footer-about p {
    margin-bottom: 28px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2.5px;
    background-color: var(--primary-red);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
    display: inline-block;
    font-size: 1.05rem;
}

.footer-links ul li a:hover {
    color: var(--primary-red);
    transform: translateX(4px);
}

.footer-contact p {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    font-weight: 300;
    opacity: 0.9;
    font-size: 1.05rem;
}

.footer-contact i {
    margin-right: 16px;
    color: var(--primary-red);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(193, 39, 45, 0.3);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(1, 0, 72, 0.3);
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .carousel-container {
        height: 650px;
    }
    
    .slide-caption {
        padding: 60px 80px 40px;
    }
    
    .slide-caption h2 {
        font-size: 2.8rem;
    }
    
    .slide-caption p {
        font-size: 1.3rem;
    }
    
    .header-search {
        width: 220px;
    }
    
    .news-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    
    .carousel-container {
        height: 550px;
    }
    
    .slide-caption {
        padding: 50px 60px 35px;
    }
    
    .slide-caption h2 {
        font-size: 2.4rem;
    }
    
    .slide-caption p {
        font-size: 1.2rem;
    }
    
    .carousel-nav {
        padding: 0 30px;
    }
    
    .carousel-nav button {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .faculty-slide {
        min-width: 260px;
        margin: 0 12px;
    }
    
    .gallery-albums-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid-minimal {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .logo {
        width: 90px;
        height: 90px;
    }
    
    .university-name {
        font-size: 1.9rem;
    }
    
    .faculty-name {
        font-size: 1.2rem;
    }
    
    .header-search {
        width: 180px;
    }
    
    .testimonial-slide {
        padding: 35px 30px;
    }
    
    .testimonial-content p {
        font-size: 1.15rem;
        padding: 0 25px;
    }
    
    .album-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-highlight-img {
        height: 250px;
    }
    
    .news-highlight-content {
        padding: 25px;
    }
    
    .news-highlight-content h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 30px rgba(1, 0, 72, 0.1);
        display: none;
        border-top: 1px solid #f0f0f0;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        padding: 25px;
    }
    
    nav ul li {
        margin: 0 0 22px 0;
    }
    
    .header-top .container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .header-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .header-contact span {
        margin-right: 0;
    }
    
    .header-search {
        width: 100%;
        max-width: 300px;
        margin: 10px auto 0;
    }
    
    .carousel-container {
        height: 500px;
    }
    
    .slide-caption {
        padding: 40px 35px 30px;
    }
    
    .slide-caption h2 {
        font-size: 2rem;
    }
    
    .slide-caption p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .carousel-nav {
        padding: 0 20px;
    }
    
    .carousel-nav button {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .carousel-indicators {
        right: 35px;
        bottom: 30px;
        gap: 12px;
    }
    
    .hero {
        padding: 90px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-albums-container {
        grid-template-columns: 1fr;
    }
    
    .album-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logos {
        gap: 25px;
    }
    
    .partner-logo-simple {
        min-width: 150px;
        padding: 12px 16px;
    }
    
    .partner-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .partner-logo-placeholder {
        width: 100px;
        height: 100px;
        font-size: 1.6rem;
    }
    
    .category-title h3 {
        font-size: 1.7rem;
    }
    
    .hidden-programs-content {
        padding: 35px 30px;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .university-name {
        font-size: 1.7rem;
    }
    
    .faculty-name {
        font-size: 1.1rem;
    }
    
    .testimonial-title {
        font-size: 2.2rem;
    }
    
    .testimonial-slide {
        padding: 30px 25px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 25px;
    }
    
    .carousel-container {
        height: 450px;
    }
    
    .slide-caption {
        padding: 35px 30px 25px;
    }
    
    .slide-caption h2 {
        font-size: 1.8rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .carousel-nav button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 90px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 25px;
    }
    
    .faculty-nav button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .partner-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .partner-logo-simple {
        width: 100%;
        max-width: 260px;
    }
    
    .album-photos-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .university-name {
        font-size: 1.5rem;
    }
    
    .faculty-name {
        font-size: 1rem;
        margin-top: 6px;
    }
    
    .program-card-minimal {
        padding: 25px 22px;
    }
    
    .program-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .program-card-minimal h4 {
        font-size: 1.3rem;
    }
    
    .hidden-programs-grid {
        grid-template-columns: 1fr;
    }
    
    .header-search {
        max-width: 100%;
    }
    
    .testimonial-title {
        font-size: 1.9rem;
    }
    
    .testimonial-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-slide {
        padding: 25px 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
}