:root{
  --accent:#464646;
  --accent-dark:#8f5638;
  --dark:#0d0d0d;
  --muted:#f6f4f2;
  --container-width:1140px;
  font-family:Montserrat,system-ui,Arial
}
/* Reset & Base */
*{box-sizing:border-box}
body{margin:0;color:#111;background:#fff;font-family:Montserrat,sans-serif;scroll-behavior:smooth;line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;transition:opacity 0.3s ease}

/* Image loading states */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Loading placeholder */
img[loading="lazy"]:not(.loaded) {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

/* Mobile-specific image optimizations */
@media (max-width: 768px) {
  img[loading="lazy"] {
    /* Faster loading animation on mobile */
    animation-duration: 1s;
  }
  
  /* Optimize gallery images for mobile */
  .gallery-grid img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
  }
  
  /* Reduce animation complexity on mobile */
  img[loading="lazy"]:not(.loaded) {
    background: #f0f0f0;
    animation: none;
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Topbar wrapper */
    .topbar {
      position: relative; /* important for absolute child */
      background: var(--accent);
      color: #fff;
      z-index: 1000;
      padding: .5rem 0 1.5rem; /* extra bottom padding for overlap */
    }

    .topbar-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 100px;
    }

    /* Top row */
    .topbar-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .toptitle {
      display: flex;
      flex-direction: column;
      line-height: 1.3;
    }

    .upper-leaft {
      font-weight: 800;
      letter-spacing: 2px;
      font-size: 14px;
    }

    .contact {
      font-weight: 600;
      font-size: 13px;
      text-align:right;
    }

    .contact a {
      color: #fff;
      text-decoration: none;
    }

    /* Book button */
    .book-btn {
      background: #fff;
      color: var(--accent);
      padding: .35rem .9rem;
      border-radius: 22px;
      font-weight: 700;
      text-decoration: none;
      transition: 0.3s;
    }

    .book-btn:hover {
      background: var(--accent-dark);
      color: #fff;
    }

    /* Bottom row (inside topbar, absolute overlap) */
    .topbar-bottom {
      position: absolute;
      bottom: -18px; /* overlap karega */
      left: 0;
      z-index: 1001;
      width: 100%;
    }

    .topbar-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* WhatsApp Button */
    .whatsapp-button {
      display: flex;
      align-items: center;
      background-color: #25D366;
      padding: 4px 28px;
      border-radius: 25px;
      font-size: 12px;
      color: white;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s ease;
      position: relative;
    }

    .whatsapp-button img {
      height: 34px;
      margin-right: 8px;
      position: absolute;
      left: -11px;
    }

    .whatsapp-button:hover {
      background-color: #1ebd5c;
    }

    /* Social icons */
    .topbar-bottom-right {
      background: #2a2a2a;
      padding: 2px 10px;
      border-radius: 5px;
    }

    .topbar-bottom-right a {
      display: inline-block;
      margin-left: 8px;
    }

    .topbar-bottom-right img {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }

    .topbar-bottom-right img:hover {
      transform: scale(1.2);
    }

    /* Responsive */
    @media(max-width: 768px) {
      .topbar-top {
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
      }
      .topbar-container{
          padding: 0 15px!important;
      }
      .topbar-bottom-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
      }
      .upper-leaft, .book-btn {
        font-size: 12px;
      }
      .contact {
        font-size: 11px;
      }
      .topbar-bottom-right img {
        width: 20px;
        height: 20px;
      }
    }


/* Header / Hero */
#heroSlider.carousel {
    z-index: 1;
    position: relative;
}
#heroSlider .carousel-inner {
  position: relative;
  z-index: 1;
}

#heroSlider .carousel-item {
  height: 100vh;
  min-height: 500px;
}

#heroSlider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Slider Controls */
#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 1002;
  position: absolute;
  cursor: pointer;
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

#heroSlider .carousel-control-prev {
  left: 30px;
}

#heroSlider .carousel-control-next {
  right: 30px;
}

#heroSlider .carousel-control-prev-icon,
#heroSlider .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: invert(48%) sepia(33%) saturate(572%) hue-rotate(336deg) brightness(95%) contrast(90%);
}

@media(max-width: 768px) {
    .carousel
    {
         height: 235px; 
    }
    #heroSlider .carousel-item img {
      height: auto!important;
    }
    
    /* Mobile Controls */
    #heroSlider .carousel-control-prev,
    #heroSlider .carousel-control-next {
      width: 40px;
      height: 40px;
      z-index: 1002;
      position: absolute;
    }
    
    #heroSlider .carousel-control-prev {
      left: 15px;
    }
    
    #heroSlider .carousel-control-next {
      right: 15px;
    }
    
    #heroSlider .carousel-control-prev-icon,
    #heroSlider .carousel-control-next-icon {
      width: 16px;
      height: 16px;
    }
}

