
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0c0c0c;
  color: #f5f5f5;
  line-height: 1.6;
}
/* services css */

nav {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.6);
  }
  
  .navbar {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f8ae00;
    font-size: 22px;
    font-weight: bold;
  }
  
  .logo img {
    width: 160px;
  }
  
  /* Menu */
  .menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
  }
  
  .menu li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
  }
  
  .menu li a:hover {
    color: #f8ae00;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    position: absolute;
    top: 40px;
    right: 0;
    background: black;
    border: 1px solid #333;
    min-width: 160px;
    display: none;
    flex-direction: column;
  }
  
  .dropdown-content a {
    padding: 10px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: background 0.3s;
  }
  
  .dropdown-content a:hover {
    background: #222;
  }
  
  .dropdown.active .dropdown-content {
    display: flex;
  }
  
  /* Hamburger */
  .hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
  }
  
  /* Mobile menu */
  @media (max-width: 768px) {
    .menu {
      position: absolute;
      top: 75px;
      left: 0;
      right: 0;
      background: #000;
      flex-direction: column;
      align-items: start;
      padding: 15px;
      display: none;
    }
  
    .menu.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
      color: white;
    }
  
    .dropdown-content {
      position: static;
      border: none;
      background: none;
      display: none;
    }
  
    .dropdown.active .dropdown-content {
      display: flex;
    }
  }
  
/* Hero Section */
.jaldapara-hero {
background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1350&q=80') no-repeat center/cover;
color: #fff;
text-align: center;
padding: 120px 20px;
position: relative;
}
.jaldapara-hero::after {
content: '';
position: absolute;
inset: 0;
background: rgba(0,0,0,0.55);
}
.jaldapara-hero-content {
position: relative;
z-index: 2;
max-width: 800px;
margin: auto;
}
.jaldapara-hero h1 {
font-size: 3rem;
margin-bottom: 20px;
color: #f7ae02;
font-weight: bold;
}
.jaldapara-hero p {
font-size: 1.2rem;
margin-bottom: 30px;
}
.jaldapara-hero .cta-btn {
padding: 15px 30px;
background: #f7ae02;
color: #000;
border-radius: 8px;
font-size: 1.1rem;
font-weight: bold;
transition: 0.3s;
text-decoration: none;
}
.jaldapara-hero .cta-btn:hover {background: #e09c00;}

/* Section Base */

.section-title-two {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
color: #faf7f7;
font-weight: bold;
}

/* Services */
.services-section {
background: #111;
color: #fff;
}
.services-section .section-title {color: #fff;}
.services-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
max-width: 1200px;
margin: auto;
}
.service-card {
background: rgba(255,255,255,0.05);
backdrop-filter: blur(8px);
border-radius: 16px;
padding: 30px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 25px rgba(247,174,2,0.4);
}
.service-card h3 {color: #f7ae02; margin-bottom: 10px; font-size: 2rem;}
.service-btn {
display: inline-block;
width: 100%;
padding: 12px;
margin-top: 15px;
background: #f7ae02;
color: #000;
font-weight: bold;
border-radius: 8px;
text-align: center;
transition: 0.3s;
text-decoration: none;
}

.service-btn:hover {background: #fffefe;}

@media (max-width:768px){
.jaldapara-hero h1{font-size:2.2rem;}
.jaldapara-hero p{font-size:1rem;}
}
h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #f7ae02;
}

.section-two {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.about img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
}
.about-text {
  flex: 1;
}
.about-text h3 {
  color: #f7ae02;
  margin-bottom: 15px;
}

/* Safari Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.tip-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}
.tip-card:hover {
  transform: translateY(-8px);
  background: #262626;
}
.tip-card i {
  font-size: 2rem;
  color: #f7ae02;
  margin-bottom: 15px;
}
.tip-card h4 {
  margin-bottom: 10px;
  color: #fff;
}

/* Nearby Attractions */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.attraction-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}
.attraction-card:hover {
  transform: translateY(-8px);
  background: #262626;
}
.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.attraction-card-content {
  padding: 20px;
}
.attraction-card-content h4 {
  margin: 0 0 10px;
  color: #f7ae02;
}

/* CTA */
.cta {
  text-align: center;
  background: #111;
  padding: 60px 20px;
  border-radius: 15px;
  margin-top: 60px;
}
.cta h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}
.cta p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 25px;
}
.cta button {
  background: #f7ae02;
  color: #000;
  border: none;
  padding: 15px 35px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}
.cta button:hover {
  background: #ffc933;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }
}

.footer {
    background: #000;
    padding: 60px 20px 20px;
    color: #ccc;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Logo + Title */
  .footer-logo {
    display: flex;
    flex-direction: column;
  }
  
  .footer-logo-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-logo-header img {
      width: 160px;
  
  }
  
  .footer-logo-header h2 {
    color: #f8ae00;
    font-size: 1.8rem;
    margin: 0;
  }
  
  .footer-logo p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #aaa;
  }
  
  .footer-col h3 {
    color: #f8ae00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 10px;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #f8ae00;
  }
  
  .footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  
  .footer-social {
    margin-top: 15px;
  }
  
  .footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.2rem;
    color: #ccc;
    transition: 0.3s;
  }
  
  .footer-social a:hover {
    color: #f8ae00;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #222;
    padding-top: 15px;
  }
  .footer-bottom a{
    text-decoration: none;
    color: #888;
  }