 /* Base Styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaf8;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
/*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;
  } 

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; /* removes underline */
    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;
    }
  }
/* Hero Section*/
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('image/New\ Service.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;
  }

  .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: rgb(255, 255, 255);
  }
  /* Main Title */
.section-title {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
  .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgb(255, 0, 0);
    max-width: 700px;
    margin: 0 auto 60px;
  }

  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 5%;
  }

  .service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
  }

  .service-card:nth-child(1) { animation-delay: 0.2s; }
  .service-card:nth-child(2) { animation-delay: 0.4s; }
  .service-card:nth-child(3) { animation-delay: 0.6s; }
  .service-card:nth-child(4) { animation-delay: 0.8s; }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
  }

  .service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .service-content {
    padding: 20px;
  }

  .service-icon {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 10px;
  }

  .service-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .service-description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .service-description.expanded {
    max-height: 300px;
  }

  .read-more {
    color: #ff6b6b;
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s ease;
  }

  .read-more:hover {
    color: #d95a5a;
  }

  /* Animation */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* CTA Button */
  .cta-button {
    display: block;
    margin: 60px auto 0;
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }

  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .service-description {
      max-height: 100px;
    }
  }

  /* ======= 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);
    text-decoration: none;
  }

  .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;
    }
  }
