/* Custom styles for Meeting Room Booking System */

/* Global styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0; /* Remove padding-top */
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #4ecdc4;
}

/* Navbar styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-dark.bg-primary {
    background-color: #2c786c !important;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hero section styles - Bigger with vertical centering */
.hero-section {
    background: linear-gradient(135deg, #1a2a6c, #2a4858, #2c786c);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-top: 0;
    padding-top: 60px; /* Just enough space for the fixed navbar */
}

/* Ensure horizontal scaling */
.hero-section .container-fluid {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Remove conflicting height settings */
.hero-section .row {
    width: 100%;
    margin: 0;
}

/* Navbar adjustments */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-section .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        min-height: 90vh;
    }
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
    }
}

/* Ensure navbar doesn't interfere */
.navbar {
    z-index: 1030;
}

/* Custom button styles */
.btn {
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-hero {
    background-color: #4ecdc4;
    border-color: #4ecdc4;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover, .btn-hero:focus {
    background-color: #45b8b0;
    border-color: #45b8b0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Particles container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

/* Section styles */
section {
    padding: 5rem 0;
}

section h2 {
    margin-bottom: 1rem;
}

/* Contact form section styles */
#contact {
    background-color: #f8f9fa;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%234ecdc4" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.8;
    z-index: 0;
}

#contact .container {
    position: relative;
    z-index: 1;
}

.form-floating .form-control {
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-floating .form-control:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #4ecdc4;
}

.form-floating label {
    color: #6c757d;
}

/* Contact details section styles */
#contact-details {
    background-color: #fff;
}

.feature {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ecdc4, #2c786c);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 1.5rem;
    color: white;
}

.col h2.h5 {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #333;
}

.col p {
    color: #6c757d;
}

/* Login modal styles */
.modal-content {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal-header {
    background-color: #2c786c;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title {
    color: white;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-body .form-control {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus {
    border-color: #4ecdc4;
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
}

/* Footer styles */
footer {
    background-color: #1a2a6c;
    color: white;
    padding: 2rem 0;
}

/* Link styles */
a {
    color: #4ecdc4;
    transition: all 0.3s ease;
}

a:hover {
    color: #2c786c;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    h1.display-5 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

#particles-js {
    pointer-events: none;
}

#contact {
    position: relative;
    z-index: 10;
}

#contact .container-fluid {
    position: relative;
    z-index: 11;
}

#contactForm {
    position: relative;
    z-index: 12;
}

#submitButton {
    position: relative;
    z-index: 13;
}

/* Scroll down button styles */
.scroll-down-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.scroll-down-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.3);
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments for scroll button */
@media (max-width: 768px) {
    .scroll-down-container {
        bottom: 1.5rem;
    }

    .scroll-down-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.office-image {
    height: 220px; /* Adjust as needed */
    position: relative;
    overflow: hidden;
}

.office-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-img {
    width: 100%;
    max-width: 100%;
    height: 50vh;
    object-fit: contain;
    background: #181818;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    padding: 8px;
}
@media (max-width: 576px) {
    .gallery-img {
        height: 65vh;   /* Make images taller on smartphones */
        padding: 2px;   /* Less padding for more image area */
        border-radius: 6px;
    }
}

/* ...existing code... */
.modal-content.bg-dark {
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border: 1px solid #222;
}

.carousel-inner {
    border-radius: 12px;
}

.gallery-img {
    width: 100%;
    max-width: 100%;
    height: 60vh;
    object-fit: contain;
    background: #181818;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    padding: 8px;
}

@media (max-width: 576px) {
    .gallery-img {
        height: 65vh;
        padding: 2px;
        border-radius: 8px;
    }
}

.custom-carousel-control {
    filter: drop-shadow(0 2px 8px #000a);
    width: 4rem;
    height: 4rem;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 2.5rem 2.5rem;
}

#galleryCounter {
    font-weight: 500;
    letter-spacing: 0.05em;
    background: rgba(20,20,20,0.85) !important;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
/* ...existing code... */