@import url('https://fonts.googleapis.com/css2?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&display=swap');


.navbar-custom {
  background-color: #ab934f;
  /* Golden color */
  position: sticky;

}

.navbar-custom {
  font-size: 20px;
}

/* .nav-item {
  margin-left: 20px;
} */

.navbar-custom .nav-link,
.navbar-custom .navbar-brand,
.navbar-custom .btn {
  color: white;
  padding: 10px;
  font-weight: 800;


}

.navbar-custom .nav-link:hover,
.navbar-custom .btn:hover {
  color: black;


}

@media (max-width: 768px) {

  /* Adjust breakpoint as needed */
  #book {
    width: 100%;
    /* Make button full width on smaller screens */

  }
}

.navbar-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .btn-outline-light {
    width: 100%;

  }

  .navbar-center {
    justify-content: left;
  }
}

.hero-section {
  background: url('./imge/banner02.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 100px;
  justify-content: center;
  text-align: center;
  color: rgb(249, 247, 241);
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease-in-out;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* Media Query for Mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
    /* Smaller font size for mobile */
  }

  .hero-section {
    height: 400px;
  }

  .hero-content p {
    font-size: 1.5rem;
    /* Optional: Adjust paragraph size on mobile */
  }
}

.btn-primary {
  background-color: hsl(210, 6%, 74%);
  border: none;
  padding: 1.75rem 3rem;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}


.btn-primary:hover {
  transform: scale(1.1);
}

.icon-bar i {
  margin-right: 10px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-heading {
  font-size: 2rem;
  /* Adjust as needed */
  font-weight: bold;
  color: #333;
  animation: fadeIn 2s ease-out;
  /* Animation properties */
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .animated-heading {
    font-size: 1.5rem;
    /* Smaller font size for mobile devices */
  }
}

.animated-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .animated-heading {
    font-size: 1.5rem;
  }
}

/* Golden color horizontal rule */
.golden-hr {
  border: 2px solid;
  height: 2px;
  background-color: #daa520;
  width: 45%;
  /* Adjust the width as needed */
  margin: 20px auto;

}

.text {
  color: goldenrod;
}




/* Container */
.container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

/* Yacht Card */
.yacht {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 15px;
  padding: 20px;
  border: 1px solid #bfa888;
  width: 100%;
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease;
}

.yacht:hover {
  transform: translateY(-10px);
}

