@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap"); /* RESET CODE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Plus Jakarta Sans", serif;
  font-weight: 300;
  font-style: normal;
}
html{
  scroll-behavior: smooth;
}
.WHATSAPP-ICON {
  position: fixed;
  z-index: 1000;
  bottom: 1rem;
  right: 1rem;
  font-size: 2.9rem;
  cursor: pointer;
  color: #00d34d;
}
/* ================== BASIC CODES ================== */
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-col{
  display: flex;
  flex-direction: column;
}
.stay-center {
  max-width: 80rem;
  margin: auto;
}
.margin-both-side {
  margin-inline: 1rem;
}
.nav-color {
  background-color: #ffd6bc;
  box-shadow: 2px 5px 10px #52515140;
}
a {
  text-decoration: none;
  color: #000;
}
li {
  list-style: none;
}
.Highlights-text {
  color: #b7476d;
}
.border-round {
  border-radius: 0.8rem;
}
.white-color {
  color: #fff;
}

/* ================== NAVBAR STYLING ================== */
.nav-logo img {
  display: flex;
  width: 200px;
  aspect-ratio: 375/147;
}

/* This is for Big Screens Navbar Code */
.nav-link-lists li a {
  font-size: 1.1rem;
  font-weight: 600;
}
.link-padding {
  padding: 1rem;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
}
.link-padding:hover,
.submenu-1 a:hover {
  background-color: #ffffff;
}
.nav-link-lists {
  display: flex;
  gap: 0.3rem;
}

/* SUBMENU SECTION HERE */
.explore-link {
  position: relative;
}
.explore {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
}
.explore i {
  /* align-items: center; */
  position: relative;
  top: 1px;
  left: 4px;
}
.dropdown-menu {
  position: absolute;
  top: 4rem;
  background-color: #ffd6bc;
  border: 1px solid #d6c5c58a;
  border-radius: 0.2rem;
  width: 250px;
  justify-content: center;
  opacity: 0;
  visibility: hidden; /* Use visibility instead of display */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
  /* justify-content: space-between; */
  align-items: start;
  z-index: 1000;
  left: -2rem;
}
.submenu-1 {
  padding: 1rem 1rem;
  flex-direction: column;
  text-align: left;
  align-items: start;
}
.submenu-1 a {
  border-radius: 0.2rem;
  padding: 1rem;
}

/* Show dropdown on hover */
.explore-link:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: flex;
}

/* ================== HAMBURGER STYLING ================== */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

/* This is for hiding hamburger icon */
.hamburger {
  display: none;
}
.fixed-navbar{
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  height: 5.2rem;
}
.nav-child-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-inline: 2rem;
  align-items: center;
}
.hamburger span {
  display: block;
  height: 3px;
  background-color: #3a3a3a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(20px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
}
#checkbox {
  display: none;
}

/* Social media logos */
.social-media-icons {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
  align-items: center;
  justify-content: center;
}
.social-media-icons a i {
  font-size: 1.5rem;
}
.youtube {
  color: #ff0000;
}
.pinterest {
  color: #e00000;
}
.facebook {
  color: #1862ec;
}
.instagram {
  color: #ff009d;
}
.social-media-icons a i:hover {
  border-bottom: none;
}

/* Hover effect */
.youtube:hover,
.pinterest:hover,
.facebook:hover,
.instagram:hover {
  color: #101010;
}

