* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

.header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h2 {
    color: #00d2ff;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00d2ff;
}

.banner {
    /* The linear-gradient adds a dark overlay so your white text is easily readable over the photo */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    width: 100%; /* Ensures it spans the full screen width */
}

.banner h1 {
    font-size: 2.8rem;
    color: #00d2ff;
    margin-bottom: 1rem;
}

.banner p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.banner-btn {
    background-color: #00d2ff;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.banner-btn:hover {
    background-color: #0099cc;
    color: #fff;
}

.container {
    padding: 3rem 5%;
    max-width: 1200px;
    margin: auto;
}

/* Services Preview Grid */
.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.service-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    padding-bottom: 1.5rem;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #00d2ff;
    margin-bottom: 1rem;
}

.service-box h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-box p {
    padding: 0 15px;
    color: #555;
}

/* Split Layout (Image + Text) */
.split-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
}

.split-image, .split-text {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.split-text ul {
    margin-top: 15px;
    margin-left: 20px;
}

.split-text li {
    margin-bottom: 10px;
    color: #333;
}

/* Updated Portfolio Gallery Section with Animations */
.portfolio-section {
    padding: 4rem 5%;
    background-color: #fff;
}

.portfolio-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.portfolio-category {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    border-bottom: 2px solid #00d2ff;
    display: inline-block;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.portfolio-item {
    background: #f4f7f6;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-bottom: 3px solid #00d2ff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.media-wrapper {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 15px;
}

.media-wrapper img, .media-wrapper video, .media-wrapper iframe {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .media-wrapper img {
    transform: scale(1.08); 
}

.portfolio-item h4 {
    color: #1a1a1a;
    margin-bottom: 5px;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.portfolio-btn {
    background-color: #00d2ff;
    color: #1a1a1a;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    border-radius: 4px;
    text-align: center;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

.portfolio-btn:hover {
    background-color: #0099cc;
    color: #fff;
}

/* Custom Poster Carousel Slider */
.carousel-container {
    position: relative;
    max-width: 1050px;
    margin: auto;
    display: flex;
    align-items: center;
}

.poster-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.poster-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.poster-carousel::-webkit-scrollbar {
    height: 8px;
}
.poster-carousel::-webkit-scrollbar-thumb {
    background: #00d2ff;
    border-radius: 4px;
}
.poster-carousel::-webkit-scrollbar-track {
    background: #f4f7f6;
}

.carousel-slide {
    min-width: 100%;
    scroll-snap-align: center;
    background: #f4f7f6;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-bottom: 3px solid #00d2ff;
    text-align: center;
    flex: 0 0 calc(100% - 30px);
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.carousel-slide h4 {
    color: #1a1a1a;
    margin-bottom: 5px;
}

/* Arrow Buttons */
.carousel-btn {
    background-color: #00d2ff;
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    background-color: #0099cc;
    color: #fff;
    transform: scale(1.1);
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

@media (max-width: 768px) {
    .carousel-btn { display: none; }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f4f7f6;
    padding: 4rem 5%;
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #00d2ff;
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
    color: #1a1a1a;
}

/* Final CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d1b2a, #162a40); /* Rich navy gradient */
    padding: 5rem 5%;
    text-align: center;
    color: #ffffff;
    border-top: 2px solid #00d2ff; /* Clean cyan accent line at the top */
    border-bottom: 2px solid #00d2ff; /* Clean cyan accent line at the bottom */
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    color: #b0c4de;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
/* Footer & Social Icons */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 2rem 5%;
    margin-top: 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-map {
    text-align: center; 
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; 
}

.social-icons a {
    color: #fff;
    font-size: 1.8rem;
    margin: 0; 
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #00d2ff;
    transform: translateY(-3px); 
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-social {
        text-align: center;
    }
}
/* 9:16 Vertical Video Wrapper for Shorts and Reels */
.vertical-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.vertical-video-wrapper iframe,
.vertical-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}
/* Ensure media wrappers handle vertical video aspect ratios cleanly */
.media-wrapper {
    position: relative;
    width: 100%;
    max-width: 260px;
    height: 460px;
    margin: 0 auto;
    background: #000;
    border-radius: 16px;
    border: 4px solid #333;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}