/* Yacht Title */
.yacht h2 {
  color: #ab934f;
  /* Golden color */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Yacht Image */
.image {
  overflow: hidden;
  position: relative;
  height: 200px;
  /* Fixed height for the image container */
}

.image img {
  width: 100%;
  height: 100%;
  /* Make the image fill the fixed height */
  object-fit: cover;
  /* Ensure the image covers the container without distortion */
  transition: transform 0.5s ease;
  /* Smooth zoom transition */
}

.image:hover img {
  transform: scale(1.1);
  /* Zoom effect on hover */
}

/* Price and Capacity */
.price {
  font-size: 1.1rem;
  font-weight: bold;
  color: red;
  /* Golden color */
  margin: 10px 0;
}

.price-value {
  color: #333;
}

.capacity {
  font-size: 1rem;
  color: #666;
}

/* Button Styles */
.book-now {
  background-color: #ab934f;
  color: white;
  font-size: 1.1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-top: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.book-now:hover {
  background-color: wheat;
  transform: translateY(-5px);
}

.book-now img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
    align-items: center;
  }

  .yacht {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .yacht h2 {
    font-size: 1.2rem;
  }

  .price,
  .capacity {
    font-size: 1rem;
  }
}


.border-bottom {
  width: 200px;
  height: 3px;
  background-color: #e5be02;
  /* Golden color */
  margin: 0 auto 30px auto;
}

/* Section Styles */
.alpine-yachts {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.alpine-yachts .section-title {
  font-size: 2.5rem;
  color: #ab934f;
  /* Golden color */
  margin-bottom: 20px;
  animation: slideIn 1s ease-out;
}

/* Golden Border Below Heading */
.border-bottom {
  width: 50px;
  height: 3px;
  background-color: #bfa888;
  /* Golden color */
  margin: 0 auto 30px auto;
}

.alpine-yachts .section-description {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out;
}

/* Quote Styles */
.comparison-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #666;
  margin: 30px 0;
  animation: fadeIn 1.5s ease-out;
}

/* Ethos Section */
.ethos {
  font-size: 1.2rem;
  color: #333;
  margin-top: 20px;
  animation: fadeIn 2s ease-out;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .alpine-yachts .section-title {
    font-size: 2rem;
  }

  .alpine-yachts .section-description {
    font-size: 1.1rem;
  }

  .alpine-yachts .comparison-quote {
    font-size: 1.3rem;
  }

  .alpine-yachts .ethos {
    font-size: 1rem;
  }
}


/* Section Styles */
.premium-yacht-section {
  background-color: hwb(30 89% 11%);
  /* Golden background */
  padding: 50px 20px;
  color: rgb(25, 24, 24);
  animation: fadeIn 1s ease-out;
}

/* Text and Image Layout */
.yacht-content {
  padding-left: 20px;
}

.yacht-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.yacht-content h3 {
  font-size: 1.8rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.yacht-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.yacht-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .premium-yacht-section {
    padding: 30px 10px;
  }

  .yacht-content h2 {
    font-size: 2rem;
  }

  .yacht-content h3 {
    font-size: 1.5rem;
  }

  .yacht-content p {
    font-size: 1rem;
  }

  .yacht-image img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

/* Card Slider Section */
.card-slider-section {
  padding: 60px 0;
  margin: 10px;

}

.card {
  border: none;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.card-img-top {
  border-radius: 10px 10px 0 0;
  height: 250px;
}

.card-body {
  padding: 15px;
}

.card:hover {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

/* Responsive Design for Slick Carousel */
@media (max-width: 1200px) {
  .slick-slide {
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .card {
    margin: 0 5px;
    /* Adjust margin for smaller screens */
  }
}


.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contact-form {
  flex: 1;
  padding: 20px;
}

.contact-img {
  flex: 1;
  padding: 20px;
}

.contact-img img {
  width: 100%;
  height: auto;
}

/* Footer Styles */
.site-footer {
  background-color: #f8f9fa;
  color: #343a40;
}

.site-footer a {
  color: #343a40;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Footer Heading Color */
.footer-heading {
  color: #d7a449;
  /* Golden color */
}

/* Payments Section Styles */
.payments-accepted {
  background-color: #f1f1f1;
  border-top: 1px solid #ddd;
}

.payments-accepted h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.payment-icons {
  font-size: 1.2rem;
  color: goldenrod;
}

.payment-icons i {
  margin-right: 10px;
  font-size: 1.5rem;
}

.payment-icons span {
  font-size: 1.2rem;
  color: #343a40;
}

.payment-icons i:hover {
  color: #bfa888;
}

/* Social Links */
.social-links .social-icon {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #bfa888;
}

.social-links .social-icon:hover {
  color: #bfa888;
}

/* Footer Bottom Styles */
.footer-bottom {
  background-color: #bfa888;
  color: #f6edd7;
}

/* Align copyright text to the right */
.footer-bottom p {
  text-align: center;
}

.follow-us {
  font-size: 1.1rem;
  color: #343a40;
  margin-right: 10px;
}



.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form {
  flex: 1;
  padding-right: 15px;
}

.contact-img {
  flex: 1;
  padding-left: 15px;
}

.contact-img img {
  max-width: 100%;
  height: auto;
}

* {
  font-family: "Arial", sans-serif;
}

/* WhatsApp Button Container */
.whatsapp-fixed {
  position: fixed;
  bottom: 40px;
  right: 62px;
  z-index: 9;
}

/* WhatsApp Button Styling */
.btn-whatsapp {
  background-color: #30bf39;
  color: #fff;
  border-radius: 100%;
  transition: background-color 0.5s;
  width: 60px !important;
  height: 60px !important;
  line-height: 70px;
  position: relative !important;
  display: block;
  z-index: 9;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.07),
    0 2px 4px rgba(0, 0, 0, 0.07),
    0 4px 8px rgba(0, 0, 0, 0.07),
    0 8px 16px rgba(0, 0, 0, 0.07),
    0 16px 32px rgba(0, 0, 0, 0.07),
    0 32px 64px rgba(0, 0, 0, 0.07);
}

/* Hover effect for WhatsApp button */
.btn-whatsapp:hover {
  background-color: #53ca5b;
  animation: sm-shake-animation linear 1.5s infinite;
}

/* WhatsApp Icon animation */
.whatsapp-fixed a.video-vemo-icon.btn-whatsapp i {
  font-size: 32px;
  color: #fff;
  animation: sm-shake-animation linear 1.5s infinite;
  animation-delay: 3s;
}

/* Zoom-in Animation for notification border */
.rs-video .animate-border .video-vemo-icon:before,
.rs-video .animate-border .video-vemo-icon:after {
  content: "";
  border: 2px solid #fff;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  animation: zoomBig 3.25s linear infinite;
  animation-delay: 3s;
}

/* WhatsApp Button After Effects (border animation) */
.btn-whatsapp:after,
.btn-whatsapp:before {
  border: 2px solid #30bf39 !important;
  width: 130px !important;
  height: 130px !important;
}

/* Red Dot for Notifications */
.sm-red-dot {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  background: red;
  transform: scale(0);
  border-radius: 50%;
  animation-name: notificationPoint;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}

/* Quick Message Styling */
.quick-message {
  position: absolute;
  bottom: 4px;
  right: 88px;
  width: max-content;
  border-radius: 0;
  background: #393b39;
}

/* Animation for quick message line-up */
.line-up {
  opacity: 0;
  animation-name: anim-lineUp;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  animation-delay: 5s;
}

/* Quick Message Text Styling */
.quick-message p {
  line-height: 40px;
  font-size: 15px;
  padding: 4px 16px;
  height: 40px;
  position: relative;
  color: #fff;
  margin: 0;
}

/* Arrow Styling for Quick Message */
.quick-message .seta-direita:before {
  display: inline-block;
  content: "";
  vertical-align: middle;
  margin-right: 10px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #393b39;
  position: absolute;
  bottom: 3px;
  right: -20px;
}

/* Hover message visibility */
#hover-message {
  display: none;
}

.whatsapp-fixed:hover #hover-message {
  display: block;
}

/* Keyframe for Zoom Effect */
@keyframes zoomBig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }

  40% {
    opacity: 0.5;
    border-width: 2px;
  }

  65% {
    border-width: 1px;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}

/* Keyframe for Shake Animation */
@keyframes sm-shake-animation {
  0% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }

  25% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }

  35% {
    transform: rotate(-0.3rad) scale(1) skew(0.017rad);
  }

  45% {
    transform: rotate(0.3rad) scale(1) skew(0.017rad);
  }

  55% {
    transform: rotate(-0.3rad) scale(1) skew(0.017rad);
  }

  65% {
    transform: rotate(0.3rad) scale(1) skew(0.017rad);
  }

  75% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }

  100% {
    transform: rotate(0) scale(1) skew(0.017rad);
  }
}

