body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #1f1f1f;
}
html {
    background-color: #1f1f1f;
    scroll-behavior: smooth;
}
section {
    padding: 5rem 12rem;
    margin-top: 0;
}
#about {
    background-color: #1f1f1f;
    margin-bottom: 4rem;
}
#about p {
    font-size: 5rem;
    text-align: left;
    max-width: 600px;
    padding-left: 2rem;
    padding: 0rem;    
    line-height: 1.2;
    padding-bottom: 0px;
    color: #ffffff;
    margin-bottom: 0;
}
.highlight {
    font-family: serif;
    font-style: italic;
    font-weight: bold;
    color: #2bdf2b;
}
#about h3 {
    font-size: 1.2rem;
    color: #dbdbdb;
    margin-top: 1rem;
    text-align: left;
    padding-left: 0rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-left: 0rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.social-btn:hover {
    background-color: #555;
}

#testimonials {
    background-color: #1f1f1f;
    overflow: hidden;
    padding: 4rem 2rem;
}
.testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    align-items: stretch;
    animation: scroll-left 24s linear infinite;
    will-change: transform;
}
.testimonial-track:hover {
    animation-play-state: paused;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--testimonial-scroll-distance, 0px)));
    }
}

.testimonial-card {
    flex: 0 0 auto;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    min-width: 320px;
    max-width: 360px;
}
.testimonial-card p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #333;
}
.testimonial-card cite {
    display: block;
    color: #666;
    font-size: 0.95rem;
}
#contact {
    background-color: #292929;
    border-radius: 70px;
    margin-left: 2rem;
    margin-right: 2rem;
    padding-left: 8rem;
}
#contact h2{
    color: #fff;
}
#gallery {
    background-color: #292929;
    border-radius: 70px;
    margin-left: 2rem;
    margin-right: 2rem;
}
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    justify-content: flex-start;
}
:root {
    --gallery-item-height: 530px;
    --testimonial-scroll-distance: 0px;
}
.gallery-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    min-width: 0;
    height: var(--gallery-item-height);
    overflow: hidden;
    border-radius: 40px;
    position: relative;
}

.gallery-video {
    width: 100%;
    height: 100%;
}

.video-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .video-controls {
    opacity: 1;
}

.volume-slider {
    margin-right: 2.5rem;
    width: 50px;
    cursor: pointer;
}
.gallery-item img,
.gallery-item video {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.gallery-item:nth-last-child(1),
.gallery-item:nth-last-child(2) {
    height: 440px;
}
.gallery-item:nth-last-child(3),
.gallery-item:nth-last-child(4) {
    height: 480px;
}
.gallery-item:nth-last-child(5),
.gallery-item:nth-last-child(6) {
    height: 480px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2) {
    height: 560px;
}
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) {
    height: 560px;
}.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
    height: 560px;
}

#gallery-container {
    position: relative;
    max-height: calc(565px * 3 + 1rem * 2);
    overflow: hidden;
    transition: max-height 0.5s ease;
}

#gallery-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#gallery-container.expanded {
    max-height: none;
}

#gallery-container.expanded::after {
    opacity: 0;
}

.see-more-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: Helvetica, sans-serif;
}

.see-more-btn:hover {
    background-color: #555;
}

.see-more-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.see-more-btn.expanded i {
    transform: rotate(180deg);
}

.testimonial {
    margin-bottom: 2rem;
}
form {
    max-width: 600px;
    margin: 0;
}
form p {
    color: #fff;
    margin-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}
textarea::placeholder {
  font-family: Helvetica, sans-serif;
  color: #999;
}
textarea {
  font-family: Helvetica, sans-serif;
}
input, textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
}
button {
    padding: 0.5rem 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 8px;
}

.contact-content {
    margin-top: 0rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    color: #fff;
    max-width: 300px;
    justify-self: start;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-info p:first-child {
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-in, transform 0.6s ease-in;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 2rem;
}

footer h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #dbdbdb;
}

footer a {
    color: #2bdf2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

footer hr {
    border: none;
    border-top: 1px solid #333;
    margin: 2rem 0;
}

footer .copyright {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1.5rem;
}
