
    * {
      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 {
  background: url('zebra-homepage.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

   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;
}


    .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.4rem;
      margin-bottom: 15px;
      color: #333;
      font-weight: 700;
    }

    .feature-card p {
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    /* Safari Package Carousel */
    .safari-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      padding: 20px 60px;
    }

    .carousel-track {
      display: flex;
      gap: 30px;
      transition: transform 0.5s ease;
    }

    .package-card {
      flex: 0 0 calc(33.333% - 20px);
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .package-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .package-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .package-content {
      padding: 25px;
    }

    .package-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #333;
    }

    .package-duration {
      color: #c73d21;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 15px;
    }

    .package-description {
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .package-link {
      display: inline-block;
      padding: 12px 25px;
      background: #c73d21;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 13px;
    }

    .package-link:hover {
      background: #a83220;
    }

    .carousel-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.95);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.15);
      z-index: 10;
    }

    .carousel-button:hover {
      background: #c73d21;
      color: #fff;
      box-shadow: 0 6px 20px rgba(199, 61, 33, 0.4);
    }

    .carousel-button.prev {
      left: 10px;
    }

    .carousel-button.next {
      right: 10px;
    }

    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: #c73d21;
      width: 30px;
      border-radius: 6px;
    }

    /* Dropdown Menu Styles */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      min-width: 250px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 1000;
      border-radius: 4px;
      margin-top: 0;
      padding: 10px 0;
    }

    .menu-item: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;
      transition: all 0.3s ease;
    }

    .dropdown-menu a:hover {
      background: #f5f5f5;
      color: #c73d21;
      padding-left: 25px;
    }

    /* Dropdown Columns for Trekking */
    .dropdown-columns {
      display: flex;
      min-width: 600px;
    }

    .dropdown-column {
      flex: 1;
      padding: 0 15px;
      border-right: 1px solid #eee;
    }

    .dropdown-column:last-child {
      border-right: none;
    }

    .dropdown-column-title {
      font-weight: 700;
      color: #c73d21;
      padding: 12px 20px 8px;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* TripAdvisor Review Card Styles */
    .review-card {
      flex: 0 0 calc(33.333% - 20px);
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .review-author {
      font-weight: 700;
      color: #333;
      font-size: 1.1rem;
    }

    .review-rating {
      color: #00aa6c;
      font-size: 1.1rem;
    }

    .review-text {
      color: #666;
      line-height: 1.6;
      margin-bottom: 15px;
      font-size: 0.95rem;
    }

    .review-date {
      color: #999;
      font-size: 0.85rem;
    }

    .tripadvisor-logo {
      text-align: center;
      margin-top: 40px;
    }

    .tripadvisor-logo img {
      max-width: 200px;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }

    .tripadvisor-logo img:hover {
      opacity: 1;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .package-card,
      .review-card {
        flex: 0 0 calc(50% - 15px);
      }

      .dropdown-columns {
        flex-direction: column;
        min-width: 250px;
      }

      .dropdown-column {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
      }

      .dropdown-column:last-child {
        border-bottom: none;
      }
    }

    @media (max-width: 768px) {
      .hero {
        min-height: 60vh;
        margin-top: 120px;
        padding: 40px 20px;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero .subtitle {
        font-size: 1.2rem;
      }

      .section-title {
        font-size: 2rem;
      }

      section {
        padding: 60px 20px;
      }

      .cards-grid {
        grid-template-columns: 1fr;
      }

      .carousel-wrapper {
        padding: 20px 50px;
      }

      .package-card,
      .review-card {
        flex: 0 0 100%;
      }

      .carousel-button {
        width: 40px;
        height: 40px;
      }

      .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
      }

      .mini-contacts {
        font-size: 11px;
        margin-right: 10px;
      }

      .left-widgets,
      .right-widgets {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }

      .header-bar {
        padding: 15px 20px;
      }

      .branding img {
        max-height: 50px;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 0.9rem;
      }

      .cta-button {
        padding: 14px 30px;
        font-size: 13px;
      }

      .feature-card {
        padding: 25px 20px;
      }

      .section-title {
        font-size: 1.6rem;
      }

      .card-content,
      .package-content {
        padding: 20px;
      }

      .carousel-wrapper {
        padding: 20px 40px;
      }

      .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 14px;
      }

      .mini-contacts {
        font-size: 10px;
        margin-right: 8px;
      }

      .mini-contacts.address {
        display: none;
      }
    }

    /* Fade-in Animation */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Smooth Hover Effects */
    a, button {
      transition: all 0.3s ease;
    }

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.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 Navigation Styles */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 138px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 138px);
    background: #fff;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 998;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .menu-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .menu-item > a {
    padding: 15px 10px;
    width: 100%;
  }
  
  .menu-item > a::after {
    display: none;
  }
  
  /* Mobile Dropdown */
  .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;
  }
  
  .menu-item.has-dropdown.active .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .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;
  }
}
  .booking-section {
      padding: 100px 40px 80px;
      background: #f9f9f9;
      min-height: calc(100vh - 140px);
      margin-top: 140px;
    }

    .booking-container {
      max-width: 800px;
      margin: 0 auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .booking-header {
      background: linear-gradient(135deg, #c73d21 0%, #a83220 100%);
      color: #fff;
      padding: 40px;
      text-align: center;
    }

    .booking-header h1 {
      font-size: 2.5rem;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .booking-header p {
      font-size: 1.1rem;
      opacity: 0.95;
    }

    .booking-form {
      padding: 50px 40px;
    }

    .form-section {
      margin-bottom: 40px;
    }

    .form-section-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 25px;
      padding-bottom: 10px;
      border-bottom: 2px solid #c73d21;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
      font-size: 0.95rem;
    }

    .form-group label .required {
      color: #c73d21;
      margin-left: 3px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 6px;
      font-size: 1rem;
      font-family: 'Raleway', sans-serif;
      transition: all 0.3s ease;
      background: #fff;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #c73d21;
      box-shadow: 0 0 0 3px rgba(199, 61, 33, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .tourists-list {
      margin-top: 20px;
    }

    .tourist-entry {
      background: #f9f9f9;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 15px;
      border: 1px solid #e0e0e0;
      position: relative;
    }

    .tourist-entry h4 {
      color: #c73d21;
      font-size: 1rem;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .remove-tourist {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #ff4444;
      color: #fff;
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .remove-tourist:hover {
      background: #cc0000;
      transform: scale(1.1);
    }

    .add-tourist-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 25px;
      background: #f0f0f0;
      color: #333;
      border: 2px dashed #c73d21;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .add-tourist-btn:hover {
      background: #c73d21;
      color: #fff;
      border-style: solid;
    }

    .submit-section {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 2px solid #e0e0e0;
      text-align: center;
    }

    .submit-btn {
      display: inline-block;
      padding: 16px 60px;
      font-size: 1.1rem;
      font-weight: 700;
      text-decoration: none;
      color: #fff;
      background: #c73d21;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background: #a83220;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(199, 61, 33, 0.4);
    }

    .submit-btn:disabled {
      background: #ccc;
      cursor: not-allowed;
      transform: none;
    }

    .form-helper {
      font-size: 0.85rem;
      color: #666;
      margin-top: 5px;
    }

    .success-message {
      display: none;
      background: #4CAF50;
      color: #fff;
      padding: 20px;
      border-radius: 6px;
      margin-bottom: 20px;
      text-align: center;
    }

    .success-message.show {
      display: block;
    }

    @media (max-width: 768px) {
      .booking-section {
        padding: 80px 20px 60px;
        margin-top: 120px;
      }

      .booking-header {
        padding: 30px 20px;
      }

      .booking-header h1 {
        font-size: 1.8rem;
      }

      .booking-form {
        padding: 30px 20px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .tourist-entry {
        padding: 15px;
      }

      .remove-tourist {
        top: 10px;
        right: 10px;
      }
    }
