/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #003366;
  }
  
  h1, h2, h3 {
    color: #FF6F61;
  }
  
  a {
    text-decoration: none;
    color: #FF6F61;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  .hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero-content {
    z-index: 1;
  }
  .hero-title {
    font-size: 4rem;
    margin: 0;
    color: #003366;
    animation: fadeInDown 1.5s ease-out;
  }
  
  .hero-subtitle {
    font-size: 2rem;
    margin: 10px 0;
    animation: fadeInUp 1.5s ease-out 0.5s;
    animation-fill-mode: both;
  }
  
  .hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto;
    animation: fadeInUp 1.5s ease-out 1s;
    animation-fill-mode: both;
  }
  
  .cta-button {
    background: #FF6F61;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background 0.3s ease;
    animation: fadeInUp 1.5s ease-out 1.5s;
    animation-fill-mode: both;
  }
  
  .cta-button:hover {
    background: #FF8C69;
  }
  
  /* Keyframe Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  
  /* Menu Section */
  .menu {
    padding: 50px 20px;
    text-align: center;
  }
  
  .menu-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .menu-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .menu-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .menu-card h3 {
    margin: 15px 0;
  }
  
  /* Recipe Section */
  .recipes {
    padding: 50px 20px;
    text-align: center;
  }
  
  .recipe-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .recipe-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease;
  }
  
  .recipe-card:hover {
    transform: translateY(-10px);
  }
  
  .recipe-button {
    background: #FF6F61;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4;
  }
  
  .testimonial-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .testimonial {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background: #003366;
    color: white;
  }
  /* Company Owner Section */
.company-owner {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.company-owner h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.owner-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.owner-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #00bcd4;
}

.owner-info {
  max-width: 600px;
  text-align: left;
}

.owner-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.owner-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.owner-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00bcd4;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.owner-button:hover {
  background-color: #0097a7;
}
/* Thoothukudi Images */
.thoothukudi-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.thoothukudi-images img {
  width: 45%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.thoothukudi-images img:hover {
  transform: scale(1.05);
}

/* Google Map */
.thoothukudi-map {
  margin: 40px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Contact Us Section */
#contact-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#contact-us h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.contact-info, .contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h3, .contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #00bcd4;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #555;
}

.contact-info ul li i {
  margin-right: 10px;
  color: #00bcd4;
}

.contact-info ul li a {
  color: #00bcd4;
  text-decoration: none;
}

.contact-info ul li a:hover {
  text-decoration: underline;
}

.social-media {
  margin-top: 30px;
}

.social-media h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.social-media a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.5rem;
  color: #00bcd4;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #0097a7;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.submit-button {
  padding: 10px 20px;
  background-color: #00bcd4;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #0097a7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
      flex-direction: column;
  }
}