/* Keyframe for Notification Point */
@keyframes notificationPoint {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* Keyframe for Quick Message Line-Up */
@keyframes anim-lineUp {
  from {
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

/*about*/
.about-hero-section {
  height: 100vh;
  background: url('./imge/2025-01-02\ \(1\).png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ab934f;
  text-align: center;
  position: relative;

}

.about-hero-content {
  animation: fadeInUp 1.5s ease-out;
}

.about-hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
}

.about-hero-content p {
  font-size: 1.3rem;
  margin-top: 20px;
}

.about-hero-btn {
  margin-top: 30px;
  padding: 15px 40px;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  background-color: #ab934f;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-hero-btn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 1.3rem;
    /* Adjust margin for smaller screens */
    font-weight: 800;
  }

  .about-hero-section {
    height: 500px;
  }
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 50px;
  background-color: #f8f9fa;
}

.about-text {
  flex: 1;
  padding-top: 0px;
  padding-right: 50px;
  animation: slideInLeft 1.5s ease-out;
}

.about-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.about-text p {
  font-size: 1.2rem;
  margin-top: 20px;
  line-height: 1.8;

}

.about-img {
  flex: 1;
  animation: fadeIn 1.5s ease-out;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
}

/* Slide In Left Animation */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 30px;
  }

  .about-text h1 {
    padding-right: 0;
    margin-bottom: 40px;
    font-size: 1.2rem;
  }

  .about-text p {
    justify-content: left;
  }

  .about-img img {
    max-width: 90%;
  }
}

