*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ysabeau Infant', sans-serif;
}

body {
    background-color: #f1faee;
   
}
:root{
    --primary-color:#e4e4e4;
    --secondary-color:#1f1f1f;
}
/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 100;
}
.headers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 100;
    background-color: #000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

.social {
    display: flex;
    gap: 25px;
}

.social a {
    text-decoration: none;
    font-size: 25px;
    color: #fff; /* Default color */
    transition: color 0.3s ease-in-out, transform 0.2s;
}

.social a:hover {
    color: #007bff; /* Change color on hover */
    transform: scale(1.2); /* Slight zoom effect */
}


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.heros{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url('pre-wedding/_SHR0612.webp'); 
    background-size: cover;
    background-position: center; 
    display: flex;
    align-items: center; 
    justify-content: center;
}
.heros::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Overlay with opacity */
    z-index: 1;
}
.heros h1{
    font-size: 80px;
    font-weight: bolder;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    
}
.slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slides img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.slides img.active {
    opacity: 1;
}

/* Thumbnail Circles */
.thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.thumbnails img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    opacity: 0.7;
}

.thumbnails img:hover {
    opacity: 1;
}
p {
    font-family: 'Ysabeau Infant', sans-serif;
    font-size: 21px;
    margin-bottom: 12px;
    color: #000;
    font-weight: 500;
}
h2{
   color: var(--secondary-color);
   font-weight: 700;
   font-size: 43px; 
   margin-bottom: 35px;
}
#white-h2{
    color:#fff;
    font-weight: 700;
    font-size: 53px; 
    margin-bottom: 35px;
 }
 #white-small-h2{
    color:#fff;
    font-weight: 700;
    font-size: 33px; 
    margin-bottom: 35px;
 }
 .menu-icon {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 110;
  }
  #nav-menu {
    transition: right 0.3s ease-in-out;
  }
/* About Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    overflow: hidden;
}

/* Background Moving Text (Above Image & Text) */
.about-background-text {
    position: absolute;
    top: 19%;
    left: 100%;
    font-size: 180px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.07); /* Light grey text */
    white-space: nowrap;
    transform: translateY(-50%);
    z-index: 1; /* Ensures it appears above */
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 80%;
    position: relative;
    z-index: 2; /* Content appears above background text */
}

/* Image */
.about-img img {
    width: 600px;
    transform: rotate(-6deg);
    border-radius:11px;
}

/* Service Section */
.services {
    text-align: center;
    padding: 60px 20px;
    background: var(--secondary-color);
}
.service {
    text-align: center;
    padding: 60px 20px;
    background: var(--primary-color);
}

/* Service Box Layout */
.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-box {
    background: #d8d8d8;
    padding: 20px 20px 20px 20px;
    width: 380px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.services-box {
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    gap:15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 20px 20px 20px 20px;
    width: 380px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}
.services-box img {
    width: 100%;
    height:270px;
    border-radius: 5px;
}
.service-box img {
    width: 100%;
    height:270px;
    border-radius: 5px;
}

/* Service Titles */
.service-box h3 {
    font-size: 24px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--secondary-color);
    margin-top: 15px;
}

/* View Full Services Button */
.view-all-btn {
    margin-top: 30px;
}

.view-all-btn a {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.view-all-btns {
    margin-top: 30px;
}

.view-all-btns a {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.gallery-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 40px 0;
}

.gallery-container img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
    border-radius: 5px;
}

/* Testimonial Section */
.testimonial-section {
    text-align: center;
    padding: 60px 20px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-box {
    background: var(--secondary-color);
    padding: 90px 30px;
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 19px;
    margin-bottom: 15px;
    color:#fff;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
}

.user-name {
    font-size: 15px;
    font-weight: bold;
}

/* Footer Section */
.footer {
    background: black;
    padding: 70px 20px;
    text-align: center;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    text-align: left;
}

.footer-logo img{
   width:260px; 
}

.footer-description {
    font-size: 19px;
    color: white;
}

.footer-column h4 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: white;
}

.footer-column a {
    display: block;
    color: #bbb;
    text-decoration: none;
    font-size: 19px;
    margin-bottom: 5px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column p {
    font-size: 19px;
    color: #b3b3b3;
}
.faq-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('pre-wedding/_MPN3353.webp'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  display: flex;
  justify-content: flex-end;
}

.faq-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: flex-end;
}

.faq-box {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}


.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  color: white;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
}

.faq-toggle {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.fixed-bg-section {
    position: relative;
    background: url('pre-wedding/MATHRUJA\ PHOTOGRAPHY-05737.webp') center/cover fixed no-repeat;
    height: 550px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: 400;
    padding: 50px;
}

.fixed-bg-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity here */
    z-index: 1;
}

