/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Account for fixed navbar */
  }
  
  
  /* Light (300) */
  /*@font-face {*/
  /*  font-family: 'Poppins';*/
  /*  font-style: normal;*/
  /*  font-weight: 300;*/
  /*  src: url('assets/fonts/Poppins-Light.woff2') format('woff2'),*/
  /*       url('assets/fonts/Poppins-Light.woff') format('woff');*/
  /*  font-display: swap;*/
  /*}*/
  
   /*Regular (400) */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/Poppins-Regular.woff2') format('woff2'),
         url('assets/fonts/Poppins-Regular.woff') format('woff');
    font-display: swap;
  }
  
   /*Semi-bold (600) */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('assets/fonts/Poppins-SemiBold.woff2') format('woff2'),
         url('assets/fonts/Poppins-SemiBold.woff') format('woff');
    font-display: swap;
  }
  
  /* Bold (700) */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/Poppins-Bold.woff2') format('woff2'),
         url('assets/fonts/Poppins-Bold.woff') format('woff');
    font-display: swap;
  }
  
  
  body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
  }
  
  
  .page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff; /* or brand color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  } 

  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(198, 0, 5, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }
  

/* Navigation Logo */
.nav-logo picture img {
  width: 100%;
  max-width: 160px; /* Increased logo size for desktop */
  height: auto;
  object-fit: contain;
}

  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-link {
    text-decoration: none;
    line-height: "";
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 0px 6px;
  }
  
  .nav-link:hover {
    color: #2c5aa0;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Hamburger animation when active */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 2;
  }

  /* Use small viewport units where supported for better mobile behavior */
  @supports (height: 100svh) {
    .hero {
      height: 100svh;
    }
    .hero-background {
      min-height: 100svh;
    }
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
  width: 100%;
    min-height: 100vh; /* or fixed height like 600px */
    background:'#fff';
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  /* Ensure the <picture> element fills the hero container */
  .hero-background,
  .hero-background picture {
    display: block;
    height: 100%;
  }
  .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure hero image covers the section */
    object-position: center;
  }
  
  .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 2;
  }
  
  .hero-slide.active {
    opacity: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    max-width: min(800px, 90vw);
    padding: 0 clamp(10px, 5vw, 20px);
    width: 100%;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: #f0f8ff;
    animation: fadeInUp 1s ease 0.2s both;
  }
  
  .hero-description {
    font-size: clamp(1.3rem, 2.4vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.5;
  }
  
  .hero-buttons {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
    margin-top: 1rem;
  }
  .hero-buttons .btn {
    flex: 0 1 auto;
  }
  
  .btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    min-width: 140px;
    text-align: center;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  }
  
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-secondary:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
  }
  
  .btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .btn-whatsapp svg {
    flex-shrink: 0;
    vertical-align: middle;
  }
  
  .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  }
  
  .submit-btn{
      margin-top: 20px;
  }
  
  
  /* Slider Navigation */
  .slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(15px, 4vw, 30px);
    z-index: 10;
    pointer-events: none;
  }
  
  .slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
  }
  
  .slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
  }
  
  .slider-btn:active {
    transform: scale(0.95);
  }
  
  .slider-btn i {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
  
  /* Slider Dots */
  .slider-dots {
    position: absolute;
    bottom: clamp(30px, 6vw, 50px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    z-index: 10;
  }
  
  .dot {
    width: clamp(10px, 2vw, 12px);
    height: clamp(10px, 2vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  
  .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: clamp(20px, 4vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    animation: bounce 2s infinite;
    z-index: 10;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
  
  /* Promotional Section */
  .promotional-section {
    padding: 0 0 100px 0;
    background: white;
    width: 100%;

  }
  
  .promotional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
  }
  
  .promotional-text {
    padding-right: 2rem;
  }
  
  .promotional-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #000;
    line-height: 1.1;
    margin-bottom: 2rem;
  }
  
  .title-line {
    display: block;
    margin-bottom: 0.2rem;
  }
  
  .promotional-subtitle {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
  }
  
  .promotional-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 500px; /* Limit height to prevent oversized images */
    overflow: hidden; /* Prevent bleed into next sections */
  }
  
  .promotional-image picture,
  .promotional-image img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .promotional-image img {
    object-fit: cover;
    object-position: center;
  }
  
  .promotional-image:hover img {
    transform: scale(1.05);
  }
  
  .promotional-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(135, 206, 235, 0.3),
      rgba(135, 206, 235, 0.1)
    );
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1000;
  }
  
  /* Section Styles */
  section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
  }
  
  /* Ensure proper spacing between sections */
  section + section {
    margin-top: 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c5aa0;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  /* Features Section */
  .features {
    background: #f8f9fa;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    overflow: hidden;
    /* border: 3px solid #e9ecef; */
  }
  
  .feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c5aa0;
  }
  
  .feature-card p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Gallery Section */
  .gallery-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
  }
  
  .gallery-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  
  .gallery-scroll::-webkit-scrollbar {
    display: none; /* WebKit */
  }
  
  .gallery-item {
    position: relative;
    flex: 0 0 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(44, 90, 160, 0.8),
      rgba(74, 144, 226, 0.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  .gallery-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
  }
  
  .gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .gallery-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
  }
  
  .gallery-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .gallery-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.5);
  }
  
  .gallery-btn:active {
    transform: translateY(-1px);
  }
  
  .gallery-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .gallery-btn:not(:disabled) {
    cursor: pointer;
  }
  
  /* Testimonials Section */
  .testimonials {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
  }
  
  .testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("assets/back.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
  }
  
  .testimonials .container {
    position: relative;
    z-index: 2;
  }
  
  .testimonials .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .testimonials-scroll-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 20px;
  }
  
  .testimonials-scroll {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  
  .testimonials-scroll::-webkit-scrollbar {
    display: none; /* WebKit */
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 0 0 500px;
    width: 500px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 25px;
    font-size: 5rem;
    color: #2c5aa0;
    font-family: serif;
    opacity: 0.3;
  }
  
  .testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.7;
    text-align: center;
  }
  
  .testimonial-author {
    text-align: center;
  }
  
  .testimonial-author h4 {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
  }
  
  .testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .testimonial-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .testimonial-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .testimonial-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
  }
  
  .testimonial-btn:active {
    transform: translateY(-1px);
  }
  
  .testimonial-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .testimonial-btn:not(:disabled) {
    cursor: pointer;
  }
  
  /* About Section */
  .about {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
  }
  
  .about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 90, 160, 0.05), rgba(74, 144, 226, 0.05)),
      url("https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
  }
  
  .about .container {
    position: relative;
    z-index: 2;
  }
  
  .about-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .about-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-top: 1rem;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  
  .about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-intro h3,
  .about-story h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1rem;
  }
  
  .about-intro p,
  .about-story p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
  }
  
  .about-visual {
    position: relative;
  }
  
  .about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .about-image:hover .image-overlay {
    opacity: 1;
  }
  
  .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2c5aa0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .play-button:hover {
    background: white;
    transform: scale(1.1);
  }
  
  /* Contact Section */
  .contact {
    background: #f8f9fa;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .contact-item svg {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
  }
  
  .contact-item h3 {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .contact-item p {
    color: #666;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px;
    transition: transform 0.3s ease;
  }
  
  .social-link svg {
    width: 20px;
    height: 20px;
  }
  
  .social-link:hover {
    transform: translateY(-3px);
  }
  
  .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Booking Section */
  .booking {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    text-align: center;
  }
  
  .booking-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .booking-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .booking-buttons {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }
  
  /* Footer */
  .footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section h3,
  .footer-section h4 {
     color: #f8f9fa;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  
  .footer-section p {
     color: #f8f9fa;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #2c5aa0;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .hero-content {
      max-width: 95vw;
      padding: 1rem clamp(10px, 5vw, 20px);/
      /* margin-top: 50px; */
    }
  
    .slider-nav {
      padding: 0 20px;
    }
  }
  
  @media (max-width: 768px) {
    /* Prevent fixed backgrounds issues and ensure safe spacing below fixed navbar */
    .hero {
      padding-top: calc(70px + env(safe-area-inset-top, 0px));
      height: auto;
      min-height: 80vh;
    }
    .hero-background {
      background-attachment: scroll;
      min-height: 60vh;
    }
    @supports (min-height: 60svh) {
      .hero {
        min-height: 60svh;
      }
      .hero-background {
        min-height: 60svh;
      }
    }
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color:rgba(198, 0, 5, 1);
      width: 100%;
      text-align: center;
      transition: left 0.3s ease-in-out;
      box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
      padding: 1rem 0;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
      scroll-behavior: smooth;
    }
  
    /* Custom scrollbar for webkit browsers */
    .nav-menu::-webkit-scrollbar {
      width: 6px;
    }
  
    .nav-menu::-webkit-scrollbar-track {
      background: transparent;
    }
  
    .nav-menu::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.3);
      border-radius: 3px;
    }
  
    .nav-menu::-webkit-scrollbar-thumb:hover {
      background: rgba(255, 255, 255, 0.5);
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-menu li {
      margin: 0.6rem 0;
      padding: 0 1rem;
    }
  
    .nav-menu .nav-link {
      display: block;
      padding: 1px 20px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.3s ease;
      margin: 0 10px;
    }
  
    .nav-menu .nav-link:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      transform: translateX(5px);
    }
  
    .nav-menu .nav-link::after {
      display: none;
    }
   .hero-title {
       font-size: clamp(1.5rem, 5vw, 2.2rem);
       line-height: 1.2;
       margin-bottom: 0.8rem;
     }
   
     .hero-subtitle {
       display: none; /* Hide subtitle on mobile to save space */
     }
   
     .hero-description {
       font-size: clamp(0.9rem, 2.5vw, 1rem);
       line-height: 1.4;
       margin-bottom: 1.5rem;
     }
    .hero-buttons {
      flex-direction: column;
      align-items: center;
      gap: clamp(0.5rem, 2vw, 0.8rem);
      width: 100%;
    }
  
    .btn {
      width: 100%;
      max-width: min(280px, 90vw);
      padding: clamp(10px, 2.5vw, 14px) clamp(20px, 4vw, 28px);
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      border-radius: 25px;
    }
    .hero-buttons .btn {
      flex: 1 1 auto;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .contact-content {
      grid-template-columns: 1fr;
    }
  
    .booking-buttons {
      flex-direction: column;
      align-items: center;
      gap: clamp(0.6rem, 1.5vw, 1rem);
    }
    
    .booking-buttons .btn {
      width: 100%;
      max-width: min(300px, 90vw);
      padding: clamp(12px, 3vw, 16px) clamp(20px, 4vw, 30px);
      font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
  
    .testimonial-card {
      flex: 0 0 350px;
      width: 350px;
      padding: 2rem;
    }
  
    .instagram-posts {
      grid-template-columns: 1fr;
    }
  
    .gallery-item {
      flex: 0 0 250px;
      height: 250px;
    }
  
    .promotional-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
  
    .promotional-text {
      padding-right: 0;
      order: 2;
    }
  
    .promotional-image {
      order: 1;
      height: 300px;
    }
  
    .promotional-title {
      font-size: 2.5rem;
    }
    .nav-logo picture img {
      max-width: 140px; /* Increased logo size for mobile */
    }
  
    .hero {
      height: 60vh; /* Reduced hero section height for mobile */
      min-height: 400px; /* Ensure minimum usable height */
    }
  
    .promotional-image {
      max-height: 400px; /* Adjust height for mobile */
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
  
    .hero-content {
      padding: 0 15px;
        margin-top: 2rem;
        padding-top: 3rem;
  
    }
    .hero-title {
      font-size: clamp(1.3rem, 4.5vw, 1.6rem);
      line-height: 1.2;
      margin-bottom: 0.6rem;
    }
  
    .hero-subtitle {
      display: none; /* Hide subtitle on small screens to save space */
    }
  
    .hero-description {
      font-size: clamp(0.8rem, 2.2vw, 0.85rem);
      line-height: 1.3;
      margin-bottom: 1.2rem;
    }
  
    .hero-buttons {
      gap: clamp(0.4rem, 1.5vw, 0.5rem);
    }
    .section-title {
      font-size: 1.8rem;
    }
  
    .feature-card,
    .testimonial-card,
    .contact-form {
      padding: 1.5rem;
    }
  
    .testimonial-content p {
      font-size: 1rem;
    }
  
    .testimonial-card::before {
      font-size: 3rem;
      top: -10px;
      left: 20px;
    }
  
    .testimonial-card {
      flex: 0 0 280px;
      width: 280px;
      padding: 1.5rem;
    }
  
    .testimonial-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
  
    .about-intro h3,
    .about-story h3 {
      font-size: 1.5rem;
    }
  
    .about-image img {
      height: 300px;
    }
  
    .play-button {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
  
    .gallery-item {
      flex: 0 0 200px;
      height: 200px;
    }
  
    .gallery-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
 
    .promotional-title {
      font-size: 2rem;
    }
  
    .promotional-subtitle {
      font-size: 1rem;
    }
  
    .promotional-image {
      height: 250px;
    }
    .footer-content {
      display: grid;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-bottom: 2rem;
    }

    .nav-logo picture img {
      max-width: 120px; /* Increased logo size for small screens */
    }
  
    .hero {
      height: 50vh; /* Further reduced hero height for small screens */
      min-height: 450px; /* Ensure minimum usable height */
    }
  
    .promotional-image {
      max-height: 300px; /* Smaller height for very small screens */
    }
    
    .booking-buttons {
      gap: clamp(0.5rem, 1.2vw, 0.8rem);
    }
    
    .booking-buttons .btn {
      max-width: min(260px, 80vw);
      padding: clamp(10px, 2.5vw, 14px) clamp(16px, 3vw, 22px);
      font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
  }
  
  /* Extra small screens and landscape phones */
  @media (max-width: 360px) {
    .hero-content {
      padding: 0 10px;
      margin-top: 1rem;
    }
   .hero-title {
      font-size: clamp(1.2rem, 4vw, 1.6rem);
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }
  
    .hero-subtitle {
      display: none; /* Hide subtitle on extra small screens to save space */
    }
  
    .hero-description {
      font-size: clamp(0.75rem, 2vw, 0.85rem);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .hero-buttons {
      gap: clamp(0.3rem, 1vw, 0.5rem);
    }
  
    .btn {
      padding: 10px 15px;
      font-size: 0.85rem;
      min-width: 120px;
    }
  
    .nav-menu {
      padding: 1.5rem 0;
    }
  
    .nav-menu li {
      margin: 0.6rem 0;
      padding: 0 0.5rem;
    }
  
    .nav-menu .nav-link {
      padding: 10px 15px;
      font-size: 15px;
      margin: 0 5px;
    }
    .promotional-image {
      max-height: 200px; /* Smaller height for very small screens */
    }
    .footer-content {
      display: grid;
      justify-content: center;
      align-items: center;
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .booking-buttons {
      gap: clamp(0.4rem, 1vw, 0.6rem);
    }
    
    .booking-buttons .btn {
      max-width: min(240px, 75vw);
      padding: clamp(8px, 2vw, 12px) clamp(14px, 2.5vw, 20px);
      font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    }
  }
  
  /* Landscape orientation adjustments */
  @media (max-height: 500px) and (orientation: landscape) {
    .hero {
      height: 100vh;
    }
  
    .hero-content {
      padding: 0 20px;
    }
  
    .hero-title {
      font-size: clamp(1.5rem, 4vw, 2.5rem);
      margin-bottom: 0.5rem;
    }
  
    .hero-description {
      font-size: clamp(0.7rem, 1.8vw, 0.9rem);
      margin-bottom: 0.8rem;
      line-height: 1.2;
    }
  
    .hero-buttons {
      margin-top: 0.3rem;
      gap: clamp(0.2rem, 0.8vw, 0.4rem);
    }
  
    .slider-dots {
      bottom: 20px;
    }
  
    .scroll-indicator {
      bottom: 15px;
    }
    
    .booking-buttons {
      gap: clamp(0.3rem, 0.8vw, 0.5rem);
    }
    
    .booking-buttons .btn {
      max-width: min(200px, 60vw);
      padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2vw, 18px);
      font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    }
  }
  
  /* Smooth scrolling for anchor links */
  html {
    scroll-behavior: smooth;
  }
  
  /* Loading animation */
  .loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  