/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h2,
h3 {
  color: #ff4500; /* Fiery Orange */
}

h1 {
  color: #4b0082; /* Fiery Orange */
}

a {
  color: #4b0082; /* Deep Purple */
  text-decoration: none;
}

a:hover {
  color: #ff6f61; /* Lighter Orange */
}

/* Navbar */
.navbar {
  background: #4b0082; /* Deep Purple */
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px; /* Adjust based on your logo size */
  border-radius: 50%;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: white;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700; /* Gold */
}

/* Add scroll margin to all sections */
section {
  scroll-margin-top: 80px; /* Adjust based on your navbar height */
}

/* Hero Section */
.hero {
  background: #ff6f61; /* Lighter Orange */
  color: white;
  padding: 150px 0; /* Increased padding */
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between image and content */
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
  flex: 1;
  text-align: left; /* Align text to the left */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  background: #4b0082; /* Deep Purple */
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #ffd700; /* Gold */
}

/* About Section */
.about {
  padding: 100px 0 150px 0; /* Increased bottom padding */
  background: #f9f9f9;
}

.about h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ff4500; /* Fiery Orange */
}

.about-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.about-text,
.core-values {
  flex: 1;
}

.core-values h3 {
  margin-bottom: 20px;
  color: #ff4500; /* Fiery Orange */
}

.core-values ul {
  list-style: none;
  padding: 0;
}

.core-values ul li {
  background: #ff6f61; /* Lighter Orange */
  color: white;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: center;
}

/* Programs Section */
.programs {
  padding: 150px 0 100px 0; /* Increased top padding */
  background: #ffffff;
}

.programs h2 {
  text-align: center;
  margin-bottom: 40px;
}

.program-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.program-item {
  text-align: center;
  width: 30%;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.program-item i {
  font-size: 2.5rem;
  color: #4b0082; /* Deep Purple */
  margin-bottom: 20px;
}

.program-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ff4500; /* Fiery Orange */
}

.program-item p {
  font-size: 1rem;
  color: #555;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0; /* Increased padding */
  background: #f9f9f9;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-item {
  text-align: center;
  width: 45%;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-item p {
  font-size: 1.1rem;
  color: #333;
}

.testimonial-item strong {
  color: #ff4500; /* Fiery Orange */
}

/* Call-to-Action Section */
.cta {
  padding: 100px 0; /* Increased padding */
  background: #4b0082; /* Deep Purple */
  color: white;
  text-align: center;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Contact Form Section */
.contact-form {
  padding: 100px 0; /* Increased padding */
  background: #f9f9f9;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #ff4500; /* Fiery Orange */
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.contact-form button {
  display: block;
  width: 100%;
  padding: 15px;
  background: #4b0082; /* Deep Purple */
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #ff4500; /* Fiery Orange */
}

/* Footer Styles */
footer {
  padding: 100px 0 20px 0; /* Increased padding */
  background: #4b0082; /* Deep Purple */
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: #ff4500; /* Fiery Orange */
}

.footer-section p {
  margin: 10px 0;
  color: #ddd;
}

.footer-section a {
  color: #ddd;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffd700; /* Gold */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 10px 0;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffd700; /* Gold */
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #555;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #ddd;
}

/* Live Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4b0082; /* Deep Purple */
  color: white;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
}

.chat-widget i {
  font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .about-content {
    flex-direction: column;
  }

  .program-item {
    width: 100%;
  }

  .testimonial-item {
    width: 100%;
  }
}
