/* ===== Base Styles & Variables ===== */
:root {
    /* Primary Color Palette */
    --primary-blue: #0C0CA5;
    --primary-blue-light: #3d3dc7;
    --primary-blue-dark: #080883;
    --primary-blue-darker: #050562;
    --primary-yellow: #d3a634;
    --secondary-green: #005c34;
    --tertiary-green-light: #007f3f;
    --tertiary-green: #057c05;
    --tertiary-yellow: #e7dd0d;
    
    /* Complementary Colors */
    --complementary-orange: #A5690C;
    --complementary-orange-light: #d3a634;
    --complementary-orange-dark: #83540a;
    
    /* Analogous Colors */
    --analogous-purple: #450CA5;
    --analogous-cyan: #0C45A5;
    
    /* Triadic Colors */
    --triadic-red: #A50C45;
    --triadic-green: #45A50C;
    
    /* Neutral Colors */
    --neutral-light: #f8f9ff;
    --neutral-medium: #e6e8f5;
    --neutral-dark: #2a2a4a;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--analogous-purple) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--complementary-orange) 0%, var(--complementary-orange-light) 100%);
    --accent-gradient: linear-gradient(135deg, var(--analogous-cyan) 0%, var(--primary-blue-light) 100%);
    --success-gradient: linear-gradient(135deg, var(--triadic-green) 0%, #66bb6a 100%);
    --dark-gradient: linear-gradient(135deg, var(--neutral-dark) 0%, var(--primary-blue-darker) 100%);
    
    /* Glass effect */
    --glass-bg: rgba(12, 12, 165, 0.1);
    --glass-border: rgba(12, 12, 165, 0.2);
    --glass-bg-light: rgba(255, 255, 255, 0.1);
    --glass-border-light: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-primary: 0 20px 60px rgba(12, 12, 165, 0.3);
    --shadow-uni: 0 20px 60px rgba(80, 126, 6, 0.3);
    --shadow-secondary: 0 15px 45px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Custom colors */
    --text-pink: #f093fb;
    --text-orange: #ed8936;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
} */

.section {
    padding: 3rem 0;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Hero Section */

/* Add to your styles2.css file */

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 800px;
    transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

/* New Overlay with Gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(12, 12, 165, 0.85) 0%,
        rgba(69, 12, 165, 0.75) 50%,
        rgba(211, 166, 52, 0.5) 100%
    );
    z-index: 1;
    mix-blend-mode: multiply;
}

/* Enhanced Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 90%;
    max-width: 1200px;
    text-align: center;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: -0.5px;
    background: linear-gradient(45deg, #ffffff 30%, var(--complementary-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.hero-content h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, var(--complementary-orange-light), var(--primary-yellow));
    z-index: -1;
    opacity: 0.7;
    border-radius: 6px;
    transform: skewX(-15deg);
}

.location-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.7s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.apply-now-btn {
    background: var(--tertiary-yellow) !important;
    /* color: var(--tertiary-green-light) !important; */
    color: #000 !important;
}

/* Enhanced Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--analogous-purple) 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: black;
    box-shadow: 0 10px 30px rgba(12, 12, 165, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--analogous-cyan) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-gradient:hover {
    background-color: var(--tertiary-green);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(12, 12, 165, 0.6);
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    background: transparent;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Enhanced Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.chevron {
    width: 25px;
    height: 5px;
    background: white;
    margin: 5px auto;
    border-radius: 3px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* New Animations */
@keyframes textGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
    .carousel-item {
        min-height: 90vh;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content h2 {
        font-size: 1.6rem;
    }
    .location-tag {
        font-size: 1rem;
        padding: 8px 20px;
        margin-bottom: 2rem;
    }
    .btn-gradient, .btn-outline-light {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content h2 {
        font-size: 1.3rem;
    }
    .location-tag {
        font-size: 0.9rem;
    }
}

/* ENd Hero Section */

/* ===== Header & Navigation ===== */
.bg-primary-blue {
    background-color: var(--tertiary-green) !important;
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    /* color: var(--primary-blue) !important; */
    color: var(--tertiary-green) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 1rem 1.2rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow) !important;
}
/* 
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
} */

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    /* height: 90vh; */
    min-height: 85vh;
    
    /* margin-top: -70px; */
    /* overflow: hidden; */
}

