*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Jost", sans-serif;
}
/* Phones */
@media (max-width: 600px) {
  .gallery-item {
    flex: 1 1 100%;
  }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .gallery-item {
    flex: 1 1 48%;
  }
}

/* Desktops */
@media (min-width: 1025px) {
  .gallery-item {
    flex: 1 1 31%;
  }
}

/*Header Section*/
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(90deg, #fffaf8, #fff0f0);
    padding: 10px 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }
  
  /* Logo */
  .logo img{
    width: 100px;
  }
  .logo span{
    color: rgb(255, 0, 0);
  }
  .logo-text{
    margin-left: -8px;
  }
  
  .logo:hover {
    transform: rotate(2deg) scale(1.05);
  }
  
/* Navigation Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Login Link */
.login-link {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #ff6b6b;
}


/* Staggered Animation Delays */
.nav-link:nth-child(1) { animation-delay: 0.2s; }
.nav-link:nth-child(2) { animation-delay: 0.3s; }
.nav-link:nth-child(3) { animation-delay: 0.4s; }
.nav-link:nth-child(4) { animation-delay: 0.5s; }
.nav-link:nth-child(5) { animation-delay: 0.6s; }
.nav-link:nth-child(6) { animation-delay: 0.7s; }

/* Hover Effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff6b6b, #ff8e53);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Gradient Buttons */
.btn-book{
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1.0rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: white;
  transition: all 0.3s ease;
}

.btn-book:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .btn-book {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}
.btn-signin{
  background-color: white;
  color: #ea1538;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 13px 30px;
  border-radius: 25px;
  transition: .4s;
}
.btn-signin a{
color: #ea1538;
}
.btn-signin:hover{
  background-color:  #ea1538;
  color: white;
  border: 1px solid white;
}
 /* Hero Section */
 
 .hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('image/Aboutimg.png'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  height: 70vh; 
  color: white; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center;
  padding: 0 10%; 
  overflow: hidden; 
  border-radius: 0 0 12px 12px; 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  flex-direction: column; 
  justify-content: center; 
  position: relative;
  }

  .hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    color: #ffffff;
  }

  .hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
    color: #cacaca;
  }
  /* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366; /* WhatsApp Green */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
  }

  .whatsapp-chat:hover {
    background: #128C7E;
    transform: scale(1.05);
  }

  .whatsapp-icon {
    font-size: 24px;
  }

  .chat-text {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    color: white;
  }

  /* Tooltip */
  .whatsapp-chat::before {
    content: "Chat with us!";
    position: absolute;
    top: -40px;
    right: 0;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .whatsapp-chat:hover::before {
    opacity: 1;
    visibility: visible;
  }

  /* Animation */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 480px) {
    .chat-text {
      display: none;
    }

    .whatsapp-chat {
      padding: 12px;
      bottom: 20px;
      right: 20px;
    }
  }

  /* About Section */
  .about-section {
    padding: 90px 5%;
    background-color: #ffffff;
  }

  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff0000;
  }

  .about-content p {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
   /* About Section1 */
  .about-section1 {
    padding: 90px 5%;
    background: linear-gradient(135deg, #fffaf8, #fff0f0);
  }

  .about-container1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-image1 img {
    width: 100%;
    height: 550px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .about-content1 h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000000;
  }

  .about-content1 p {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  /* About Section2 */
  .about-section2 {
    padding: 90px 5%;
    background-color: #fffaf8(0, 0%, 100%);
  }

  .about-container2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-image2 img {
    width: 100%;
    height: 550px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  .about-content2 h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff0000;
  }

  .about-content2 p {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .team-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.team-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-photo img.team-group-image {
  width: 100%;
  max-width: 700px; /* Reduced size */
  height: auto;
  margin: 0 auto 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: block;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.member-image-wrapper img.team-member-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.member-name {
    font-size: 1.2rem;
    color: #222;
    margin: 10px 0 5px;
}

.member-designation {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
}
/* ======= MOBILE FIRST BASE STYLES ======= */
body, html {
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* ======= COMMON SECTION PADDING ======= */
section {
  padding: 60px 0;
}

/* ======= NAVBAR RESPONSIVE FIX ======= */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background-color: #fffaf8;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-link {
    padding: 10px 0;
  }
}

/* ======= HERO SECTION ======= */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 0 5%;
    background-attachment: scroll;
  }

  .animated-text {
    font-size: 2rem;
  }
}

/* ======= ABOUT SECTION ======= */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-left: 0;
    justify-content: center;
  }

  .about-image img {
    width: 90%;
    margin: 0 auto;
  }

  .about-content {
    width: 100%;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }
}

/* ======= GALLERY SECTION ======= */
@media (max-width: 600px) {
  .gallery-item {
    flex: 1 1 100%;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .gallery-item {
    flex: 1 1 48%;
  }
}

@media (min-width: 1025px) {
  .gallery-item {
    flex: 1 1 31%;
  }
}

/* ======= SERVICE SECTION ======= */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.9rem;
  }
}

/* ======= WHATSAPP BUTTON ======= */
@media (max-width: 480px) {
  .whatsapp-chat {
    right: 20px;
    bottom: 20px;
    padding: 10px;
  }

  .chat-text {
    display: none;
  }
}

/*Footer Section*/
.footer {
    background: linear-gradient(135deg, #e2dad6, #fae4e4);
    padding: 80px 5% 40px;
    color: #333;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

  /* Footer Columns */
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-column h2{
    color: #ff0000;
    font-size: 35px;
  }
span{
    color: rgb(255, 0, 0);
}
.footer-logo{
    margin-top: -80px;
  }
  .footer-logo img{
    width: 200px;
  }
  .footer-logo-text{
    font-size: 30px;
  }
  .footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
  }

  /* Social Media Links */
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .social-icons a:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    transform: translateY(-5px);
  }

  /* Contact Info */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-info a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }

  .contact-info a:hover {
    color: #ff6b6b;
  }

  /* Newsletter Form */
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
    width: 100%;
  }

  .newsletter-form button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;

    display: block;

    background-color: rgb(255, 255, 255);
    color: #ff1919;
    text-decoration: none;
    transition: .4s;
    
  }

  .newsletter-form button:hover {
    background-color:  #ff2a2a;
    color: rgb(255, 255, 255);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
  }

  /* CTA Text */
  .cta-subscribe {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
  }

  /* Footer Bottom */
  .footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    font-size: 0.85rem;
    color: #666;
  }

  /* Animations */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-column:nth-child(1) {
      order: -1;
    }
  }
    /* Responsive base layouts */
    .navbar, .nav-links, .about-container, .about-container1, .about-container2, .team-members, .footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .nav-links { flex-direction: row; }
    .menu-toggle { display: none; }

    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        display: none;
      }
      .nav-links.active { display: flex; }
      .menu-toggle {
        display: flex;
        cursor: pointer;
        flex-direction: column;
        gap: 4px;
      }
      .about-container, .about-container1, .about-container2 {
        flex-direction: column;
      }
      .team-members {
        flex-direction: column;
        align-items: center;
      }
      .footer-container {
        flex-direction: column;
        text-align: center;
      }
    }
    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #000;
    }