  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: sans-serif;
    overflow-x: hidden;
  }

        .btn-custom {
  background-color: #5DC7D0;
  color: white;
  border-radius: 25px;
  padding: 10px 24px;
  font-weight: 500;
  transition: 0.3s;
}
.btn-custom:hover {
  background-color: #48b2ba;
}

        /* Navbar Styling */
/* Navbar styling */
.navbar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}



.logo img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* Dropdown styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffff;
  min-width: 200px;
  height: auto;
  list-style: none;
  z-index: 10;
  padding: 0;
}

.dropdown-menu li  {
  padding: 8px 8px;
  white-space: nowrap;
  color: #000;
  border-bottom: 1px solid #222;
}

.dropdown-menu li:hover {
  padding: 8px 8px;
  white-space: nowrap;
  color: #fff;
  border-bottom: 1px solid #222;
}



/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #111;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Base layout: desktop */


.hero-banner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: url('../img/banner.avif') center center/cover no-repeat;
  padding: 60px;
  color: #fff;
  min-height: 90vh;
}

.hero-left {
  width: 50%;
  z-index: 1;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  color: #111;
}

.hero-left p {
  margin-top: 10px;
  font-size: 18px;
  max-width: 80%;
  color: #111;
}

.btn-learn {
  margin-top: 20px;
  padding: 12px 24px;
  border: 2px solid #fff;
  background:rgba(255, 255, 255, 0.75);
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.btn-learn:hover {
  background: #fff;
  color: #000;
}


.hero-form {
  background: rgba(255, 255, 255, 0.97);
  padding: 30px;
  border-radius: 10px;
  width: 320px;
  color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.hero-form h3 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

.hero-form input,
.hero-form select {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.hero-form button {
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.hero-form button:hover {
  background-color: #444;
}

/* Swiper and right side */
.hero-right {
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 1;
}



   .services-section {
        background: #f8f9fa;
        padding: 60px 0;
    }
    .service-box {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        padding: 30px 20px;
        text-align: center;
        transition: 0.3s ease;
    }
    .service-box:hover {
        transform: translateY(-10px);
    }
    .service-box img {
        width: 200px;
        height: 200px;
        object-fit: contain;
        margin-bottom: 15px;
    }
    .service-box h5 {
        font-weight: bold;
        color: #222;
        margin-bottom: 10px;
    }
    .service-box p {
        font-size: 14px;
        color: #555;
    }

/* Floating shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.floating-shapes span {
  position: absolute;
  top: 0;
  font-size: 24px;
  animation: float 10s infinite ease-in-out;
}

@keyframes float {
  0%   { transform: translateY(0); opacity: 0.5; }
  50%  { transform: translateY(100vh); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.5; }
}

/* ✅ Responsive (Mobile) */
@media (max-width: 768px) {
  .hero-banner {
    flex-direction: column;
    height: auto;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    height: auto;
  }

  .hero-left {
    padding: 40px 20px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .swiper-slide img {
    height: auto;
    max-height: 60vh;
    object-fit: cover;
  }
}


    .section-title {
      color: #ffffff;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .package-card {
      background: rgba(255, 255, 255, 0.05); /* Transparent background */
      border: 1px solid #ff00ff;
      border-radius: 15px;
      padding: 20px;
      margin-bottom: 20px;
      max-width: 300px; /* Smaller box width */
    }

    .package-card h5 {
      color: #ffffff;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .package-card ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
      color: #ffffff;
      font-size: 14px;
    }

    .package-card ul li::before {
      content: '✔️ ';
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .left-fixed {
        position: static;
        width: 100%;
        height: auto;
      }
      .right-content {
        margin-left: 0;
        padding: 20px;
      }
    }


     .section-title {
      color: #685e08d5;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .package-card, .services-table {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid #ffffff;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
    }
    .right-fixed img {
      height: 100vh;
      object-fit: cover;
      width: 100%;
    }
    .left-content {
      max-height: 100vh;
      padding: 20px;
      background-color: #111;
    }
    .table td, .table th {
      color: #fff;
    }
    @media (max-width: 768px) {
      .left-content, .right-fixed {
        max-height: none;
        position: static;
      }
      .right-fixed img {
        height: auto;
      }
    }

.contact-header {
  width: 100%;
  height: 250px;
  position: relative;
  background-image: url('../img/banner.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-header::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.7); /* Dark overlay */
  z-index: 0;
}

.contact_page {
  position: relative;
  z-index: 2;
}

.contact_page h2 {
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}

.list-contat ul {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

.list-contat ul li {
  color: #fff;
  font-size: 16px;
}

.list-contat ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.list-contat ul li a:hover {
  color: #ffd700; /* gold on hover */
  text-decoration: underline;
}

.men-service-box ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 15px;
  color: #444;
}

.men-service-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #111;
  font-size: 0.75rem;
}

/* .men-service-box {
  background: #fff;
  transition: all 0.3s ease;
}
.men-service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
} */



.contact_details{
  background-color: #f0f0f0;
}



 .form-section {
       background-color: #f0f0f0;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        margin: 40px auto;
        padding: 30px;
    }

    .form-control {
        border-radius: 12px;
        border: 2px solid #ddd;
        transition: all 0.3s ease-in-out;
    }

    .form-control:focus {
        border-color: #6c63ff;
        box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
    }

    .form-label {
        font-weight: 400;
        color: #333;
    }

    .btn-submit {
        background: linear-gradient(to right, #6c63ff, #4a4fff);
        border: none;
        border-radius: 12px;
        padding: 12px 20px;
        font-weight: bold;
        color: #fff;
        transition: background 0.3s;
    }

    .btn-submit:hover {
        background: linear-gradient(to right, #4a4fff, #6c63ff);
    }

      .contact-box {
        background: #fff;
        border-radius: 16px;
        margin: 40px auto;
        padding: 30px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        font-family: 'Segoe UI', sans-serif;
    }

   

    .contact-box p {
        margin-bottom: 8px;
        font-size: 15px;
        color: #333;
    }

    .contact-box a {
        color: #4a4fff;
        text-decoration: none;
        margin-right: 10px;
        font-size: 18px;
    }

    .contact-box a:hover {
        color: #333;
    }

    .equal-img {
        height: 250px;
        width: 100%;
        object-fit: contain; /* Change from 'cover' to 'contain' */
        background-color: #f8f8f8; /* Optional: light bg behind image */
        padding: 10px; /* Optional: inner spacing */
        border-radius: 8px;
    }
    
    .gallery-item img {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

     .sidebar-box {
        background: #fff;
        border-top: 4px solid rgb(0, 0, 0);
        padding: 20px;
        max-width: 280px;
        font-family: Arial, sans-serif;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .sidebar-title {
        font-size: 16px;
        font-weight: bold;
        color: #111;
        background: #f1f1f1;
        padding: 10px;
        padding-left: 15px;
        border-left: 5px solid rgb(0, 0, 0);;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .sidebar-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-list li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    .sidebar-list li a {
        color: #444;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .sidebar-list li a:hover {
        color: rgb(0,0,0);
    }

   .background-dots {
    background: url("{{ asset('img/dots-1.png') }}") no-repeat left top;
    background-size: contain; /* or cover */
}

    .gallery-item img:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
  .groom-package-section {
   
    color: #eee;
    padding: 20px 10px;
    font-family: 'Segoe UI', sans-serif;
  }

.groom-package-header {
  text-align: center;
  margin-bottom: 50px;
}

.groom-package-header h2 {
  font-size: 36px;
  color: #111;
  margin-bottom: 10px;
}

.groom-package-header p {
  font-size: 16px;
  color:#343434;
  max-width: 600px;
  margin: 0 auto;
}

.groom-package-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.groom-package-image {
  flex: 1;
  min-width: 280px;
}

.groom-package-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.groom-package-content {
  flex: 1;
  min-width: 280px;
}

.groom-package-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.groom-package-content ul {
  list-style: none;
  padding: 0;
}

.groom-package-content ul li {
  margin-bottom: 12px;
  font-size: 15px;
  padding-left: 24px;
  position: relative!important;
  color: #343434;
}

.about-us-section {
 
  overflow: hidden;
    width: 100%;
}

/* Top-left dot image */
.about-us-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url('../img/dots-1.png') no-repeat;
  background-size: contain;
  width: 250px;
  height: 300px;
  opacity: 0.5;
  z-index: 0;
}

.about-us-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right:0;
  background: url('../img/dots-1.png') no-repeat;
  background-size: contain;
     width: 180px;
    height: 320px;
  z-index: 0;
  opacity: 0.6;
}


.groom-package-content ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #111;
}

@media screen and (max-width: 768px) {
  .groom-package-container {
    flex-direction: column;
    text-align: center;
  }

  .groom-package-content ul {
    padding-left: 0;
  }

  .groom-package-content ul li {
    padding-left: 20px;
  }
}

.women-service-section {
  background-color: #111;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 20px;
  animation: fadeIn 1s ease forwards;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: #5DC7D0;
  margin-bottom: 10px;
}

.section-header p {
  color: #ccc;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
  animation: fadeUp 1s ease forwards;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.service-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-content {
  flex: 1;
  min-width: 280px;
}

.service-content h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-content ul {
  list-style: none;
  padding: 0;
}

.service-content ul li {
  margin-bottom: 12px;
  font-size: 15px;
  padding-left: 24px;
  position: relative;
  color: #ddd;
}

.service-content ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #5DC7D0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .service-block {
    flex-direction: column !important;
    text-align: center;
  }

  .service-content ul {
    padding-left: 0;
  }
}

/* footer start */
.footer-with-circles {
  position: relative;
  background: #000;
  color: #f5f5f5;
  padding: 70px 20px 30px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  max-width: 140px;
  filter: brightness(0) invert(1); /* Invert black logo for dark background */
  margin-bottom: 15px;
}

.desc {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #333;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.footer-bottom a {
  color: #999;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated Circle Backgrounds */
.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #5dc7d0 20%, transparent 80%);
  opacity: 0.2;
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
}

.circle1 {
  width: 250px;
  height: 250px;
  top: 20px;
  left: 20px;
  animation: moveCircle1 4s ease-in-out infinite alternate;
}

.circle2 {
  width: 220px;
  height: 220px;
  bottom: 20px;
  right: 30px;
  animation: moveCircle2 5s ease-in-out infinite alternate;
}

.circle3 {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  animation: moveCircle3 6s ease-in-out infinite alternate;
}

@keyframes moveCircle1 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(60px, 40px); }
}

@keyframes moveCircle2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-50px, 30px); }
}

@keyframes moveCircle3 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-40%, -60%) scale(1.2); }
}

#contact .form-control,
#contact .form-select {
  border-radius: 10px;
  padding: 12px 15px;
}


#contact input, #contact textarea {
  border-radius: 12px;
  border: 1px solid #ccc;
  box-shadow: none;
  transition: 0.3s ease;
}

#contact input:focus, #contact textarea:focus {
  border-color: #000;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}


/* footer end */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#preloader img {
  width: 80px;
  height: auto;
  animation: zoomIn 1s ease;
}

#preloader h2 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
  font-size: 24px;
  margin-top: 15px;
  color: #333;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