.fixed-bg-section .content {
    position: relative;
    z-index: 2;
}
.fixed-bg-section h2{
    font-family: inherit;
    font-weight: 300;
    font-size: 49px;
    
}
.portfolio-section{
    padding:100px 40px 60px 40px;
}
.portfolio-container{
    display: flex;
    gap:18px;
}
.col-3-1{
    flex-basis: 45%;
}
.col-3{
    flex-basis: 15%;
}
.col-3 img{
    width:310px;
    height:400px;
    border-radius: 9px;
}
.prewed-section{
    padding:50px 90px 50px 45px;
    display: flex;
    gap:45px;
}
.prewed-sections{
    display: none;
}
.col-2{
    flex-basis: 50%;
}
.col-2 img{
    width:600px;
} 
.col-2-1{
    flex-basis: 50%;
    padding-right: 40px;
}
.col-2-2{
    flex-basis: 50%;
}

.col-2-2 img{
    width:600px;
}
.why-choose-us-section{
    display: flex;
    position: relative;
    padding:90px 40px 200px 40px;
}
#img1{
    position: absolute;
    z-index: 1;
    right:26%;
    top:30%;
    width:300px;
}
#img2{    
    position: absolute;
    z-index: 0;
    right:10%;
    width:300px;
}
.welcome-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:50px 180px;
    text-align: center;
}
#black-h1{
   color: #000;
   font-size: 53px;
   justify-self: center;
   margin-bottom: 20px;
}
.our-mission{
    display: flex;
    padding:60px 100px;
}
.our-mission .col img{
    border-radius: 35px 0px 35px 0px;
    width: 500px;
}
.col{
    flex-basis: 50%;
}
.why-choose-section {
    padding: 60px 40px;
    text-align: center;
}