/* ======= About Section ======= */
    .about-section {
      position: relative;
      padding: 20px 20px;
      max-width: 91%;
      margin: 0 auto;
    }

    .about-full-banner {
      margin: 20px 0;
    }

    /* ======= Social Sidebar (Only in this section) ======= */
    .section-social-sidebar {
      position: absolute;
      top: 50%;
      left: -60px;
      transform: translateY(-50%);
      z-index: 10;
    }

    .section-social-sidebar a {
      display: block;
      width: 40px;
      height: 40px;
      margin-bottom: 8px;
      line-height: 40px;
      text-align: center;
      color: #fff;
      font-size: 16px;
      text-decoration: none;
    }

    .facebook { background: #3b5998; }
    .instagram { background: #e4405f; }
    .whatsapp { background: #25d366; }
    .youtube { background: #f7f7f7; }
    .pinterest { background: #f3f5f6; }

    .section-social-sidebar a:hover {
      opacity: 0.8;
    }

    /* ======= Responsive ======= */
    @media(max-width: 768px) {
      .about-container {
        flex-direction: column;
      }

      .section-social-sidebar {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
      }

      .section-social-sidebar a {
        margin: 0 6px;
      }
    }


/* Services grid */
    .services-section {
      padding: 30px 0px 0px 0px;
      border-top: 3px solid gray;
      /*border-bottom: 3px solid gray;*/
    }

    .services-section .container {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .section-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
      color:#fff;
    }

    .service-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }

    .service-column {
      flex: 1 1 30%;
      background: #ffffff1a;
      border: 1px solid #ffffff30;
      padding: 20px;
      border-radius: 10px;
    }

    .service-column h5 {
      font-size: 18px;
      margin-bottom: 15px;
      font-weight: bold;
      text-transform: uppercase;
      color: #fff;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }

    /* Cinematography Grid */
    .cinematography-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .cinematography-grid iframe {
      width: 100%;
      height: 140px;
      border: none;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .cinematography-grid iframe:hover {
      transform: scale(1.02);
    }

    .gallery-grid img,
    .gallery-grid video {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    }

    /* Hover effects removed - using click preview for all devices */

    .video-thumb {
      position: relative;
    }

    .video-thumb .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 15px;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      padding: 4px 8px;
    }

    .view-more {
      margin-top: 30px;
    }

    /* Modal */
    .media-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      z-index: 9999;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .media-modal.active {
      display: flex;
      opacity: 1;
    }

    .modal-content {
      position: relative;
      width: 90vw;
      max-width: 1000px;
      max-height: 90vh;
      /* overflow: auto; */
      background: #000;
      border-radius: 10px;
      padding: 10px;
    }

    .modal-content img {
      width: 100%;
      height: auto;
      max-height: 85vh;
      object-fit: contain;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
    }

    .modal-content iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 8px;
      display: block;
    }

    .close-btn {
      position: absolute;
      top: -15px;
      right: -15px;
      font-size: 30px;
      color: #fff;
      background: #000;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      text-align: center;
      line-height: 35px;
      cursor: pointer;
    }

    @media (max-width: 992px) {
      .service-columns {
        flex-direction: column;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cinematography-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .cinematography-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }
    }

/* Gallery */
.service-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(80px,1fr));gap:8px;margin-top:12px}
.service-gallery img{width:100%;height:100px;object-fit:cover;border-radius:8px;transition:0.3s}
/* Hover effects removed - using click preview for all devices */
.service-gallery video{width:100%;height:150px;border-radius:8px;object-fit:cover;transition:0.3s}


/* Testimonials */
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #000;
  /*margin-top: 100px;*/
}

.testimonial-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: #fff;
}

.testimonial-section h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: #fff;
  margin: 10px auto 0;
}

/* Testimonial Card */
.testimonial-items {
  background: #fff;
  color: #000;
  border-radius: 8px;
  padding: 25px;
  position: relative;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  height: 100%;
  min-height: 200px;
}

/* Quotation marks */
.testimonial-items::before {
  content: "“";
  font-size: 40px;
  color: #d32f2f;
  position: absolute;
  top: 15px;
  left: 15px;
}

.testimonial-items::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 20px 0 20px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

/* Client Info */
.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.testimonial-client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

.testimonial-client-info {
  text-align: left;
}

.testimonial-client-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.testimonial-client-info span {
  font-size: 13px;
  color: #aaa;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #d32f2f;
  opacity: 1;
}