.counter-section {
  background: hsl(0, 1%, 72%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.counter-box {
  padding: 20px;
}

.counter-box h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.counter-box p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-box {
  animation: countUp 1.5s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-box h1 {
    font-size: 2.5rem;
  }

  .counter-box p {
    font-size: 1rem;
  }
}

.vision-mission-section {
  background: #f8f9fa;
  padding: 100px 0;
  text-align: center;
}

.content-box {
  background: white;
  padding: 40px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.content-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .content-box h2 {
    font-size: 2rem;
  }

  .content-box p {
    font-size: 1rem;
  }
}


.contact-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.yacht {
  text-align: left;
}

#find-map {
  text-align: center;
  margin: 20px;
}

#map {
  height: 500px;
  width: 100%;
  border: 2px solid #ccc;
  margin-top: 20px;
}

.mega-section {
  height: 100vh;
  background-image: url('./imge/superyarchts.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.mega-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  animation: fadeIn 2s ease-out;
}

.mega-title {
  font-size: 4rem;
  font-weight: bold;
  animation: slideUp 1.5s ease-out;
}

.mega-description {
  font-size: 1.5rem;
  margin-top: 20px;
  animation: fadeIn 2s ease-out;
}

.btn-primary {
  background-color: #f7cccc;
  border: none;
  font-size: 1.2rem;
  padding: 15px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #0088cc;
}

@media (max-width: 768px) {
  .mega-title {
    font-size: 2rem;
  }

  .mega-description {
    font-size: 0.9rem;
  }

}

/* Animation */
/* @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes slideUp {
    0% {
      transform: translate(-50%, -60%);
    }
    100% {
      transform: translate(-50%, -50%);
    }
  }   */

.content-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  max-width: 5500px;

  animation: fadeInLeft 1.5s ease;
}

.text-section {
  padding: 30px;
  animation: fadeInRight 1.5s ease;

}

.text-section h2 {
  color: goldenrod;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    text-align: center;
  }

  .image-section img {
    max-width: 300px;
  }
}

.faq-container {
  max-width: 1300px;
  margin: 50px auto;
  padding: 20px;
  border: 1px solid #e5be02;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #2c3e50;
}

.faq-item {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #ecf0f1;
  border-radius: 6px;
  cursor: pointer;
}

.faq-item h3 {
  margin: 0;
  font-size: 18px;
  color: #34495e;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item p {
  display: none;
  padding: 10px 0;
  color: #7f8c8d;
}

.faq-item.active p {
  display: block;
}

.faq-item .icon {
  font-size: 18px;
  color: #3498db;
}

.features-container {
  max-width: 1300px;
  margin: 50px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background-color: #ecf0f1;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 40px;
  margin-right: 20px;
  color: #d7a449;
}

.feature-item .feature-content {
  flex: 1;
}

.feature-item h3 {
  margin: 0;
  font-size: 22px;
  color: #34495e;
}

