/* General Styles */
html{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
 body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #09334a;
    background: linear-gradient(90deg, rgba(9, 51, 74, 1) 0%, rgba(6, 92, 41, 1) 50%, rgba(110, 99, 5, 1) 100%);
    color: #ffffff; /* You can adjust text color to match the new background */
}

  /* Add scaling animation for company logo */
.logo-container {
    flex: 1;
    animation: scaleLogo 1.5s ease-out forwards; /* Scaling animation */
  }
  
  /* Keyframes for scaling effect */
  @keyframes scaleLogo {
    0% {
      transform: scale(0); /* Start small */
    }
    80% {
      transform: scale(1.2); /* Grow bigger */
    }
    100% {
      transform: scale(1); /* Final size, stays fixed */
    }
  }
  
  /* Logo Hover effect (optional) */
  .logo-container:hover {
    animation: none; /* Disable animation on hover to keep it in place */
  }
  
  h2 {
    font-size: 2.5rem;
    color: #fff;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  p {
    font-size: 1.2rem;
    color: #ffffff;
  }
  
  /* Navbar Styles */
  header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #10B981;
    padding: 10px;
    margin: 0;
  }
  
  header nav ul li {
    margin: 0 15px;
  }
  
  header nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 1.1rem;
    text-transform: uppercase;
  }
  header .logo-container ul li a {
    color: #000000;
  }
  
 /* Pop-up Animation on Nav Items */
@keyframes popUp {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Apply default black color to nav links */
  header nav ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  /* On hover, pop up and slightly change color */
  header nav ul li a:hover {
    animation: popUp 0.3s ease-in-out;
    color: #ffffff; /* Dark gray-black */
  }
  
  
  /* Services Section */
  #services {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #10B981, #34D399);
    color: #fff;
  }
  
  #services h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  #services p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  
  .service-card {
    background-color: #ffffff;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }
  
  .service-header {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .price-range {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .price {
    color: #34D399;
  }
  
  .service-card p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }
  
  /* Pricing Section */
  #pricing {
    padding: 60px 20px;
    background-color: #f8f8f8;
  }
  
  .pricing-table {
    display: flex;
    justify-content: space-around;
    gap: 20px;
  }
  
  .pricing-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .pricing-card p {
    font-size: 1.5rem;
    color: #34D399;
    margin-bottom: 20px;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
  }
  
  .pricing-card ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .book-now {
    padding: 10px 20px;
    background-color: #10B981;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .book-now:hover {
    background-color: #34D399;
  }
  
  /* Booking Section */
  #booking {
    padding: 60px 20px;
    background-color: #f4f4f4;
  }
  
  #booking h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  #booking p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
  }
  
  form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    font-size: 1.1rem;
    color: #333;
  }
  
  input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
  }
  
  input:focus, select:focus {
    outline-color: #34D399;
  }
  
  .submit-btn {
    background-color: #10B981;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
  }
  
  .submit-btn:hover {
    background-color: #34D399;
  }
  /* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

h2 {
    font-size: 2.5rem;
    color: #fff;
}

h3 {
    font-size: 1.8rem;
}

p {
    font-size: 1.2rem;
    color: #555;
}

/* Navbar Styles */
header {
    position: sticky;
    top: 0;
    background-color: #10B981;
    z-index: 1000;
    width: 100%;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    flex: 1;
}

.logo {
    max-height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding: 0;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
}

header nav ul li a:hover {
    color: #34D399;
}

/* Services Section */
#services {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #10B981, #34D399);
    color: #fff;
}

#services h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#services p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-card {
    background-color: #ffffff;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service-header {
    text-align: center;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-range {
    font-size: 1.2rem;
    font-weight: bold;
}

.price {
    color: #34D399;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

/* Pricing Section */
#pricing {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.pricing-table {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.pricing-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.pricing-card p {
    font-size: 1.5rem;
    color: #34D399;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.book-now {
    padding: 10px 20px;
    background-color: #10B981;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.book-now:hover {
    background-color: #34D399;
}

/* Booking Section */
#booking {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

#booking h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

#booking p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 1.1rem;
    color: #333;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

input:focus, select:focus {
    outline-color: #34D399;
}

.submit-btn {
    background-color: #10B981;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background-color: #34D399;
}
/* Footer */
/* Footer */
footer {
  background-color: rgb(2, 64, 25);
  color: #ecf0f1;
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

footer p {
  font-size: 1rem;
  margin-top: 50px;
  color: #ffffff;
}

.social-media-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  margin-right: 30px;
}

.social-media-icons .social-icon {
  color: #ecf0f1;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
  animation: bounceIn 0.8s ease;
}

.social-media-icons .social-icon:hover {
  color: #1abc9c;
  transform: translateY(-5px);
}
.footer-items {
  color: #ecf0f1;
  text-decoration: none;
  list-style: none;
 
 
  transition: color 0.3s ease, transform 0.3s ease, padding 0.3s ease;

}
.footer-items li a{
  text-decoration: none;
  color: white;
}
.copy-rights{
  padding-top: 50px;
  color: rgb(0, 0, 0);
}
#book{
    text-align: center;
}
#book2{
    text-align: center;
}
#our{
    color: black;
    text-align: center;
    margin: 20px;
}