* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Raleway', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: #fff;
      color: #000;
      overflow-x: hidden;
    }

    /* Navigation Styling */
    .masthead {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .top-bar {
      background: #f5f5f5;
      padding: 12px 20px;
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mini-contacts {
      display: inline-block;
      margin-right: 25px;
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .mini-contacts:hover {
      color: #c73d21;
    }

    .mini-contacts i {
      margin-right: 8px;
      color: #c73d21;
    }

    .header-bar {
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
    }

    .branding a {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .branding img {
      max-height: 70px;
      width: auto;
    }

    .main-nav {
      display: flex;
      list-style: none;
      gap: 0;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    .menu-item {
      position: relative;
      margin: 0;
      padding: 0;
    }

    .menu-item > a {
      display: block;
      padding: 15px 18px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      position: relative;
    }

    .menu-item > a:hover {
      color: #c73d21;
    }

    .menu-item > a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: #c73d21;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .menu-item > a:hover::after {
      transform: scaleX(1);
    }

    .vutton {
      background-color: #c73d21 !important;
      border: none;
      padding: 10px 25px !important;
      text-align: center;
      cursor: pointer;
      border-radius: 4px;
      margin-left: 10px;
    }

    .vutton a {
      color: #fff !important;
      text-decoration: none !important;
      font-weight: 600;
      font-size: 13px !important;
    }

    /* Hero Section */
    .hero {
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  text-align: center;
  min-height: calc(100vh - 140px);
  margin-top: 140px;
  position: relative;
  overflow: hidden;
}


    .hero::before {
      background: transparent;
      content: none;
  opacity: 01;
    }

    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

   .hero-content {
  max-width: 900px;
  padding: 0 20px;
  color: #fff;
}


    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: #fff;
      animation: fadeInUp 1s ease;
    }

    .hero .subtitle {
      font-size: clamp(1rem, 2.5vw, 1.8rem);
      margin-bottom: 2rem;
      color: #ffd9d0;
      font-weight: 300;
      animation: fadeInUp 1s ease 0.2s backwards;
    }

    .hero p {
      font-size: clamp(0.95rem, 1.8vw, 1.2rem);
      margin-bottom: 3rem;
      color: rgba(255,255,255,0.9);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease 0.4s backwards;
      line-height: 1.6;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .cta-button {
      display: inline-block;
      padding: 16px 45px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      color: #fff;
      background: #c73d21;
      border-radius: 4px;
      transition: all 0.3s ease;
      animation: fadeInUp 1s ease 0.6s backwards;
      position: relative;
      overflow: hidden;
      border: 2px solid #c73d21;
      margin: 0 8px;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.2);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(199, 61, 33, 0.4);
    }

    .cta-button.secondary {
      background: transparent;
      color: #fff;
      border-color: #fff;
    }

    .cta-button.secondary:hover {
      background: rgba(255,255,255,0.1);
    }

    /* Section Styles */
    section {
      padding: 80px 40px;
      margin: 0;
    }

    section:nth-child(even) {
      background: #f9f9f9;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 900;
      margin-bottom: 20px;
      color: #333;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: #c73d21;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .section-description {
      font-size: 1rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* Cards Grid */
    .cards-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
    }

    .card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      position: relative;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      background: linear-gradient(135deg, #c73d21 0%, #a83220 100%);
    }

    .card-content {
      padding: 30px;
    }

    .card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #333;
      font-weight: 700;
    }

    .card p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .card-link {
      display: inline-block;
      padding: 12px 30px;
      background: #c73d21;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 13px;
    }

    .card-link:hover {
      background: #a83220;
      transform: translateX(5px);
    }

    /* Features Grid */
    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }

    .feature-card {
      padding: 40px 30px;
      background: #fff;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      transition: all 0.3s ease;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .feature-card:hover {
      background: #fafafa;
      border-color: #c73d21;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: #f2f2f2;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }

    .feature-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-weight: 700;
      color: #333;
    }

    .feature-card p {
      color: #666;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonials-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .testimonial-card {
      background: #fff;
      padding: 35px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      border-left: 4px solid #c73d21;
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      gap: 15px;
    }

    .testimonial-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #c73d21, #a83220);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.3rem;
    }

    .testimonial-info h4 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 5px;
    }

    .stars {
      color: #ffa500;
      font-size: 0.9rem;
    }

    .testimonial-text {
      color: #666;
      line-height: 1.7;
      font-style: italic;
      font-size: 0.95rem;
    }

    /* Fade In Animation */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Dropdown Menu */
    .has-dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 240px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      border-radius: 4px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
      padding: 10px 0;
    }

    .has-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu li {
      list-style: none;
    }

    .dropdown-menu a {
      display: block;
      padding: 12px 20px;
      color: #333;
      text-decoration: none;
      font-size: 13px;
      transition: all 0.2s ease;
      border-left: 3px solid transparent;
    }

    .dropdown-menu a:hover {
      background: #f9f9f9;
      color: #c73d21;
      border-left-color: #c73d21;
      padding-left: 25px;
    }

    /* Multi-column Dropdown */
    .dropdown-columns {
      display: flex;
      min-width: 600px;
      padding: 20px 0;
    }

    .dropdown-column {
      flex: 1;
      padding: 0 20px;
      border-right: 1px solid #e0e0e0;
    }

    .dropdown-column:last-child {
      border-right: none;
    }

    .dropdown-column h4 {
      font-size: 0.9rem;
      color: #c73d21;
      margin-bottom: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .left-widgets, .right-widgets {
    width: 100%;
  }
  
  .mini-contacts {
    display: block;
    margin: 5px 0;
  }
  
  .header-bar {
    padding: 15px 20px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 140px;
    left: -100%;
    width: 100%;
    max-width: 350px;
    height: calc(100vh - 140px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    gap: 0;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .menu-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  
  .menu-item > a {
    padding: 15px 10px;
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
    margin-top: 0;
  }
  
  .menu-item.has-dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .dropdown-menu.dropdown-columns {
    flex-direction: column;
    min-width: 100%;
  }
  
  .dropdown-column {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 10px;
  }
  
  .menu-item.vutton {
    margin-left: 0;
    margin-top: 10px;
  }
}


/* ==================== CAROUSEL STYLING - 2 CARDS DESKTOP, 1 MOBILE ==================== */

.carousel-container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background: #fff;
}

.carousel-header {
  text-align: center;
  padding: 60px 20px 40px;
  background: #fff;
}

.carousel-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c2c2c;
}