.feature-item p {
  margin-top: 10px;
  color: hsla(180, 2%, 8%, 0.893);
  font-size: 16px;
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-item i {
    margin-bottom: 15px;
  }
}

.back-sec {

  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}



.zoom-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-image,
.right-image {
  width: 100%;
}

.left-image {
  max-width: 45%;
}

.right-image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 50%;
}

.right-image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 190px;
  border-radius: 8px;
}

.right-image img:hover {
  transform: scale(0.9);
}

@media (max-width: 768px) {

  .left-image,
  .right-image {
    max-width: 100%;
  }

  .right-image {
    grid-template-columns: 1fr;
  }
}

/* Container Styling */
.booking-container {
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;
}

.booking-details {
  padding: 20px;

}

.right img {
  width: 100%;
  height: auto;
  margin-top: 100px;
  /* Limit the height for large screens */
}

/* Mobile and Small Screens */
@media (max-width: 767px) {
  .booking-container {
    flex-direction: column;
    text-align: center;
  }

  .right img {
    max-height: 250px;
    /* Reduce image height on smaller screens */
  }
}

/* Larger Screens (Desktops & Tablets) */
@media (min-width: 768px) {
  .booking-details {
    padding: 40px;
  }

  .right img {
    max-height: 400px;
    /* Fixed height for larger screens */
  }
}

.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  text-align: center;
}


