/* Wedding Photo Planet - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
/* Text Justify for all paragraph tags */
p {
    text-align: justify;
}

/* Header Styles */
.main-header {
    background-color: #000;
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    padding: 0px 0;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    display: block;
}

.logo-image:hover {
    opacity: 0.8;
}

/* Logo container adjustments */
.logo {
    display: flex;
    align-items: center;
    height: 60px;
    flex-shrink: 0;
    height: 60px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Fallback for logo text if image fails to load */
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-style: italic;
}

.logo-text:hover {
    color: #fff;
    text-decoration: none;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    text-decoration: none;
}

/* Modern Mobile Menu Toggle */
.modern-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-mobile-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #a1a1a1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger-line.line-1 {
    top: 8px;
}

.hamburger-line.line-2 {
    top: 14px;
}

.hamburger-line.line-3 {
    top: 20px;
}

.modern-mobile-toggle:hover .hamburger-line {
    background-color: #fff;
}

/* Modern Mobile Navigation */
.modern-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-mobile-nav.active {
    visibility: visible;
    opacity: 1;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: #000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.modern-mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.mobile-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.close-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg) translateY(4px);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg) translateY(-4px);
}

.mobile-nav-menu {
    flex: 1;
    padding: 2rem 0;
    overflow-y: auto;
}

.modern-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-nav-list .nav-item {
    margin: 0;
}

.modern-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.modern-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: #ff6b6b;
    color: #fff;
    text-decoration: none;
}

.modern-nav-link i {
    width: 24px;
    margin-right: 1rem;
    font-size: 1.1rem;
    color: #a1a1a1;
}

.modern-nav-link span {
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid #333;
    background: #131313;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
    gap: 0.8rem;
}

.mobile-contact-item i {
    color: #a1a1a1;
    width: 16px;
    text-align: center;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 2rem 1rem;
    z-index: 1001;
    border-top: 1px solid #333;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 0.5rem;
}

