/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.logo img {
  height: 60px;
}

.nav-title h1 {
  font-size: 28px;
  color: #00a8a8;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Info */
.contact {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

.contact span {
  font-size: 14px;
  color: #333;
}

.book-btn {
  background-color: #FDAE1F;
  border: none;
  padding: 10px 16px;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px; /* Increased section padding */
}

.hero-text {
  flex: 1 1 400px;
  max-width: 700px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 42px; /* Bigger heading */
  margin-bottom: 20px;
  line-height: 1.3;
  color: black;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.hero-text span {
  color: #03B5B2;
}

.hero-text p {
  font-size: 20px; /* Larger paragraph */
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  width: 100%;
  max-width: 450px; /* Bigger image */
  height: auto;
  border-radius: 12px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-image img {
    max-width: 320px;
  }
}

/* Services */
.services {
  text-align: center;
  padding: 40px;
  background-color: #f4fcff;
}

.services h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.services p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}

.service-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 16px;
  padding: 30px;
  height: 350px;
  width: 350px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.service-card img {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlights Section Animation */
.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.highlight-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.highlight-card:nth-child(1) { animation-delay: 0.2s; }
.highlight-card:nth-child(2) { animation-delay: 0.4s; }
.highlight-card:nth-child(3) { animation-delay: 0.6s; }
.highlight-card:nth-child(4) { animation-delay: 0.8s; }

.highlight-card .icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #03B5B2;
}

.highlight-card h3 {
  margin: 10px 0 5px;
  font-size: 22px;
  color: #333;
}

.highlight-card p {
  font-size: 14px;
  color: #666;
}


/* Testimonials */
.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 10px;
}

.testimonials .intro {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 90px;
  padding: 0 20px;
}

.testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  max-width: 320px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.user-icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ff5a1f;
  text-align: center;
}

.testimonial h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.testimonial .quote {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* Why Choose Us */
.why-choose-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.feature-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Footer */
.main-footer {
  background-color: #222;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #f1c40f;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #fff;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 15px;
  color: #aaa;
}

/* Cards Section */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

p.subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  background-color: #fff;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.card-content p {
  font-size: 14px;
  color: #666;
}

/* Download Section */
.download-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #fff;
}

.left-image {
  flex: 1;
  max-width: 400px;
  text-align: center;
}

.left-image img {
  width: 100%;
  max-width: 300px;
  border: 0;
  border-radius: 0;
}

.right-content {
  flex: 1;
  max-width: 500px;
  padding: 20px;
}

.right-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.right-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.form-group input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-group button {
  background-color: #00b3e4;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.store-buttons img {
  height: 50px;
  margin-right: 10px;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero,
  .download-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .right-content {
    max-width: 100%;
  }

  .form-group {
    flex-direction: column;
    align-items: center;
  }

  .form-group input,
  .form-group button {
    width: 100%;
  }

  .store-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  h2 {
    font-size: 22px;
  }
}