/* Desktop: 2 Cards Side by Side */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Package Card Styling - 2 Cards on Desktop */
.carousel-track .package-card,
.carousel-track .card {
  min-width: calc(50% - 15px);
  flex: 0 0 calc(50% - 15px);
  position: relative;
  overflow: hidden;
  background: #000;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-track .package-image,
.carousel-track .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* White Content Box - Centered and overlaid like screenshot */
.carousel-track .package-content,
.carousel-track .card-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 30px 35px;
  text-align: center;
  max-width: 450px;
  width: 85%;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  z-index: 5;
  border-radius: 4px;
}

.carousel-track .package-card h3,
.carousel-track .card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #2c2c2c;
  font-weight: 700;
  line-height: 1.3;
}

.carousel-track .package-card p,
.carousel-track .card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

/* Read More Link - EXACTLY like screenshot */
.carousel-track .package-link,
.carousel-track .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.carousel-track .package-link:after,
.carousel-track .card-link:after {
  content: '▶';
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.carousel-track .package-link:hover,
.carousel-track .card-link:hover {
  color: #c73d21;
  border-bottom-color: #c73d21;
}

.carousel-track .package-link:hover:after,
.carousel-track .card-link:hover:after {
  transform: translateX(5px);
}

/* Navigation Arrows - Desktop Style */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #e0e0e0;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
  background: #c73d21;
  color: #fff;
  border-color: #c73d21;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(199, 61, 33, 0.3);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #c73d21;
  width: 30px;
  border-radius: 5px;
}

.indicator:hover {
  background: #999;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 32px;
  color: #fff;
}

/* Tablet - Show 1 card */
@media (max-width: 1024px) {
  .carousel-wrapper {
    padding: 0 70px;
  }
  
  .carousel-track .package-card,
  .carousel-track .card {
    min-width: 100%;
    flex: 0 0 100%;
    height: 550px;
  }
  
  .carousel-track {
    gap: 0;
  }
}

/* Mobile Responsive - Single Full-Width Card with Centered Box */
@media (max-width: 768px) {
  .carousel-container {
    padding: 0;
  }
  
  .carousel-header {
    padding: 40px 20px 30px;
  }
  
  .carousel-wrapper {
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
  }
  
  .carousel-track .package-card,
  .carousel-track .card {
    min-width: 100vw;
    width: 100vw;
    flex: 0 0 100vw;
    height: 75vh;
    min-height: 450px;
    max-height: 600px;
    border-radius: 0;
  }
  
  .carousel-track .package-image,
  .carousel-track .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-track .package-content,
  .carousel-track .card-content {
    bottom: 30px;
    padding: 25px 30px;
    max-width: 85%;
    width: auto;
  }
  
  .carousel-track .package-card h3,
  .carousel-track .card h3 {
    font-size: 1.4rem;
  }
  
  .carousel-track .package-card p,
  .carousel-track .card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .carousel-nav {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
    border-radius: 0;
    border: none;
  }
  
  .carousel-nav.prev {
    left: 0;
  }
  
  .carousel-nav.next {
    right: 0;
  }
  
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
  }
  
  .whatsapp-float i {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .carousel-track .package-card,
  .carousel-track .card {
    height: 70vh;
    min-height: 400px;
    max-height: 550px;
  }
  
  .carousel-track .package-content,
  .carousel-track .card-content {
    bottom: 25px;
    padding: 20px 25px;
    max-width: 90%;
  }
  
  .carousel-track .package-card h3,
  .carousel-track .card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .carousel-track .package-card p,
  .carousel-track .card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .carousel-track .package-link,
  .carousel-track .card-link {
    font-size: 0.9rem;
  }
  
  .carousel-nav {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }
  
  .whatsapp-float i {
    font-size: 26px;
  }
}

/* Reviews Carousel - Similar styling */
.review-card {
  min-width: 100%;
  flex: 0 0 100%;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.review-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.review-card .stars {
  color: #ffa500;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.review-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .review-card {
    padding: 30px 20px;
  }
}