/* ==========================================================================
   Root Variables & Global Styles
   ========================================================================== */
   :root {
    --primary-color: #da22ff;
    --secondary-color: #9733ee;
    --text-dark: #333333;
    --text-light: #666666;
    --hover-shadow: rgba(218, 34, 255, 0.2);
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-optical-sizing: auto;
}

/* ==========================================================================
   Navbar Styles
   ========================================================================== */
.navbar-custom {
    background: linear-gradient(260deg, var(--primary-color) 0%, var(--secondary-color) 100%);;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Add this new class */
.navbar-custom.scrolled {
    background: var(--gradient) !important; /* Solid purple when scrolled */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-custom .nav-link {
    color: white;
    position: relative;
    font-weight: 500;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   Hero Section Styles
   ========================================================================== */
.hero-section {
    margin-top: 76px;
    position: relative;
}

/* Slider Styles */
.slider-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 76px);
}

.video-wrapper,
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper video,
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay & Content */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, 
        rgba(218, 34, 255, 0.7) 0%, 
        rgba(151, 51, 238, 0.7) 100%); */
    background: rgba(255, 255, 255, 0.411);
        z-index: 1;
}

.content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.text-content {
    color: white;
    padding: 20px;
    max-width: 800px;
}

.welcome-text {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

/* Key Features */
.key-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    animation: fadeIn 1.5s ease;
}

.feature-badge {
    /* background: rgba(255, 255, 255, 0.2); */
    background: var(--gradient);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.feature-badge.fac {
    /* background: rgba(255, 255, 255, 0.2); */
    background: var(--gradient);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.feature-badge.fac:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

/* Icon Styles */
.custom-icon {
color: var(--primary-color);
transition: all 0.5s ease;
}

.card:hover .custom-icon {
animation: pulse 1.5s infinite;
}

#features .card-body i {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

/* Owl Carousel Navigation */
.home-slider .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.home-slider .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    color: white !important;
}

.home-slider .owl-nav button:hover {
    background: var(--primary-color) !important;
}

.home-slider .owl-prev { left: 20px; }
.home-slider .owl-next { right: 20px; }

.home-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   Card Styles
   ========================================================================== */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--hover-shadow);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}/* Pricing Section Styles */