.icon-box-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.icon-box {
    background-color: var(--secondary-color);
    padding: 30px 20px;
    border-radius: 10px;
    width: 330px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.icon-box .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.icon-box h3 {
    font-size: 23px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.icon-box p {
    color: var(--primary-color);
    margin-bottom: 10px;
}
.ctn-us{
    display: flex;
    padding:50px 120px;
    gap:0px;
}
.ctn1{
    flex-basis: 40%;
    align-items: center;
    padding-top:30px;
}
.ctn2{
    flex-basis: 60%;
    background-color: var(--secondary-color);
    color: #fff;
    padding:40px 29px 40px 30px;
    border-radius: 12px;
}
.ctn2 .logo img{
     width: 100px;
}
.ctn2 h3{
    font-size: 29px;
    margin-bottom: 25px;
}
.ctn2 p{
    color: #fff;
    margin-bottom: 25px;
}
.ctc-us a {
    display: inline-block;
    background: #fff;
    color: #502b2b;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}
.ctc-us{
    margin-bottom: 30px;
}
.wed-highlights {
    text-align: center;
    padding: 60px 20px;
  }
  
  .wed-highlights h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .video-box {
    width: 30%;
  }
  
  .video-box iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
  }
  
  .yt-btn {
    margin-top: 40px;
  }
  
  .yt-btn a {
    background-color: #ff0000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .yt-btn a:hover {
    background-color: #cc0000;
  }
  .fixed .fixed-bg-section{
    background: url('bday2.jpg') center/cover fixed no-repeat;
  }
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 60px 10%;
    background-color: #f8f8f8;
  }
  
  .contact-left {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-left h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #333;
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .icon-boxs {
    width: 70px;
    height: 30px;
    border: 1px solid #502b2b;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    color: #502b2b;
    padding:25px;
    background-color: #cea07e;
  }
  
  
  .info-text h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
  }
  
  .info-text p {
    margin: 5px 0 0;
    color: #666;
  }
  
  .contact-right {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-right form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-right input,
  .contact-right textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  .contact-right button {
    padding: 12px;
    background-color: #502b2b;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .contact-right button:hover {
    background-color: #555;
  }
  .map-container {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  
  .gallery-tabs .tab {
    padding: 10px 18px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
  }
  
  .gallery-tabs .tab.active {
    background-color: #8B4513; /* Brown */
    color: white;
  }
  
  .image-grid {
    display: none;
    column-count: 3; /* Adjust based on screen size */
    column-gap: 12px;
    padding:15px 40px;
  }
  
  .image-grid img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
  }
  
  .active-gallery {
    display: block;
  }
  
  @media (max-width: 768px) {
      *{
   font-family: 'Ysabeau Infant';
}
    .menu-icon {
      display: block;
    }
  
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* or center if you want vertical centering */
        padding-top: 100px;
        z-index: 100;
        transition: right 0.3s ease;
        /* padding-left: 120px; <-- REMOVE THIS */
      }
    .thumbnails img {
        width: 65px; 
        height: 65px; 
    }
    nav ul {
      flex-direction: column;
      gap: 40px;
    }
    nav ul li a {
      font-size: 24px;
    }
  
    nav.show {
      right: 0;
    }
    .social{
        display: none;
    }
   
   h2, #white-h2, #white-small-h2{
        font-size: 31px; 
   }
   .hero {
        height: 96vh;
        overflow: hidden;
    }   
    .slides img {
        width: 100%;
        height: 96%;
   }
    .about-hero {
        height: auto;
        padding: 40px 20px;
    }
    .about-text{
        text-align: center;
    }
    .about-background-text {
        display: none;
    }

    .about-container {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .about-img img {
        width: 100%;
        transform: rotate(0deg);
        border-radius: 8px;
    }

    .about-text p {
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
        padding: 0 10px;
    }
    .gallery-container {
        display: none;
    }

    .gallery-container img {
        height: 180px;
        border-radius: 4px;
    }
    .portfolio-section{
        padding: 20px;
    }
    .portfolio-container {
        flex-direction: column;
        align-items: center;
    }
    
    .col-3-1 {
        flex-basis: 100%;
        text-align: center;
    }

    .view-all-btn a {
        font-size: 16px;
        padding: 10px 20px;
        display: inline-block;
        margin-top: 15px;
    }
    .prewed-section {
        display: none;
    }
    .prewed-sections {
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        text-align: center;
    }

    .col-2 {
        flex-basis: 100%;
    }

    .col-2 img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .view-all-btn a {
        font-size: 16px;
        padding: 10px 20px;
        display: inline-block;
        margin-top: 15px;
    }
    .why-choose-us-section {
        flex-direction: column;
        padding: 50px 20px;
    }

    .col-2-1 {
        width: 100%;
        text-align: center;
    }

    .col-2-2 {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    #img1{
        display: none;
    }
     #img2 {
        position: static;
        width: 85%;
        max-width: 320px;
        z-index: auto;
    }

    .why-choose-us-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    p {
        font-size: 18px;
        line-height: 1.5;
    }
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .testimonial-box {
        padding: 50px 25px;
        max-width: 90%;
    }

    .testimonial-text {
        font-size: 17px;
    }

    .user-name {
        font-size: 14px;
    }
    .fixed-bg-section {
        background: url('pre-wedding/MATHRUJA PHOTOGRAPHY-05630.JPG') center/cover fixed no-repeat;
        height: 400px;
        padding: 30px 20px;
    }
    .faq-question{
        font-size: 19px;
    }
    .faq-section{
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('pre-wedding/_MPN4197.jpg');
    }
    .footer-container {
        grid-template-columns: 1fr; /* Stack columns */
        text-align: center;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-column h4 {
        font-size: 20px;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-description {
        font-size: 16px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 15px;
    }
    .heros {
    padding-left: 0;
    height: 65vh;
    text-align: center;
  }

  .heros h1 {
    font-size: 36px;
  }

  .welcome-section {
    padding: 30px 20px;
  }

  #black-h1 {
    font-size: 29px;
  }

  .our-mission {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
    text-align: center;
  }

  .our-mission .col img {
    width: 100%;
  }

  .icon-box-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .icon-box {
    width: 100%;
    max-width: 330px;
  }
  .ctn-us {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .ctn1 iframe {
    width: 100%;
    height: auto;
  }

  .ctn2 {
    padding: 30px 20px;
    text-align: center;
  }

  .ctn2 h3 {
    font-size: 24px;
  }

  .ctn2 .logo img {
    margin-bottom: 20px;
  }

  .video-grid {
    flex-direction: column;
    gap: 20px;
  }

  .video-box {
    width: 100%;
  }

  .video-box iframe {
    height: 220px;
  }

  .yt-btn {
    margin-top: 30px;
  }

  .yt-btn a {
    padding: 10px 25px;
    font-size: 16px;
  }
   .image-grid {
    column-count: 2;
    padding: 12px 20px;
  }

  .gallery-tabs .tab {
    font-size: 14px;
    padding: 6px 12px;
  }
  .contact-section {
    display: block;
    padding: 40px 20px;
    background-color: #f8f8f8;
  }

  .contact-left {
    width: 100%;
    margin-bottom: 30px;
  }

  .contact-left h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
  }

  .contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .icon-boxs {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cea07e;
    color: #502b2b;
    font-size: 18px;
    margin-right: 15px;
  }

  .info-text h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
  }

  .info-text p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
  }

  .contact-right {
    width: 100%;
  }

  .contact-right form {
    display: flex;
    flex-direction: column;
  }

  .contact-right input,
  .contact-right textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .contact-right button {
    padding: 12px;
    font-size: 16px;
    background-color: #502b2b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .contact-right button:hover {
    background-color: #444;
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    
  }
  }