.carousel-item {
    height: 100vh;
    min-height: 700px;
    transition: opacity 1.5s ease-in-out !important;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(20, 30, 48, 0.9) 0%,
        rgba(36, 59, 85, 0.8) 100%
          /* rgba(12, 12, 165, 0.9) 0%, 
        rgba(66, 153, 225, 0.6) 100% */
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease-out;
}

.highlight {
    color: #4fd1c5;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(79, 209, 197, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.location-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-gradient {
    /* background: linear-gradient(135deg, #4fd1c5 0%, #4299e1 100%); */
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.5);
    color: white;
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1000px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
    min-width: 140px;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    background: rgba(79, 209, 197, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4fd1c5;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-align: center;
}

.chevron {
    width: 20px;
    height: 5px;
    background: rgba(255, 255, 255, 0.6);
    margin: 3px auto;
    border-radius: 3px;
    animation: pulse 2s infinite;
}

.chevron:nth-child(1) { animation-delay: 0s; }
.chevron:nth-child(2) { animation-delay: 0.2s; }
.chevron:nth-child(3) { animation-delay: 0.4s; }
.section-title{
    /* font-family: 'Playfair Display', serif; */
    font-weight: 700;
    font-size: 16px;
    
}
/* ===== Rector Section ===== */
.rector-section {
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-medium) 100%);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: var(--shadow-secondary);
    position: relative;
    overflow: hidden;
}

.rector-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.1;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.rector-text h2 {
    margin-bottom: 2rem;
}

.rector-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

.rector-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.rector-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    border: 5px solid var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Courses Section ===== */
.courses-section {
    background-color: var(--neutral-light);
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 5px solid var(--tertiary-green);
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

.course-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--tertiary-green-light);
    margin-bottom: 0.5rem;
}

.course-subtitle {
    font-weight: 600;
    color: var(--neutral-dark);
    margin-bottom: 1.5rem;
}

.course-list {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.dean {
    color: var(--primary-blue);
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px dashed rgba(12, 12, 165, 0.2);
}

/* ===== Principal Officers Section ===== */
.officer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.officer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.officer-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--neutral-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-pink {
    color: var(--text-pink);
}

.text-orange {
    color: var(--text-orange);
}

/* ===== FAQ Section (Bootstrap 4 Accordion) ===== */
#faqAccordion .card {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

#faqAccordion .card-header {
    padding: 0;
    background-color: white;
    border-bottom: none;
}

#faqAccordion .btn-link {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#faqAccordion .btn-link:after {
    font-family: "Font Awesome 5 Free";
    content: "\f078";
    font-weight: 900;
    transition: all 0.3s ease;
}

#faqAccordion .btn-link.collapsed:after {
    transform: rotate(-90deg);
}

#faqAccordion .btn-link:hover {
    text-decoration: none;
    color: var(--primary-blue-dark);
}

#faqAccordion .card-body {
    padding: 1.5rem;
    background-color: rgba(12, 12, 165, 0.03);
}

/* ===== Important Notice Section ===== */
.notice-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.section-notice {
    background: var(--tertiary-yellow);
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.notice-item:hover {
    background: rgba(12, 12, 165, 0.05);
}

.notice-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ===== Get Started Section ===== */
.step-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(231, 221, 13, 0.05);
    transition: var(--transition);
    background: white;
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 2rem;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--tertiary-green-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--tertiary-green-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(12, 12, 165, 0.3);
}

.step-card h5 {
    color: var(--tertiary-green-light);
    margin-bottom: 1rem;
    min-height: 3rem;
}


/* ===== CTA Section ===== */
.bg-primary {
    background: var(--tertiary-green) !important;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    background: var(--neutral-dark);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--tertiary-green-light);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white !important;
    opacity: 1;
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: white;
    margin-right: 0.5rem;
}

.social-icons a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    color: white;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(12, 12, 165, 0.3);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
    .rector-section {
        padding: 3rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 4rem 0;
    }
    
    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 600px;
    }
    
    .carousel-item {
        height: 600px;
    }
    
    .floating-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 1rem;
    }
    
    .rector-section {
        padding: 2rem;
    }
    
    .rector-card {
        position: relative;
        top: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .carousel-item {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-card {
        width: calc(50% - 15px);
        margin-bottom: 15px;
    }
    
    .notice-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }
    
    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .btn-gradient, .btn-outline-light {
        width: 100%;
        margin-bottom: 1rem;
    }
}