.pricing-section {
    background: linear-gradient(135deg, rgba(218, 34, 255, 0.05) 0%, rgba(151, 51, 238, 0.05) 100%);
    padding: 80px 0;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

/* Desktop Pricing Card */
.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(218, 34, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(218, 34, 255, 0.2);
}

/* Pricing Header */
.pricing-header {
    background: var(--gradient);
    padding: 40px 30px;
    color: white;
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.price-circles {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: -40px;
    position: relative;
    z-index: 1;
}

.circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.circle:hover {
    transform: scale(1.1);
}

.circle.ac {
    background: var(--primary-color);
}

.circle.non-ac {
    background: var(--secondary-color);
}

/* Pricing Content */
.pricing-content {
    padding: 60px 30px 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(218, 34, 255, 0.1);
    transition: all 0.3s ease;
}

.price-row:hover {
    background: rgba(218, 34, 255, 0.02);
    transform: translateX(10px);
}

.room-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.occupancy {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-info {
    display: flex;
    gap: 40px;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.price.ac {
    color: var(--primary-color);
}

.price.non-ac {
    color: var(--secondary-color);
}

/* Mobile Pricing List */
.pricing-list {
    padding: 20px;
}

.pricing-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(218, 34, 255, 0.1);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(218, 34, 255, 0.15);
}

.room-type {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.price-details {
    display: flex;
    justify-content: space-around;
}

.price-box {
    text-align: center;
    padding: 10px;
    flex: 1;
}

.price-box .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-box .price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Booking Button */
.pricing-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.booking-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gradient);
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(218, 34, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .pricing-item {
        margin-bottom: 15px;
    }

    .price-box .price {
        font-size: 1rem;
    }

    .booking-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Animation for NA prices */
.price:contains('NA') {
    opacity: 0.5;
    font-style: italic;
}

/* Additional Hover Effects */
.pricing-card:hover .pricing-header {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.price-row:last-child {
    border-bottom: none;
}

/* Optional: Add a subtle animation for price changes */
@keyframes priceHover {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.price:hover {
    animation: priceHover 0.3s ease;
}
/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn-primary {
    background: var(--gradient);
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float .btn:hover {
    transform: scale(1.1);
}

/* Accordion Styles */
#why-us {
    background-color: #f8f9fa;
}

.accordion-button {
background-color: var(--primary-color);
color: white;
font-weight: bold;
transition: background-color 0.3s ease;
position: relative;
}

.accordion-button:not(.collapsed) {
background-color: var(--secondary-color);
color: white;
}

.accordion-button::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: linear-gradient(135deg, rgba(218, 34, 255, 0.1) 0%, rgba(151, 51, 238, 0.1) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}

.accordion-button:hover::before {
opacity: 1;
}

.accordion-body {
color: var(--text-dark);
}

/* Form Styles */
.form-control {
border:2px medium ;
transition: all 0.4s ease;

}
.form-control:focus {
border-color: var(--primary-color);
box-shadow: 0 0 0 0.25rem rgba(218, 34, 255, 0.15);
}
/* ==========================================================================
   Footer Styles
   ========================================================================== */
footer {
    background: var(--gradient);
}

.text-white {
    text-decoration: none;
}

.text-white:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .welcome-text {
        font-size: 1.5rem;
    }
    
    .key-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .home-slider .owl-nav button {
        width: 40px;
        height: 40px;
    }
}




.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(218, 34, 255, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(218, 34, 255, 0.1) 0%, rgba(151, 51, 238, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    transform: rotate(360deg);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-details {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.feature-details li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(218, 34, 255, 0.1);
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.feature-details li::before {
    content: '•';
    color: var(--primary-color);
    margin-right: 10px;
}

/* Feature Gallery */
.feature-gallery img {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-gallery img:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .features-hero {
        padding: 100px 0 60px;
    }

    .features-hero h1 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Facilities Hero Section Enhancements */
.facilities-hero h1{
    font-size:45px;
    font-weight: bold;
}
.facilities-hero {
    position: relative;
    overflow: hidden;
}

.facilities-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.facilities-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 130px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
    background: var(--gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    color: black;
    font-size: 1rem;
}

/* Enhanced Facility Cards */
.facility-card {
    position:relative;
    z-index: 1;
    background: var(--gradient);
    border-radius: 8px;
    padding: 40px;
    color: white;

}


.facility-card::after {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
    border-radius: 15px;
} 

.facility-card:hover::after {
    opacity: 0.05;
}
.facility-category{
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Enhanced Meal Timings */
.meal-time {
    position: relative;
    overflow: hidden;
}

.meal-time::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

 .meal-time:hover::after {
    transform: scaleX(1);
}

/* Interactive Elements */
.facility-icon {
    position: relative;
    
   
}

.facility-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        var(--primary-color) 360deg
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 4s linear infinite;
}

.facility-card:hover .facility-icon::before {
    opacity: 0.1;
}


/* Category Header Styles */
.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(218, 34, 255, 0.03);
    border-radius: 15px;
}

.icon-box {
    min-width: 80px; /* Fixed width */
    height: 80px; /* Fixed height */
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px; /* Space between icon and text */
    box-shadow: 0 5px 15px rgba(218, 34, 255, 0.2);
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 35px; /* Icon size */
    color: white;
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box:hover i {
    transform: scale(1.1);
}

.category-title {
    flex: 1;
}

.category-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
}

.category-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .category-header {
        padding: 15px;
    }

    .icon-box {
        min-width: 60px;
        height: 60px;
        margin-right: 15px;
    }

    .icon-box i {
        font-size: 25px;
    }

    .category-title h2 {
        font-size: 1.8rem;
    }

    .category-title p {
        font-size: 1rem;
    }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-100%) rotate(360deg); }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    /* Facilities Hero Section */
    .facilities-hero {
        padding: 80px 0 40px;
        text-align: center;
        top: 20px;
    }

    .facilities-hero h1 {
        font-size: 15px;
        margin-bottom: 10px;
        
    }

    .facilities-hero .lead {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Stats Section */
    .facilities-stats {
        grid-template-columns: 1fr;
        padding: 20px;
        margin-top: 30px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Feature Badges */
    .hero-badges {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .feature-badge.fac {
        width: 80%;
        text-align: center;
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Category Headers */
    .category-header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .icon-box {
        margin: 0 auto 15px;
        width: 60px;
        height: 60px;
    }

    .category-title h2 {
        font-size: 1.8rem;
    }

    /* Facility Cards */
    .facility-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .facility-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto 15px;
    }

    .facility-card h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .facility-details li {
        font-size: 0.9rem;
    }

    /* Meal Schedule */
    .meal-timings {
        padding: 10px;
    }

    .meal-time {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
    }

    .time, .meal {
        font-size: 0.9rem;
    }

    /* Section Spacing */
    .facility-category {
        padding: 40px 15px;
    }

    .row.g-4 {
        margin: 0 -10px;
    }

    .col-lg-4, .col-lg-6 {
        padding: 0 10px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 576px) {
    .facilities-hero h1 {
        font-size: 250%;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .facility-card {
        padding: 15px;
    }

    .feature-badge.fac {
        width: 90%;
        font-size: 0.8rem;
    }
}

/* Gallery Hero Section */
.gallery-hero {
    background: var(--gradient);
    padding: 120px 0 60px;
    color: white;
    margin-bottom: 0;
}

.gallery-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Gallery Items */
.gallery-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(218, 34, 255, 0.8) 0%, 
        rgba(151, 51, 238, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Video Items */
.video-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-item video {
    width: 100%;
    border-radius: 12px;
}

/* Section Titles */
.section-title {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}