/* Why Choose Section with fixed background */
.why-section {
  position: relative;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

/* Keep your existing styles for why-grid and why-item */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.why-item {
  background: rgba(255 255 255 / 0.15);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(5px);
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

.why-item i {
  font-size: 28px;
  color: var(--accent, #ff4081);
  margin-bottom: 8px;
  display: block;
}

/* Floating Banner remains same */
.floating-banner {
  position: relative;
  background-image: url('../assets/img/banner3.webp'); /* Dummy Image */
  background-size: cover;
  background-position: center;
  height: 300px;
  text-align: center;
  color: #fff;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-radius: 10px; */
}

/* Floating Banner Mobile Responsive */
@media (max-width: 768px) {
  .floating-banner {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .floating-banner {
    height: 110px;
    background-size: cover;
    background-position: center;
  }
}

.banner-title {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  z-index: 1;
}

/* Book Now Button (Bottom Left, Half Outside) */
.book-now-btn {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background-color: #020202;
  color: #fff;
  padding: 12px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 15px;
  transition: 0.3s ease;
  z-index: 2;
}

.book-now-btn:hover {
  background-color: #7b4720;
}

/* WhatsApp Button (Top Right, Half Outside) */
.whatsapp-btn {
  position: absolute;
  top: -20px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  padding: 7px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 11px;
  text-align: center;
  font-size: 10px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn i {
  margin-right: 6px;
  font-size: 46px;
  vertical-align: middle;
  position: absolute;
  left: -39px;
  top: -7px;
  color: #1ebe5d;
  background: #ffffff;
  border-radius: 55%;
  padding: 7px 10px;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-btn {
    position: absolute;
    top: -14px;
    right: -10px;
    font-size: 7px;
    display: inline-block;
    margin: 0px 19px 1px 0;
    padding: 4px 25px;
  }

  .book-now-btn{
    position: absolute;
    bottom: -15px;
    left: 5px;
    font-size: 10px;
    padding: 7px 15px;
  }

  .whatsapp-btn i {
    margin-right: 6px;
    font-size: 20px;
    position: absolute;
    left: -14px;
    top: -2px;
  }


  .banner-title {
    font-size: 24px;
  }
}


/* arrow with button design */
.cta-section {
  background-color: #fff;
  padding: 30px 0;
  text-align: center;
  border-bottom: 2px solid #ddd;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 12px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: background-color 0.3s ease;
}

.visit-btn {
  background-color: #007bff; /* Blue */
}
.btn:hover {
    color: #fff!important;
    background-color: #484848!important;
}

.subscribe-btn {
  background-color: #e60000; /* Red */
}
.follow-btn {
  background-color: #9a5b2d; /* Brown */
}

.cta-btn:hover {
  opacity: 0.8;
}

/* Arrow inside Subscribe Button */
.button-line-container {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
      padding: 30px 0;
    }

    /* Line behind buttons */
    .button-line-container::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: black;
      z-index: 0;
    }

    .btn {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      padding: 10px 20px;
      border: none;
      border-radius: 20px;
      font-size: 16px;
      font-weight: bold;
      color: white;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .btn i {
      margin-right: 8px;
    }

    .btn:hover {
      transform: scale(1.05);
    }

    .visit { background-color: #00bfff; }
    .subscribe { background-color: red; }
    .follow { background-color: #8b4513; }

    @media (max-width: 768px) {
      .button-line-container {
        flex-direction: row;
        gap: 10px;
        padding: 20px 10px;
        justify-content: space-between;
      }

      .button-line-container::before {
        top: 50%;
        left: 0;
        height: 3px;
        width: 100%;
        transform: translateY(-50%);
      }

      .btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 15px;
        flex: 1;
        text-align: center;
        justify-content: center;
      }

      .btn i {
        margin-right: 4px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .button-line-container {
        gap: 8px;
        padding: 15px 5px;
      }

      .btn {
        padding: 6px 8px;
        font-size: 11px;
        border-radius: 12px;
      }

      .btn i {
        margin-right: 3px;
        font-size: 12px;
      }
    }
/* ----------------------------------- */
.subscribe-btn .arrow {
  position: absolute;
  right: 10px;
}

.subscribe-btn .arrow i {
  font-size: 18px;
}

/* Separator Line Between Buttons */
.separator-line {
  width: 1px;
  height: 40px;
  background-color: #ddd;
}

/* Description Text Under Buttons */
.cta-description {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  text-decoration: underline;
  font-weight: 600;
}

/* Icon Styles */
.fas, .fab {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .subscribe-btn .arrow {
    position: static;
    margin-left: 5px;
  }

  .separator-line {
    display: none; /* Hide separators on mobile */
  }
}

/* ✅ Teo colunm section Image side slightly wider */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.image-side {
  flex: 1.2;
  overflow: hidden;
  /* border-radius: 10px; */
}

.image-side img {
  width: 100%;
  height: 375px;
  object-fit: cover; /* 💡 Ensures image fills entire box */
  /* border-radius: 10px; */
  display: block;
}

.content-side {
  flex: 1;
  padding: 3px 10px;
}

.content-side h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.content-side p {
  font-size: 17px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }

  .image-side,
  .content-side {
    flex: 1 1 100%;
  }

  .image-side img {
    height: 250px;
    object-fit: cover;
    width: 100%;
  }

  .content-side h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .image-side img {
    height: 200px;
    object-fit: cover;
    width: 100%;
  }
  
  .content-side h2 {
    font-size: 22px;
  }
  
  .content-side p {
    font-size: 15px;
  }
}

/* Full-width wedding banner */

.third-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.third-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Third Banner Mobile Responsive */
@media (max-width: 768px) {
  .third-banner {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .third-banner {
    height: 150px;
  }
}

/* Instagram */
.insta-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Instagram Cards */
.instagram-card {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.instagram-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-card:hover img {
  transform: scale(1.1);
}

/* Instagram Overlay */
.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-card:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay a {
  color: white;
  font-size: 30px;
  text-decoration: none;
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.instagram-overlay a:hover {
  transform: scale(1.1);
}

/* Instagram Placeholder */
.instagram-placeholder {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.instagram-placeholder h5 {
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.instagram-placeholder p {
  color: #666;
  font-size: 18px;
  margin-bottom: 20px;
}

.instagram-placeholder .btn {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.instagram-placeholder .btn:hover {
  transform: translateY(-2px);
  color: white;
}

/* Instagram Responsive */
@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .instagram-card {
    height: 200px;
  }
  
  .instagram-overlay a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .insta-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .instagram-card {
    height: 180px;
  }
  
  .instagram-placeholder {
    padding: 20px 15px;
  }
  
  .instagram-placeholder h5 {
    font-size: 16px;
  }
  
  .instagram-placeholder p {
    font-size: 14px;
  }
}

/* Footer styling */
.footer-main {
  background-color: #121212; /* Darker bg */
  color: #f1f1f1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-main h5 {
  font-weight: 600;
  color: #f9a825; /* Accent golden color */
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.foter-social-menu li a {
  font-size: 20px;
  color: #ccc;
  transition: color 0.3s ease;
}

.foter-social-menu li a:hover {
  color: #f9a825; /* golden on hover */
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-menu li a:hover {
  color: #f9a825;
  text-decoration: underline;
}

.footer-contact a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
  color: #f9a825;
}

.border-top {
  border-color: #444 !important;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .foter-social-menu {
    flex-direction: row !important;
    justify-content: flex-start;
    gap: 15px;
  }
  .foter-social-menu li {
    margin-right: 0;
    margin-bottom: 0;
  }
  
  /* Footer column adjustments for mobile */
  .footer-main .col-md-2 {
    text-align: left;
    margin-bottom: 20px;
  }
  
  .footer-main .col-md-7,
  .footer-main .col-md-3 {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .foter-social-menu {
    gap: 10px;
  }
  
  .foter-social-menu li a {
    font-size: 18px;
  }
}



/* Custom Arrows */
.carousel-control-prev.custom-control,
.carousel-control-next.custom-control{width:50px;height:50px;background:#fff;border-radius:50%;top:50%;transform:translateY(-50%);opacity:1;transition:0.3s}
.carousel-control-prev.custom-control:hover,
.carousel-control-next.custom-control:hover{background:var(--accent);color:#fff}
.carousel-control-prev.custom-control{left:-20px}
.carousel-control-next.custom-control{right:-20px}
.carousel-control-prev-icon,
.carousel-control-next-icon{filter: invert(48%) sepia(33%) saturate(572%) hue-rotate(336deg) brightness(95%) contrast(90%)}

/* Animations */
@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}
@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}}


/* ===== Popup Form Modal ===== */
.form-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.form-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

.form-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 650px;
  width: 100%;
  padding: 25px 30px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  overflow-y: auto;
  max-height: 90vh;
  animation: slideDown 0.4s ease;
  font-family: "Montserrat", sans-serif;
}

/* Close button */
.form-close-btn {
  position: absolute;
  top: -5px;
  right: -4px;
  font-size: 24px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: 0.3s;
}
.form-close-btn:hover {
  background: #444;
}

/* Form card styling */
.form-card-unique {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-header-box-unique {
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

#formHeaderSlider.carousel {
  height: 100%;
  z-index: 1;
  position: relative;
}

#formHeaderSlider .carousel-inner {
  height: 100%;
}

#formHeaderSlider .carousel-item {
  height: 100%;
}

.form-header-box-unique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Tablet Responsive for Form Header Slider */
@media (max-width: 992px) and (min-width: 769px) {
  #formHeaderSlider.carousel {
    height: 250px; /* Fixed height for tablet */
  }
  
  #formHeaderSlider .carousel-inner {
    height: 250px;
  }
  
  #formHeaderSlider .carousel-item {
    height: 250px;
  }
  
  .form-header-box-unique img {
    width: 100%;
    height: 250px; /* Fixed height for tablet */
    object-fit: cover;
    border-radius: 8px;
  }
}

/* Mobile Responsive for Form Header Slider */
@media (max-width: 768px) {
  #formHeaderSlider.carousel {
    height: 200px; /* Fixed height for mobile */
  }
  
  #formHeaderSlider .carousel-inner {
    height: 200px;
  }
  
  #formHeaderSlider .carousel-item {
    height: 200px;
  }
  
  .form-header-box-unique img {
    width: 100%;
    height: 200px; /* Fixed height for mobile */
    object-fit: cover; /* Ensures full image shows without cropping */
    border-radius: 8px;
  }
  
  /* Adjust indicators for mobile */
  #formHeaderSlider .carousel-indicators {
    bottom: 10px;
  }
  
  #formHeaderSlider .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

/* Small Mobile Responsive for Form Header Slider */
@media (max-width: 480px) {
  #formHeaderSlider.carousel {
    height: 65px; /* Smaller height for small mobile */
  }
  
  #formHeaderSlider .carousel-inner {
    height: 65px;
  }
  
  #formHeaderSlider .carousel-item {
    height: 65px;
  }
  
  .form-header-box-unique img {
    width: 100%;
    height: 65px; /* Smaller height for small mobile */
    object-fit: cover;
    border-radius: 6px; /* Slightly smaller border radius */
  }
  
  /* Adjust indicators for small mobile */
  #formHeaderSlider .carousel-indicators {
    bottom: 8px;
  }
  
  #formHeaderSlider .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
}