.hero-wrapper {
  background-image: url('./imge/coprate.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* .hero-content {
  font-size: 2rem;
  max-width: 800px;
  margin: 0 20px;
  margin-top: 60px;
  color: black;

} */
.cta-button {
  background-color: hsl(40, 6%, 9%);
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 5px;
}

.exclusive-packages {
  background: linear-gradient(135deg, #f0f0f0, #dfe6e9);
  padding: 50px 0;
}

.exclusive-packages h2,
.exclusive-packages p {
  opacity: 0;
  animation: zoomIn 1s forwards;
}

.exclusive-packages h2 {
  animation-delay: 0.5s;
}

.exclusive-packages p {
  animation-delay: 1s;
}

.package-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.package-item img {
  width: 60px;
  height: 60px;
}

.package-item h4 {
  margin-top: 15px;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .exclusive-packages .row {
    text-align: center;
  }
}

.corporate-section {
  padding: 50px 0;
  text-align: center;
}

.corporate-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.corporate-section img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.corporate-img {
  margin-bottom: 20px;

}

@media (max-width: 768px) {
  .corporate-img {
    margin-bottom: 30px;
  }
}

/* Hero Section */
.romantic-hero {
  height: 100vh;
  background: url('./imge/annbner.avif') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.romantic-hero h1 {
  font-size: 3rem;
  animation: fadeInDown 1.5s ease;
}

.romantic-hero p {
  font-size: 1.2rem;
  margin-top: 15px;
  animation: fadeInUp 2s ease;
}

.romantic-hero .btn {
  margin-top: 25px;
  animation: fadeIn 2.5s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Celebration Section */
.celebration-cards {
  padding: 60px 20px;
  text-align: center;
}

.celebration-cards h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.celebration-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celebration-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.celebration-card img {
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .romantic-hero h1 {
    font-size: 2.5rem;
  }

  .romantic-hero p {
    font-size: 1rem;
  }

  .celebration-cards h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .romantic-hero h1 {
    font-size: 2rem;
  }

  .romantic-hero p {
    font-size: 0.9rem;
  }
}

.anniversary-section {
  padding: 50px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.anniversary-text {
  color: #d7a449;
  flex: 1;
  animation: fadeInLeft 1.5s ease;
  line-height: 30px;
}

.anniversary-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.anniversary-text p {
  font-size: 2rem;
  line-height: 1.6;
}

.anniversary-img {
  flex: 1;
  animation: fadeInRight 1.5s ease;
}

.anniversary-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .anniversary-section {
    flex-direction: column;
    text-align: center;
  }

  .anniversary-text h2 {
    font-size: 2rem;
  }

  .anniversary-text p {
    font-size: 1rem;
  }

  .anniversary-img img {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .anniversary-text h2 {
    font-size: 1.8rem;
  }

  .anniversary-text p {
    font-size: 0.9rem;
  }
}

.proposal-section {
  padding: 50px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proposal-text {
  flex: 1;
  color: #d7a449;
  animation: fadeInLeft 1.5s ease;
}

.proposal-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.proposal-text p {
  font-size: 2rem;
  line-height: 1.6;
}

.proposal-img {
  flex: 1;
  animation: fadeInRight 1.5s ease;
}

.proposal-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .proposal-section {
    flex-direction: column;
    text-align: center;
  }

  .proposal-text h2 {
    font-size: 2rem;
  }

  .proposal-text p {
    font-size: 1rem;
  }

  .proposal-img img {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .proposal-text h2 {
    font-size: 1.8rem;
  }

  .proposal-text p {
    font-size: 0.9rem;
  }
}

.footer-bottom a {
  text-decoration: none;
}

.hero {
  background: url('./imge/web-banner.jpg.webp') no-repeat center center/cover;
  height: 100vh;
  color: #d7a449;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-weight: 900;
}

.features {
  padding: 50px 0;
}

.f1 {
  line-height: 40px;
  font-weight: 900;
}

@media(max-width:768px) {
  .hero {
    width: 100%;
    height: 500px;
  }
}

.nye-hero-section {
  position: relative;
  background-image: url('./imge/ny.webp');
  /* Replace with actual image URL */
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;


}

.nye-hero-section h1 {
  font-size: 3rem;
  font-weight: 900;

}

.nye-hero-section p {
  font-size: 1.5rem;
  margin: 20px 0;
}

@media(max-width:768px) {
  .nye-hero-section {
    height: 500px;
  }

  .nye-hero-section h1 {
    font-size: 1.2rem;
  }
}

/* .btn-primary {
  background-color: #ff9800;
  border: none;
}
.btn-primary:hover {
  background-color: #e68900;
} */
.nye-section {
  padding: 60px 20px;
}

.nye-section img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nye-footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}



.layout-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  gap: 20px;
  margin-top: 40px;
}

.text-content {
  flex: 1 1 40%;
  max-width: 50%;
}

.text-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #ab934f;
  font-weight: bold;
}

.text-content p {
  font-size: 1rem;
  line-height: 2.5;
  color: hsl(0, 3%, 6%);
  font-weight: 700;
}

.image-grid {
  flex: 1 1 50%;
  max-width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.image-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}


.image-grid img:hover {
  transform: scale(1.05);
}

.nye-section img {
  height: 260px;
}

@media (max-width: 768px) {

  .text-content,
  .image-grid {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .text-content {
    margin-bottom: 20px;
  }

  .text-content h1 {
    font-size: 2.2rem;
  }
}

.f1-hero-section {
  background: url('./imge/01\ \(2\).webp') center/cover no-repeat;
  /* Replace with your image */
  height: 100vh;
  /* Full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1.9;
  color: black;
  /* Text color for contrast */
  text-align: center;
}

.f1-hero-container {
  /* Semi-transparent black for text readability */
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 700px;
}

.f1-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  /* text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); */
}

.f1-subtitle {
  font-size: 1.25rem;
  margin-bottom: 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media(max-width:768px) {
  .f1-title {
    font-size: 2.9rem;
  }
}

.nye-sec {
  background-image: url(./imge/fibner.avif);
  background-repeat: no-repeat;

  background-size: cover;
  background-position: center;
  height: 400px;
  color: #fff;
  opacity: 1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nye-sec h2{
  font-size: 3rem;
  font-weight: 900;
}
.nye-sec p{
  font-weight: 900;
}
@media(max-width:768px){
  .nye-sec h2{
    font-size: 1.1rem;
  }
  .nye-sec p{
    font-weight: 400;
  }
}