.mobile-nav-list a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    margin-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Carousel Section */
.hero-carousel {
    height: 450px;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

/* Mobile Responsive Hero Carousel */
@media (max-width: 768px) {
    .hero-carousel {
        height: 300px;
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        height: 250px;
        margin-top: 50px;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.02);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.hero-slide:not(.active) {
    z-index: 1;
    transform: scale(1.02);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile Image Optimization */
@media (max-width: 768px) {
    .hero-slide img {
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 576px) {
    .hero-slide img {
        object-fit: cover;
        object-position: center center;
    }
}

/* Hero Carousel Navigation */
.hero-carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-nav-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* Mobile Responsive Navigation */
@media (max-width: 768px) {
    .hero-carousel-nav {
        bottom: 15px;
        gap: 8px;
    }
    
    .hero-nav-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .hero-carousel-nav {
        bottom: 10px;
        gap: 6px;
    }
    
    .hero-nav-dot {
        width: 8px;
        height: 8px;
    }
}

/* Hero Carousel Arrows */
.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Mobile Responsive Arrows */
@media (max-width: 768px) {
    .hero-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .hero-carousel-arrow.prev {
        left: 10px;
    }
    
    .hero-carousel-arrow.next {
        right: 10px;
    }
}

.hero-carousel-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-arrow.prev {
    left: 20px;
}

.hero-carousel-arrow.next {
    right: 20px;
}

/* Cinematography Video Hero */
.cinematography-video-hero {
    height: 450px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.cinematography-video-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Global Content Width Rules */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 50px 0;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-content {
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    margin-top: 2rem;
    max-width: 100%;
}

/* Full Width Banner Section */
.full-width-banner {
    height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.full-width-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Our Vision Section */
.vision-section {
    background-color: #f8f9fa;
}

.vision-content {
    text-align: center;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.vision-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.vision-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    margin-top: 2rem;
    max-width: 100%;
}

/* Our Services Section */
.services-section {
    background-color: #fff;
}

.services-content {
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.services-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
    max-width: 100%;
}
.services-intro p{
    text-align: center!important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    /* cursor: pointer; */
    /* text-decoration: none; */
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    /* text-decoration: none; */
    color: inherit;
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding-top: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-description {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    /* margin-bottom: 1.5rem; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card-text {
    flex: 1;
    min-height: 120px; /* Fixed height for equal cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}

.service-card-text p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-card-text p:last-child {
    margin-bottom: 0;
}

.read-more-btn {
    background: #000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.read-more-btn:hover {
    background: #333;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Our Gallery Section */
.gallery-section {
    background-color: #f8f9fa;
}

.gallery-content {
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

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

.gallery-item:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #000;
    font-size: 2.5rem;
    font-weight: bold;
}

.view-more-btn {
    background: linear-gradient(135deg, #080808 0%, #7c7c7c 100%);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #000;
    padding: 80px 0;
}

.testimonials-content {
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.testimonials-grid {
    display: flex;
    overflow: visible; /* allow full card and shadows to be visible (no clipping) */
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    position: relative;
    background: #fff;
    /* border-radius: 15px; */
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 6rem;
    z-index: 1;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
}

.testimonial-quote {
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
    margin: 0;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: #ff0000;
    font-weight: bold;
    line-height: 1;
}

.testimonial-quote::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 3rem;
    color: #ff0000;
    font-weight: bold;
    line-height: 1;
}

.testimonial-client {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
    position: absolute;
    bottom: -95px;
    left: 50%; /* center avatar + info under each card */
    transform: translateX(-50%);
    z-index: 20;
}

.testimonial-client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-client-info {
    text-align: left;
}

.testimonial-client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-bottom: 0.3rem;
}

.testimonial-client-role {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

/* Fresh, isolated PP Testimonials (no conflicts) */
.pp-testimonials {
    background: #000;
    padding: 80px 0;
}

.pp-testimonials .pp-head { text-align: center; }
.pp-testimonials .pp-title {
    color: #fff;
    font-size: 2.5rem;
    margin: 0 0 2.5rem 0;
    position: relative;
}
.pp-testimonials .pp-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
}

.pp-slider { overflow: hidden; }
.pp-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s ease;
}

.pp-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    background: #fff;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    position: relative;
    margin-bottom: 6.75rem; /* more space for client info */
}
.pp-card::after{
    content: '';
    position: absolute;
    bottom: -20px; left: 50%; transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
}

.pp-quote{
    position: relative; color:#333; line-height:1.6; font-size:1rem; margin:0; padding:30px 0;
}
.pp-quote::before{ content:'"'; position:absolute; top:-6px; left:-8px; color:#ff0000; font-size:3rem; font-weight:bold; }
.pp-quote::after{ content:'"'; position:absolute; bottom:-8px; right:-8px; color:#ff0000; font-size:3rem; font-weight:bold; }

.pp-client{
    position: absolute; bottom: -95px; left: 50%; transform: translateX(-50%);
    display:flex; align-items:center; gap:1rem;
}
.pp-avatar{ width:60px; height:60px; border-radius:50%; object-fit:cover; border:3px solid #fff; box-shadow:0 4px 15px rgba(0,0,0,.3); }
.pp-client-info{ text-align:left; }
.pp-name{ color:#fff; margin:0 0 .25rem 0; font-weight:700; font-size:1.05rem; }
.pp-role{ color:#ccc; font-size:.9rem; }

.pp-dots{ display:flex; justify-content:center; gap:.5rem; margin-top:2rem; }
.pp-dots .dot{ width:12px; height:12px; border-radius:50%; background:rgba(255,255,255,.3); cursor:pointer; transition:transform .2s ease; }
.pp-dots .dot.active{ background:#fff; transform:scale(1.15); }

@media (max-width: 992px){
    .pp-card{ flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 576px){
    .pp-card{ flex: 0 0 100%; }
    .pp-avatar{ width:45px; height:45px; }
}

/* Why Choose Section */
.why-choose-section {
    background: #fff;
    padding: 4rem 0;
}

.why-choose-content {
    text-align: center;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: #f8f9fa;
    /* border-radius: 10px; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #555555 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.why-choose-content-item {
    flex: 1;
}

.why-choose-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
}

.why-choose-item-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.why-choose-summary {
    background: linear-gradient(135deg, #1d1d1d 0%, #424242 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.why-choose-summary p {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Full Width Banner Section */
.full-width-banner-section {
    margin: 0;
    padding: 0;
}

.full-width-banner {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Our Philosophy Section */
.philosophy-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    min-height: 600px;
}

.philosophy-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 500px;
}

.philosophy-text::-webkit-scrollbar {
    display: none;
}

.philosophy-item {
    padding: 0;
}

.philosophy-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.philosophy-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.philosophy-image {
    position: relative;
}

.philosophy-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    /* border-radius: 15px; */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.philosophy-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-slide.active {
    opacity: 1;
}

.philosophy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.philosophy-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.philosophy-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.philosophy-prev {
    left: 20px;
}

.philosophy-next {
    right: 20px;
}

.philosophy-nav i {
    font-size: 1.2rem;
    color: #333;
}

/* About Candid Photography Section */
.candid-photography-section {
    background: #fff;
    padding: 4rem 0;
}

.candid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
    min-height: 600px;
}

.candid-image {
    position: relative;
}

.candid-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    /* border-radius: 15px; */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.candid-text {
    padding-left: 2rem;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 500px;
}

.candid-text::-webkit-scrollbar {
    display: none;
}

.candid-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.candid-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.candid-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.candid-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.candid-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.candid-description strong {
    color: #333;
    font-weight: 700;
}

/* Final Full Width Banner Section */
.final-banner-section {
    margin: 1rem 0 0 0;
    padding: 0;
}

.final-banner {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.final-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile Responsive Global Rules */
@media (max-width: 768px) {
    .content-container {
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .vision-title {
        font-size: 2rem;
    }
    
    .vision-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-intro {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-card-text {
        min-height: 100px;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0;
    }
}

@media (max-width: 576px) {
    .content-container {
        padding: 0 10px;
    }
    
    .section-padding {
        padding: 30px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .vision-title {
        font-size: 1.8rem;
    }
    
    .vision-text {
        font-size: 0.9rem;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-intro {
        font-size: 0.9rem;
    }
    
    .service-card-image {
        height: 160px;
    }
    
    .service-card-text {
        min-height: 90px;
    }
    
    .service-card-content {
        /* padding: 1rem; */
    }
    
    .gallery-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0;
    }
    
    .view-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
        padding: 1.2rem;
        margin-bottom: 4rem;
    }
    
    .testimonial-client {
        bottom: -50px;
        margin-top: 1.5rem;
        z-index: 20;
    }
    
    /* Mobile: Show 1 testimonial at a time */
    @media (max-width: 576px) {
        .testimonials-grid {
            gap: 1rem;
        }
        
        .testimonial-card {
            flex: 0 0 calc(100%);
            margin-bottom: 5rem;
        }
        
        .testimonial-client {
            bottom: -45px;
            z-index: 20;
        }
        
        .testimonial-client-photo {
            width: 45px;
            height: 45px;
        }
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
    }
    
    .testimonial-client {
        margin-top: 1.5rem;
    }
    
    .testimonial-client-photo {
        width: 45px;
        height: 45px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
    }
    
    .testimonial-client {
        margin-top: 1.5rem;
    }
    
    .testimonial-client-photo {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-client-name {
        font-size: 1rem;
    }
    
    .testimonial-client-role {
        font-size: 0.8rem;
    }
    
    /* Ensure banners are fully visible on small screens */
    .full-width-banner {
        height: auto; /* let image define height */
        overflow: visible; /* prevent cropping */
    }
    .full-width-banner img {
        width: 100%;
        height: auto; /* maintain aspect ratio */
        object-fit: contain; /* show full image */
    }
    /* Final banner - mobile: show full image */
    .final-banner { height: auto; overflow: visible; }
    .final-banner-image { width: 100%; height: auto; object-fit: contain; }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        padding: 1rem;
    }
    
    .why-choose-item-title {
        font-size: 1.1rem;
    }
    
    .why-choose-item-text {
        font-size: 0.9rem;
    }
    
    .why-choose-summary {
        padding: 1.5rem;
    }
    
    .why-choose-summary p {
        font-size: 1rem;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .philosophy-text {
        gap: 2rem;
        overflow-y: visible;
        max-height: none;
    }
    
    .philosophy-title {
        font-size: 1.3rem;
    }
    
    .philosophy-description {
        font-size: 0.95rem;
    }
    
    .philosophy-carousel {
        height: 300px;
    }
    
    .philosophy-nav {
        width: 40px;
        height: 40px;
    }
    
    .philosophy-prev {
        left: 10px;
    }
    
    .philosophy-next {
        right: 10px;
    }
    
    .philosophy-nav i {
        font-size: 1rem;
    }
    
    .candid-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .candid-text {
        padding-left: 0;
        overflow-y: visible;
        max-height: none;
    }
    
    .candid-title {
        font-size: 2rem;
    }
    
    .candid-subtitle {
        font-size: 1.3rem;
    }
    
    .candid-img {
        height: 300px;
    }
    
    .candid-description p {
        font-size: 0.95rem;
    }
    
    /* Tablet: ensure banners are fully visible */
    .full-width-banner { height: auto; overflow: visible; }
    .full-width-banner img { width: 100%; height: auto; object-fit: contain; }
    .final-banner { height: auto; overflow: visible; }
    .final-banner-image { width: 100%; height: auto; object-fit: contain; }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    margin-top: 80px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* Image Cards */
.image-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover .image-wrapper img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover .image-overlay {
    opacity: 1;
}

.image-actions {
    display: flex;
    gap: 1rem;
}

.image-info {
    padding: 1.5rem;
}

.image-info h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.image-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.image-category {
    background: #080808;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 2rem;
    /* border-radius: 10px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 2rem;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: .5rem;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

/* Footer Hero Section */
.footer-hero {
    background: linear-gradient(135deg, #000000 0%, #040404 100%);
    padding: 2rem 0;
    border-bottom: 1px solid #333;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #646464, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 0;
}

.footer-cta {
    text-align: right;
}

.footer-cta h4 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-cta p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-wedding {
    background: linear-gradient(45deg, #bdbdbd, #ffffff);
    border: none;
    color: #000000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-wedding:hover {
    background: linear-gradient(45deg, #252525, #5f5f5f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(202, 202, 202, 0.4);
    color: #fff;
}

/* Footer Main Content */
.footer-main {
    padding: 3rem 0 0rem 0;
}

.footer-main-content {
    border-bottom: 1px solid #333;
    /* padding-bottom: 2rem; */
    margin-bottom: 0;
}

.footer-section {
    margin-bottom: 0;
    padding: 0;
}


.footer-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
    color: #919191;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
    text-decoration: none;
}

.social-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
    align-items: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: .9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.9rem;
    gap: 0.8rem;
}

.footer-contact .contact-item i {
    color: #959595;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact .contact-item span {
    flex: 1;
    line-height: 1.4;
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram { background-color: #e4405f; }
.social-icon.youtube { background-color: #ff0000; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.linkedin { background-color: #0077b5; }
.social-icon.tumblr { background-color: #34465d; }

.contact-info {
    width: 100%;
}

.contact-info .contact-item {
    margin-bottom: 1.5rem;
    line-height: 1.5;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info .contact-item i {
    color: #919191;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-info .contact-item div {
    flex: 1;
    font-size: 14px;
    color: #ccc;
    text-align: start;
}

.contact-info strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}


.copyright-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    position: relative;
}

.copyright-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
}

.copyright-text {
    margin: 0;
    text-align: center;
    color: #ccc;
    font-size: 1rem;
    font-weight: 500;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    left: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.floating-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.floating-btn i {
    position: relative;
    z-index: 1;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.floating-btn:hover::before {
    width: 100%;
    height: 100%;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

.floating-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.phone-btn {
    background-color: #dc3545;
}

.phone-btn:hover {
    background-color: #c82333;
}

.whatsapp-btn {
    background-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.whatsapp-btn:hover svg {
    fill: #fff;
    transform: scale(1.1);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #ffa047 0%, #f07a56 25%, #e63d57 50%, #d6337a 75%, #c62da2 100%);
}

.youtube-btn {
    background-color: #ff0000;
}

.youtube-btn:hover {
    background-color: #e60000;
}

.facebook-btn {
    background-color: #3b5998;
}

.facebook-btn:hover {
    background-color: #2d4373;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #333;
    color: #fff;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control:focus{
    border-color: #000000;
    box-shadow: 0 0 0 .25rem rgba(37, 37, 37, 0.25)
}

.contact-form button {
    background: linear-gradient(135deg, #000000 0%, #747474 100%);
    border-color: #000000;
    outline: none;
}

.contact-form button:hover{

}

.contact-info-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #000000 0%, #747474 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    margin: 0;
    color: #666;
}

.contact-details a {
    color: #0f0f0f;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Map */
.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.page-link {
    color: #080808;
    border-color: #dee2e6;
}

.page-link:hover {
    color: #080808;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-item.active .page-link {
    background-color: #080808;
    border-color: #080808;
}

/* No Images State */
.no-images {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-images i {
    color: #ccc;
    margin-bottom: 1rem;
}

/* Service Details */
.service-details {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.package-list {
    margin-top: 2rem;
}

.package-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #080808;
}

.package-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.package-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.package-item li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.highlight-item i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.sidebar-content {
    position: sticky;
    top: 100px;
}

.sidebar-image img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.sidebar-image:hover img {
    transform: scale(1.05);
}

.contact-cta {
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
}

.contact-cta h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-main-content {
        flex-wrap: wrap;
    }
    
    .footer-main-content > div {
        flex: 1 1 50%;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .modern-mobile-toggle {
        display: flex;
    }
    
    .mobile-nav.show {
        display: block;
        transform: translateY(0);
    }
    
    .logo-image {
        height: 50px;
        max-width: 180px;
    }
    
    .header-content {
        min-height: 70px;
        padding: 5px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-buttons {
        left: 10px;
        bottom: 80px;
        gap: 8px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .whatsapp-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .scroll-to-top {
        right: 10px;
        bottom: 10px;
        width: 45px;
        height: 45px;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-right: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
    }
    
    .contact-details h5 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-hero {
        padding: 2rem 0;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-cta {
        text-align: center;
    }
    
    .footer-brand-title {
        font-size: 2rem;
    }
    
    .footer-cta h4 {
        font-size: 1.5rem;
    }
    
    .social-icons-row {
        justify-content: start;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    /* Mobile: Quick Links and Services in same row */
    .footer-main-content .col-6 {
        padding: 0 10px;
    }
    
    /* Mobile Title Alignment - Removed Conflicting */
}

@media (max-width: 768px) {
    /* Mobile Footer Layout - Clean */
    .footer-main-content {
        display: block;
    }
    
    /* Mobile Title Alignment - All Left */
    .footer-main-content .footer-title {
        text-align: left !important;
    }
    
    .footer-main-content .footer-links {
        text-align: left !important;
    }
    
    .footer-main-content .contact-info {
        text-align: left !important;
    }
    
    .footer-main-content .social-links {
        text-align: left !important;
    }
    
    .footer-main-content .footer-contact {
        text-align: left !important;
    }
    
    /* Mobile Inline Layout */
    .contact-info .contact-item {
        display: flex !important;
        align-items: center !important;
        flex-direction: row !important;
    }
    
    .footer-contact .contact-item {
        display: flex !important;
        align-items: center !important;
        flex-direction: row !important;
    }
}

@media (max-width: 576px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .image-info {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.8rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
    }
    
    .contact-details h5 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    /* Mobile Footer */
    .footer-hero {
        padding: 1.5rem 0;
    }
    
    .footer-brand-title {
        font-size: 1.5rem;
    }
    
    .footer-cta h4 {
        font-size: 1.2rem;
    }
    
    .footer-main {
        padding: 1rem 0;
    }
    
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-contact .contact-item {
        font-size: 0.8rem;
    }
    
    /* Mobile Footer - Clean */
    .footer-main-content .col-6 {
        padding: 0 5px;
    }
    
    /* Small Mobile Title Alignment - All Left */
    .footer-main-content .footer-title {
        text-align: left !important;
    }
    
    .footer-main-content .footer-links {
        text-align: left !important;
    }
    
    .footer-main-content .contact-info {
        text-align: left !important;
    }
    
    .footer-main-content .social-links {
        text-align: left !important;
    }
    
    .footer-main-content .footer-contact {
        text-align: left !important;
    }
    
    /* Small Mobile Inline Layout */
    .contact-info .contact-item {
        display: flex !important;
        align-items: center !important;
        flex-direction: row !important;
    }
    
    .footer-contact .contact-item {
        display: flex !important;
        align-items: center !important;
        flex-direction: row !important;
        text-align: start;
    }
}

/* Wedding & Pre-Wedding Client Gallery */
.wedding-gallery-section, .prewedding-gallery-section {
    background: #fff;
    padding: 4rem 0;
}

.wedding-gallery-content, .prewedding-gallery-content {
    text-align: center;
}

.wedding-gallery-title, .prewedding-gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.wedding-gallery-title::after, .prewedding-gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.wedding-gallery-grid, .prewedding-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    /* margin-bottom: 3rem; */
    align-items: stretch;
}

.wedding-gallery-grid {
    /* margin-bottom: 1rem; */
}

.wedding-client-card-link, .prewedding-client-card-link {
    display: flex;
    height: 100%;
}

.wedding-client-card, .prewedding-client-card {
    background: #fff;
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.wedding-client-card:hover, .prewedding-client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.wedding-client-image, .prewedding-client-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.wedding-client-image img, .prewedding-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wedding-client-card:hover .wedding-client-image img,
.prewedding-client-card:hover .prewedding-client-image img {
    transform: scale(1.05);
}

.wedding-client-info, .prewedding-client-info {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wedding-client-name, .prewedding-client-name {
    font-size: .8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wedding-photo-count, .prewedding-photo-count {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.wedding-gallery-controls, .prewedding-gallery-controls {
    text-align: center;
    margin-top: 1rem;
}

.wedding-show-more-btn, .prewedding-show-more-btn {
    background: linear-gradient(135deg, #252525 0%, #818181 100%);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.wedding-show-more-btn:hover, .prewedding-show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .wedding-gallery-grid, .prewedding-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wedding-gallery-title, .prewedding-gallery-title {
        font-size: 2rem;
    }
    
    .wedding-gallery-grid, .prewedding-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .wedding-client-image, .prewedding-client-image {
        height: 180px;
    }
    
    .wedding-client-info, .prewedding-client-info {
        padding: 1rem;
    }
    
    .wedding-client-name, .prewedding-client-name {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .wedding-gallery-grid, .prewedding-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .wedding-client-image, .prewedding-client-image {
        height: 250px;
    }
}

/* About Pre Wedding Content Section */
.about-prewedding-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

/* About Wedding Content Section */
.about-wedding-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.about-wedding-content {
    text-align: center;
}

.about-wedding-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.about-wedding-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.about-wedding-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

.about-wedding-text p {
    margin-bottom: 1.5rem;
}

.about-prewedding-content {
    text-align: center;
}

.about-prewedding-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.about-prewedding-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.about-prewedding-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

.about-prewedding-text p {
    margin-bottom: 1.5rem;
}

/* Why Choose Pre Wedding Section */
.why-choose-prewedding-section {
    background: #fff;
    padding: 4rem 0;
}

.why-choose-prewedding-content {
    text-align: center;
}

.why-choose-prewedding-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.why-choose-prewedding-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.why-choose-prewedding-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-choose-prewedding-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-prewedding-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-choose-prewedding-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.why-choose-prewedding-content-item {
    flex: 1;
}

.why-choose-prewedding-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
}

.why-choose-prewedding-item-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Consultation Section */
.consultation-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.consultation-content {
    text-align: center;
}

.consultation-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.consultation-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.consultation-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.consultation-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.consultation-step:hover {
    transform: translateY(-3px);
}

.consultation-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.consultation-step-content {
    flex: 1;
}

.consultation-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
}

.consultation-step-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pre Wedding Content Section */
.prewedding-content-section {
    background: #fff;
    padding: 4rem 0 0 0;
}

.prewedding-content {
    text-align: center;
}

.prewedding-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.prewedding-content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.prewedding-content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

.prewedding-content-text p {
    margin-bottom: 1.5rem;
}

/* Wedding Content Section */
.wedding-content-section {
    background: #fff;
    padding: 4rem 0 0 0;
}

.wedding-content {
    text-align: center;
}

.wedding-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.wedding-content-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.wedding-content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

.wedding-content-text p {
    margin-bottom: 1.5rem;
}

/* Image Content Section */
.image-content-section {
    background: #fff;
    /* padding: 4rem 0; */
}

.image-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.image-content-image {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-content-image:hover img {
    transform: scale(1.05);
}

.image-content-text {
    /* padding: 2rem 0; */
    height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.image-content-text::-webkit-scrollbar {
    display: none; /* WebKit */
}

.image-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.image-content-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.image-content-description p {
    margin-bottom: 1.5rem;
}

.image-content-description p:last-child {
    margin-bottom: 0;
}

/* Consultation Process Section */
.consultation-process-section {
    background: #fff;
    padding: 2rem 0 4rem 0;
}

.consultation-process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.consultation-process-text {
    padding: 1rem 0;
    height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.consultation-process-text::-webkit-scrollbar {
    display: none; /* WebKit */
}

/* Best Locations Section */
.best-locations-section {
    background: #fff;
    padding: 4rem 0;
}

.best-locations-content {
    text-align: center;
}

.best-locations-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.best-locations-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.best-locations-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
    margin-bottom: 3rem;
}

.best-locations-text p {
    margin-bottom: 1.5rem;
}

.best-locations-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 2rem 0 1rem 0;
}

.best-locations-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.location-image-item {
    position: relative;
    overflow: hidden;
    /* border-radius: 10px; */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-image-item:hover {
    transform: translateY(-5px);
}

.location-image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-image-item:hover img {
    transform: scale(1.05);
}

/* Floating Contact Icons */
.floating-contact-icons {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.floating-contact-icons.right {
    left: auto;
    right: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.phone-icon {
    background: #ff4444;
}

.whatsapp-icon {
    background: #25d366;
}

.we-are-here-icon {
    background: #25d366;
    position: relative;
    padding: 10px;
    flex-direction: column;
    width: auto;
    height: auto;
    min-width: 60px;
}

.we-are-here-text {
    font-size: 0.7rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-top: 5px;
}

.notification-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid #fff;
}

.consultation-process-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.consultation-process-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.consultation-process-content p {
    margin-bottom: 1.5rem;
}

.consultation-process-content p:last-child {
    margin-bottom: 0;
}

.consultation-process-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 2rem 0 0.8rem 0;
}

.consultation-process-subtitle:first-of-type {
    margin-top: 0;
}

.consultation-process-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consultation-process-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.consultation-process-image:hover img {
    transform: scale(1.05);
}

/* Locations Section */
.locations-section {
    background: #fff;
    padding: 4rem 0;
}

.locations-content {
    text-align: center;
}

.locations-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.locations-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.locations-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

/* Cinematography Video Hero */
.cinematography-video-hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

/* Video Gallery Section */
.cinematography-video-gallery {
    background: #f8f9fa;
}

.video-gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.video-gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.video-gallery-item {
    background: #fff;
    /* border-radius: 12px; */
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-gallery-item:hover {
    transform: translateY(-5px);
}

.video-iframe-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    /* border-radius: 8px; */
    border: none;
}

.video-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* border-radius: 8px; */
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 1.5rem;
    margin: 0;
    line-height: 1.4;
}

/* Load More Videos Button */
.load-more-videos-container {
    margin-top: 3rem;
}

.load-more-videos-btn {
    background: linear-gradient(135deg, #080808 0%, #505050 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.load-more-videos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.load-more-videos-btn:active {
    transform: translateY(0);
}

.btn-loading {
    display: none;
}

.load-more-videos-btn.loading .btn-text {
    display: none;
}

.load-more-videos-btn.loading .btn-loading {
    display: inline-block;
}

/* Fade In Animation for Loaded Videos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Cinematography Section */
.about-cinematography-section {
    background: #fff;
}

.about-cinematography-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.about-cinematography-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.about-cinematography-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

/* Cinematography Services Section */
.cinematography-services-section {
    background: #f8f9fa;
}

.cinematography-services-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.cinematography-services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.cinematography-services-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

/* Experience Section */
.cinematography-experience-section {
    background: #fff;
}

.cinematography-experience-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.cinematography-experience-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.cinematography-experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

/* Cinematography and Videography Section */
.cinematography-videography-section {
    background: #ffffff;
}

.cinematography-videography-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.cinematography-videography-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.cinematography-videography-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

/* Cinematography Banner with Padding */
.cinematography-banner-section {
    background: #f8f9fa;
}

.cinematography-banner-content {
    text-align: center;
}

.cinematography-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cinematography-banner-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Experience Video Gallery */
.experience-video-gallery {
    background: #f8f9fa;
}

.experience-video-slider {
    position: relative;
}

.experience-video-container {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.experience-video-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.experience-video-item {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 0;
    border: none;
    box-shadow: none;
}

.experience-video-item {
    background: #fff;
    border: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.experience-video-item:hover {
    transform: translateY(-3px);
}

.experience-video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.experience-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-video-item:hover .experience-video-thumbnail img {
    transform: scale(1.05);
}

.experience-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-video-play i {
    font-size: 16px;
    color: #fff;
    margin-left: 2px;
}

.experience-video-item:hover .experience-video-play {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.experience-video-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.experience-video-logo img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.experience-video-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    padding: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Experience Slider - New Design */
.experience-video-slider-wrapper {
    position: relative;
    margin-top: 2rem;
}

.experience-video-slider {
    overflow: hidden;
    border-radius: 8px;
}

.experience-video-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.experience-video-item {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: 0;
    border: none;
    box-shadow: none;
}

.experience-slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.experience-slider-prev,
.experience-slider-next {
    width: 50px;
    height: 50px;
    background: #080808;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.experience-slider-prev:hover,
.experience-slider-next:hover {
    background: #333;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.experience-slider-prev i,
.experience-slider-next i {
    font-size: 16px;
}

.experience-slider-prev:hover,
.experience-slider-next:hover {
    background: #080808;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.experience-slider-prev i,
.experience-slider-next i {
    font-size: 14px;
    color: #333;
}

.experience-slider-prev:hover i,
.experience-slider-next:hover i {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-prewedding-title, .why-choose-prewedding-title, .consultation-title, .locations-title, .prewedding-content-title, .about-wedding-title, .wedding-content-title, .our-gallery-title, .best-candid-title, .best-wedding-photography-title, .image-content-title, .consultation-process-title, .best-locations-title, .video-gallery-title, .about-cinematography-title, .cinematography-services-title, .cinematography-experience-title, .cinematography-videography-title {
        font-size: 1.5rem !important;
    }
    
    .gallery-images-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem;
    }
    
    .gallery-image-item img {
        height: 200px;
    }
    
    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .video-thumbnail {
        height: 150px;
    }
    
    .video-title {
        font-size: 14px;
        padding: 1rem;
    }
    
    .experience-video-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .experience-video-thumbnail {
        height: 150px;
    }
    
    .experience-video-title {
        font-size: 12px;
        padding: 0.8rem;
    }
    
    .why-choose-prewedding-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consultation-steps {
        gap: 1.5rem;
    }
    
    .consultation-step {
        flex-direction: column;
        text-align: center;
    }
    
    .consultation-step-number {
        align-self: center;
    }
    
    .image-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-content-image img {
        height: 300px;
    }
    
    .image-content-text {
        height: 300px;
    }
    
    .image-content-title {
        font-size: 1.8rem;
    }
    
    .consultation-process-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-process-image img {
        height: 300px;
    }
    
    .consultation-process-text {
        height: 300px;
    }
    
    .consultation-process-title {
        font-size: 1.8rem;
    }
    
    .best-locations-title {
        font-size: 2rem;
    }
    
    .best-locations-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-image-item img {
        height: 250px;
    }
    
    .floating-contact-icons {
        top: 15px;
        left: 15px;
    }
    
    .floating-contact-icons.right {
        right: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-prewedding-title, .why-choose-prewedding-title, .consultation-title, .locations-title, .prewedding-content-title, .about-wedding-title, .wedding-content-title, .our-gallery-title, .best-candid-title, .best-wedding-photography-title, .image-content-title, .consultation-process-title, .best-locations-title, .video-gallery-title, .about-cinematography-title, .cinematography-services-title, .cinematography-experience-title, .cinematography-videography-title {
        font-size: 1.5rem !important;
    }
    
    .gallery-images-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
    }
    
    .video-gallery-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 1rem;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-title {
        font-size: 14px;
        padding: 1rem;
    }
    
    .gallery-image-item img {
        height: 200px;
    }
    
    .gallery-hover-overlay i {
        font-size: 1.5rem;
    }
    
    .why-choose-prewedding-item, .consultation-step {
        padding: 1rem;
    }
    
    .image-content-image img {
        height: 250px;
    }
    
    .image-content-text {
        height: 250px;
    }
    
    .image-content-title {
        font-size: 1.6rem;
    }
    
    .consultation-process-image img {
        height: 250px;
    }
    
    .consultation-process-text {
        height: 250px;
    }
    
    .consultation-process-title {
        font-size: 1.6rem;
    }
    
    .best-locations-title {
        font-size: 1.8rem;
    }
    
    .best-locations-subtitle {
        font-size: 1.5rem;
    }
    
    .location-image-item img {
        height: 200px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .we-are-here-text {
        font-size: 0.6rem;
    }
}

/* Our Gallery Section */
.our-gallery-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.our-gallery-content {
    text-align: center;
}

.our-gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.our-gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.our-gallery-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

.our-gallery-text p {
    margin-bottom: 1.5rem;
}

/* Gallery Images Grid */
.gallery-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

/* Mobile First - Override for smaller screens */
@media (max-width: 768px) {
    .gallery-images-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .gallery-images-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
    }
}

.gallery-image-item {
    position: relative;
    overflow: hidden;
    /* border-radius: 8px; */
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-item:hover img {
    transform: scale(1.05);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-image-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-hover-overlay i {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #5c5c5c;
}

.lightbox-title {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Best Candid Section */
.best-candid-section {
    background: #fff;
    padding: 4rem 0;
}

.best-candid-content {
    text-align: center;
}

.best-candid-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.best-candid-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.best-candid-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

.best-candid-text p {
    margin-bottom: 1.5rem;
}

/* Best Wedding Photography Section */
.best-wedding-photography-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.best-wedding-photography-content {
    text-align: center;
}

.best-wedding-photography-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.best-wedding-photography-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #080808 0%, #764ba2 100%);
}

.best-wedding-photography-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    max-width: 100%;
}

.best-wedding-photography-text p {
    margin-bottom: 1.5rem;
}

/* Global Mobile Title Override - All Left */
@media (max-width: 768px) {
    .footer-main-content .footer-title {
        text-align: left !important;
    }
    
    .footer-main-content .footer-links {
        text-align: left !important;
    }
    
    .footer-main-content .contact-info {
        text-align: left !important;
    }
    
    .footer-main-content .social-links {
        text-align: left !important;
    }
    
    .footer-main-content .footer-contact {
        text-align: left !important;
    }
    
    /* Cinematography Hero Video - Mobile */
    .cinematography-video-hero {
        height: 40vh;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .cinematography-video-hero {
        height: 40vh;
        min-height: 250px;
    }
}