/* Carousel indicators */
#formHeaderSlider .carousel-indicators {
  bottom: 5px;
  margin-bottom: 0;
}

#formHeaderSlider .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 3px;
}

#formHeaderSlider .carousel-indicators .active {
  background-color: #fff;
}

/* Success Message Styles */
.success-message {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.success-icon {
  font-size: 60px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.success-message h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
}

.success-message p {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #f0f0f0;
}

.success-details {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 4px solid #4CAF50;
}

.success-details p {
  margin-bottom: 8px;
  font-size: 14px;
}

.success-details strong {
  color: #fff;
  font-weight: bold;
}

.success-close-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}


.form-title-unique {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Labels */
.form-label-unique {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* Inputs */
.form-input-unique,
.form-comment-unique {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}
.form-input-unique:focus,
.form-comment-unique:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}
.form-input-unique:valid {
  border-color: #4CAF50;
}
.form-input-unique:invalid {
  border-color: #f44336;
}

/* Textarea */
.form-comment-unique {
  min-height: 80px;
  resize: vertical;
}

/* Option buttons */
.form-options-unique {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-option-btn-unique {
  flex: 1 1 auto;
  padding: 10px 15px;
  border: 1px solid #333;
  background: #f9f9f9;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-option-btn-unique:hover {
  background: #464646;
  color: #fff;
  border-color: #464646;
}

/* Disclosure */
.form-disclosure-unique {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

/* Submit Button */
.form-submit-btn-unique {
  background: #464646;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.form-submit-btn-unique:hover {
  background: #8f5638;
}
.form-option-btn-unique.selected {
  background-color: #080808; /* apni theme ke hisaab se color change kar lo */
  color: #fff;
  border: 2px solid #080808;
}


/* Animations */
@keyframes slideDown {
  from { transform: translateY(-30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.form-modal-content {
  overflow-y: scroll;   /* vertical scroll allow */
  overflow-x: hidden;   /* horizontal ko block */
  scrollbar-width: none; /* Firefox me hide */
  -ms-overflow-style: none; /* IE/Edge ke liye */
}

.form-modal-content::-webkit-scrollbar {
  display: none; /* Chrome, Safari me hide */
}

.fyDWqT a{
    display:none!important;
}