/* ================== HERO SECTION STYLING ================== */
.main-margin-top{
  margin-top: 7.5rem;
}
.card-container {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}
.card {
  position: relative;
  width: 290px;
  height: 330px;
  border-radius: 10px;
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover img {
  transform: scale(1.2);
}
.card-text {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgb(250, 250, 250);
  color: #000;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.8rem 0;
  transition: bottom 0.4s ease;
}
.card:hover .card-text {
  bottom: 0;
}

/* ================== This is for About Us Section ================== */
.about-headings {
  text-align: start;
  margin-top: 5rem;
}
.web-headings {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #000;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
/* For the Underline */
.web-headings::after {
  content: "";
  display: block;
  width: 80px;
  height: 2.2px;
  background-color: #ac4f16;
  margin-top: 0.2rem;
}
.about-headings h2 {
  font-size: 3rem;
  font-weight: 400;
  color: #000;
}
/* For the Video */
.video-container {
  overflow: hidden;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  position: relative;
}
/* Play/Pause Button */
.play-pause-btn {
  position: absolute;
  bottom: 10px;
  background-color: rgba(0, 0, 0, 0.422);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.about-video {
  width: 30%;
  border-radius: 10px;
  aspect-ratio: 9/16;
}

/* ================== THIS IS FOR QUICK START OR [GET STARTED] SECTION ================== */
.quick-all-content {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.599), rgba(0, 0, 0, 0.599)),
  url("./assats/image/newborn-img/img-12.webp") top/cover no-repeat;
  color: white;
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
}
.quick-all-content h4 {
  letter-spacing: 5px;
  font-weight: 300;
}
.quick-all-content h3 {
  font-size: 2.9rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.quick-all-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.quick-all-content p,
.quick-all-content h3,
.quick-all-content h4 {
  text-align: center;
  margin-top: 4rem;
}
.quick-start-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 3rem;
}
.btn {
  background-color: #ffffff;
  border: 1px solid #ffffff00;
  color: #000000;
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  color: #fff;
  border: 1px solid #fff;
  background-color: #ffffff00;
}
.call-btn {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.6rem 0.88rem;
  border-radius: 30px;
  font-size: 1rem;
  transition: 0.3s;
}
.call-btn:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.social-links {
  margin-top: 5rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.social-links a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: 0.3s;
}
.social-links a:hover {
  color: #bdbdbd;
}

/* ================== This is for About Us Section ================== */
#ABOUT_US_SECTION {
  scroll-margin-top: 4rem;
}
#ABOUT_US_SECTION {
  margin: 5rem 0;
  background-color: #fef8f2;
  padding: 4rem 0;
}
.about-us-container {
  width: 100%;
}
.about-us-content {
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
}
.about-us-image {
  width: 30%;
}
.photographer-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.photographer-image:hover {
  transform: scale(1.02);
}
.about-us-right-text {
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
}
.about-us-heading h2 {
  font-weight: 600;
  font-size: 2.2rem;
  margin-top: 1rem;
  text-wrap: balance;
}
.about-us-text {
  line-height: 1.6;
  color: #444;
}
.lets-chat-btn {
  background-color: #25D366;
  color: white;
  padding: 1rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lets-chat-btn i {
  font-size: 1.2rem;
}
.lets-chat-btn:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ================== This is for Testimonials Section ================== */
.testimonials-card-container{
  position: relative;
  gap: 2rem;
}
.testimonials-card {
  top: 0;
  width: 80%;
  border-radius: 10px;
  background-color: #fff4ec;
  border: 1px solid #ffe1cb;
  align-items: center;
  justify-content: start;
  justify-content: space-evenly;
}
.testimonial-video-container{
  position: relative;
}
.testimonials-container {
  margin-block: 7rem;
}
.testimonials-headings{
  margin-bottom: 2rem;
}
.testimonials-headings::after {
  width: 240px;
}
.testimonials-video {
  border-radius: 10px;
  width: 200px;
  margin-left: 40px;
  aspect-ratio: 9/16;
  margin-block: 3rem;
}
.lands-video{
  background-color: #A98B73;
}
.bottom-info{
  position: absolute;
  bottom: 60px;
  left: 50px;
  z-index: 20;
}
.play-pause-btn-testimonials{
  background-color: rgba(0, 0, 0, 0.422);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.testimonial-left-text{
  width: 50%;
  flex-direction: column;
  gap: 0.6rem;
}
.testimonial-text{
  font-size: 1.5rem;
  color: #000;
  font-weight: 700;
  text-align: center;
}
.rating{
  font-size: 3rem;
  color : #ffb405;
}
.quote{
  font-size: 2rem;
  color: #505050;
}
.quote-left{
  position: relative;
  left: -40%;
}
.quote-right{
  position: relative;
  right: -40%;
}
.testimonial-description{
  text-align: center;
  font-weight: 400;
}

/* carousel-button */
.carousel-button{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00000076;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel-button--left{
  left: 0px;
}
.carousel-button--right{
  right: 0px;
}

/* ================== This is for Footer Section ================== */
.footer-area{
  width: 100%;
}
.footer-container{
  margin-block: 2rem;
  border-radius: 10px;
  padding: 1rem 1rem 0rem 1rem;
  flex-direction: column;
  background-color: #3a3a3a;
}
.footer-top{
  justify-content: space-evenly;
  width: 100%;
  padding-block: 2rem;
}
.logo img{
  width: 100px;
  border-radius: 10px;
}
.footer-right{
  gap: 7rem;
}
.address_contact{
  gap: 1rem;
  align-items: start;
  font-size: 1.2rem;
}
.contact{
  margin-top: 1.5rem;
}
.footer-explore{
  flex-direction: column;
  gap: 1rem;
  font-size: 1.2rem;
  align-items: start;
}
.underline-hover a:hover{
  text-decoration: underline;
  cursor: pointer;
}
.footer-social-media{
  font-size: 1.2rem;
  flex-direction: column;
  margin-top: 3rem;
}
.footer-social-links{
  margin-top: 2rem;
}
.footer-bottom {
  gap: 0.3rem;
  border-top: 2px solid #ffffff6d;
  width: 100%;
  padding-block: 1rem;
  font-weight: 500;
  text-align: center;
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.credit-link {
  color: #ffffff;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: underline;
}

/* ================== THIS IS THE MEDIA QUIRES CODE FOR THIS PAGE (1100px) ================== */
@media screen and (max-width: 1100px) {
  /* Navbar Style */
  .nav-logo img {
    width: 150px;
  }
  .nav-link-lists {
    gap: 0.5rem;
  }
}

/* ================== THIS IS THE MEDIA QUIRES CODE FOR THIS PAGE (950px) ================== */
@media screen and (max-width: 950px) {
  /* This is for nav container */
  .nav-container {
    height: 4rem;
  }

  /* this is for logo */
  .nav-logo img {
    width: 140px;
  }
  .link-padding:hover {
    background-color: #ffffff00;
  }

  /* for showing hamburger icon */
  .hamburger {
    display: flex;
  }
  .nav-link-lists {
    width: 100%;
    flex-direction: column;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-15px) rotate(-45deg);
  }
  .nav-child-container {
    margin: 0rem 0.7rem 0rem 0.7rem;
  }

  /* This is for hiding Big-Screen navbar links */
  .nav-links-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffd6bc;
    flex-direction: column;
    transition: 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    gap: 1rem;
    padding: 2rem 0;
    font-size: 1.5rem;
    z-index: 1000;
  }
  .nav-link-lists li {
    border-bottom: #a1a1a13c 0.5px solid;
  }
  .nav-link-lists li:hover {
    border-bottom: #a1a1a100 0.5px solid;
  }
  .nav-child-container ul a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .nav-child-container li {
    width: 100%;
  }
  .nav-link-lists li a:hover {
    transition: all 0.3s ease;
  }
  .link-padding {
    padding: 0.2rem 1rem 1rem 1rem;
  }

  /* This is for the Links to show */
  #checkbox:checked ~ .nav-links-container {
    visibility: visible;
    opacity: 1;
  }

  /* this is for hamburger */
  .hamburger {
    width: 30px;
    height: 30px;
  }

  /* Social media logos */
  .social-media-icons {
    margin-left: 0rem;
    justify-content: center;
    align-items: center;
  }

  /* SUBMENU SECTION HERE */
  .explore-link {
    position: static;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    align-items: center;
    border: none;
  }
  .submenu-1 {
    padding: 0rem 1rem;
  }
  .submenu-1 a {
    border-bottom: 1px solid #a1a1a13c;
  }
  .submenu-1 a:hover {
    background-color: #ffffff00;
  }

  /* ================== HERO SECTION STYLING ================== */
  .card-container {
    flex-direction: column;
  }
  .card {
    width: 100%;
  }
  .card img {
    filter: brightness(40%);
    border-radius: 10px;
  }
  .card:hover img {
    transform: scale(0.9);
  }
  .card-text {
    bottom: 50%;
    width: 100%;
    color: #fff;
    background-color: #fafafa00;
    font-size: 5rem;
    padding: 0rem 0;
  }
  .card:hover .card-text {
    bottom: 50%;
  }

  /* ================== This is for About Us Section ================== */
  .about-videos {
    display: flex;
    flex-direction: column;
  }
  .about-videos video {
    width: 100%;
    border-radius: 10px;
  }

  /* ================== This is for Portfolio Section ================== */
  .portfolio-content {
    flex-direction: column;
    gap: 2rem;
  }
  .portfolio-heading,
  .portfolio-right-text {
    width: 100%;
  }

  /* ================== This is for Testimonials Section ================== */
  .testimonials-card{
    flex-direction: column;
    width: 100%;
  }
  .testimonials-video{
    margin-left: 0px;
  }
  .testimonial-left-text{
    margin-bottom: 3rem;
    width: 95%;
  }
  .bottom-info{
    left: 12px;
  }
  .carousel-button{
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .carousel-button--left{
    left: -0px;
  }
  .carousel-button--right{
    right: -0px;
  }
  .portfolio-content {
    flex-direction: column;
    gap: 2rem;
  }
  .portfolio-heading,
  .portfolio-right-text {
    width: 100%;
  }

  /* ================== This is for About Us Section ================== */
  .about-us-content {
    flex-direction: column;
    gap: 3rem;
  }
  .about-us-image,
  .about-us-right-text {
    width: 100%;
  }
  
}

/* ================== THIS IS THE MEDIA QUIRES CODE FOR THIS PAGE (800px) ================== */
@media screen and (max-width: 800px) {
  .service-card {
    max-width: 100%;
  }
  .card-text {
    font-size: 3rem;
  }

  /* ================== This is for About Us Section ================== */
  .studio-btn a {
    width: 100%;
  }
  .studio-btn a:hover {
    transform: scale(0.9);
  }
  .about-video {
    width: 100%;
  }

  /* ================== THIS IS FOR QUICK START SECTION ================== */
  .quick-content {
    margin-inline: 0rem;
  }
  .quick-all-content h3 {
    font-size: 2rem;
  }
  .quick-all-content {
    border-radius: 0rem;
  }

  /* ================== THIS IS FOR FOOTER SECTION ================== */
  .footer-top {
    flex-direction: column;
  }
  .logo {
    margin-bottom: 2rem;
  }
  .logo img{
    width: 80px;
  }

  /* ================== This is for About Us Section ================== */
  .about-us-heading h2 {
    font-size: 2rem;
  }
  .lets-chat-btn {
    width: 100%;
    justify-content: center;
  }
  .lets-chat-btn:hover {
    transform: scale(0.98);
  }
}

/* ================== THIS IS THE MEDIA QUIRES CODE FOR THIS PAGE (465px) ================== */
@media screen and (max-width: 465px) {
  .card-text {
    font-size: 2.2rem;
  }

  /* ================== This is for ABOUT US Section ================== */
  .about-headings h2{
    font-size: 1.6rem;
  }
  .web-headings{
    font-size: 0.9rem;
  }
  .about-headings h2::after{
    width: 60px;
    height: 1px;
  }

  /* ================== This is for Our Services Section ================== */
  .service-card{
    justify-content: inherit;
  }
  .text-box h2{
    margin-top: 2rem;
  }
  
  /* ================== THIS IS FOR QUICK START SECTION ================== */
  .quick-all-content h3 {
    font-size: 1.5rem;
  }

  /* ================== This is for About Us Section ================== */
  .portfolio-heading h2 {
    font-size: 1.6rem;
  }
  .meet-the-photogpr {
    width: 100%;
    padding: 1rem 1rem;
  }
  .about-us-heading h2 {
    font-size: 1.7rem;
  }
  .about-us-text {
    font-size: 0.9rem;
  }
  .lets-chat-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }

  /* ================== This is for Testimonials Section ================== */
  .rating{
    font-size: 2rem;
  }
  .quote{
    font-size: 1.3rem;
  }

  /* ================== THIS IS FOR FOOTER SECTION ================== */
  .footer-right {
    flex-direction: column;
    gap: 2rem;
  }
  .address_contact{
    align-items: center;
  }
  .footer-explore{
    margin-top: 0rem;
    align-items: center;
  }
  .footer-social-links{
    gap: 1.3rem;
  }
  .footer-social-media{
    margin-top: 0rem;
  }
  .address_contact{
    gap: 0.5rem;
  }
  .footer-explore{
    gap: 0.5rem;
  }

  /* ================== This is for ABOUT US Section ================== */
  .about-us-heading h2 {
    font-size: 1.6rem;
  }
  .about-us-text {
    font-size: 0.9rem;
  }
  .lets-chat-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
  }

  .footer-title {
    font-size: 1.2rem;
  }
  
  .gallery-counter {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .footer-credit {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }
}

/* ================== Image Gallery Popup Styles [Gallery Popup Section] ================== */
.gallery-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-popup.active {
  display: flex;
  opacity: 1;
}
.gallery-popup-content {
  position: relative;
  width: 95%;
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #89898933;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 2001;
}
.gallery-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.gallery-prev {
  left: 20px;
}
.gallery-next {
  right: 20px;
}
.close-gallery {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #89898933;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 2001;
}
.close-gallery:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Add to existing media queries */
@media screen and (max-width: 950px) {
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .close-gallery {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 465px) {
  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 3.2rem;
    background-color: #89898900;
    color: #ffffff4b;
  }
  .gallery-nav:hover{
    background-color: #89898900;
  }
  .gallery-prev {
    left: 10px;
  }
  .gallery-next {
    right: 10px;
  }
  .close-gallery {
    top: 10px;
    right: 10px;
  }
}

/* Gallery Image Wrapper Styles */
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.gallery-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #89898933;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

/* Update existing gallery styles */
.gallery-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.gallery-container img:hover {
    transform: scale(1.1);
}

/* Add to existing media queries */
@media screen and (max-width: 950px) {
    .gallery-title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 465px) {
    .gallery-title {
        font-size: 1.2rem;
    }
    
    .gallery-counter {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

.gallery-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* ================== This is for Contact Form Section ================== */
.contact-form-section {
  margin: 5rem 0;
  background-color: #fef8f2;
  padding: 4rem 0;
}
#CONTACT_US_SECTION{
  scroll-margin-top: 6rem;
}
.contact-form-container {
  width: 100%;
}
.contact-form-content {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.web-headings-2{
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #000;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.web-headings-2::after{
  content: "";
  display: block;
  width: 30%;
  margin: 0 auto;
  height: 2.2px;
  background-color: #ac4f16;
  margin-top: 0.2rem;
}
.contact-form-heading h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #000;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  position: relative;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #d6c5c5;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff;
  transition: all 0.3s ease;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b7476d;
  box-shadow: 0 0 0 2px rgba(183, 71, 109, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}
.submit-btn {
  background-color: #b7476d;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.submit-btn:hover {
  background-color: #a13b61;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Add to existing media queries */
@media screen and (max-width: 950px) {
  .contact-form-content {
    padding: 0 1rem;
  }
  .contact-form-heading h2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 465px) {
  .contact-form-heading h2 {
    font-size: 1.7rem;
  }
  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
  .submit-btn {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .web-headings-2::after{
    width: 50%;
  }
}