/* style.css */

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a237e;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-links li a:hover {
  background-color: #3949ab;
  color: #fff;
}

.ticker-container {
  width: 100%;
  background: linear-gradient(to bottom right, #3949ab, #1a237e);
  padding: 0.5rem 0;
  overflow: hidden;
  box-shadow: inset 0 -3px 6px rgba(0,0,0,0.2), inset 0 3px 6px rgba(255,255,255,0.1);
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker-scroll 75s linear infinite;
  color: #fff;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.hero {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  animation: slideshow 60s infinite linear;
  filter: brightness(0.7);
}

@keyframes slideshow {
  0% { background-image: url('images/agr2.jpg'); transform: scale(1); }
  8% { background-image: url('images/cal2.jpg'); transform: scale(1.05); }
  16% { background-image: url('images/cal4.jpg'); transform: scale(1); }
  24% { background-image: url('images/agr3.jpg'); transform: scale(1.05); }
  32% { background-image: url('images/com1.jpg'); transform: scale(1); }
  40% { background-image: url('images/gen4.jpg'); transform: scale(1.05); }
  48% { background-image: url('images/gen2.jpg'); transform: scale(1); }
  56% { background-image: url('images/ref5.jpg'); transform: scale(1.05); }
  64% { background-image: url('images/ref3.jpg'); transform: scale(1); }
  72% { background-image: url('images/img3.jpg'); transform: scale(1.05); }
  80% { background-image: url('images/img2.jpg'); transform: scale(1); }
  88% { background-image: url('images/ref1.jpg'); transform: scale(1.05); }
  100% { background-image: url('images/agr2.jpg'); transform: scale(1); }
}


.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.btn-primary {
  background-color: #512da8;
  color: #fff;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background-color: #673ab7;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a237e;
  color: white;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

   .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.about-section {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background: transparent;
}

.about-box {
  background: linear-gradient(135deg, #512da8, #673ab7);
  color: white;
  padding: 2rem 3rem;
  max-width: 800px;
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.3),
    0 10px 20px rgba(103, 58, 183, 0.6);
  transform-style: preserve-3d;
  perspective: 800px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.about-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.about-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.impact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #f0f0f8;
}

.impact-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex: 1 1 300px;
  max-width: 340px;
  overflow: hidden;
  transition: transform 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.impact-box:hover {
  transform: translateY(-10px);
}

.impact-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.impact-box h3 {
  margin: 1rem;
  font-size: 1.5rem;
  color: #512da8;
  text-align: center;
}

.impact-box p {
  padding: 0 1.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a237e;
  color: white;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}


.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.btn-primary {
  background-color: #512da8;
  color: #fff;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background-color: #673ab7;
}

.join-section {
  max-width: 1000px;
  margin: 4rem auto;
  background: linear-gradient(to bottom right, #5e35b1, #7e57c2);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
}

.join-image {
  flex: 1 1 300px;
  min-height: 350px;
  background: url('images/img3.jpg') center/cover no-repeat;
}

.join-content {
  flex: 1 1 400px;
  padding: 2rem;
}

.join-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.join-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.8rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

form button {
  background-color: #311b92;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #4527a0;
}

.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background: #ede7f6;
  font-family: 'Poppins', sans-serif;
}

.stat-box {
  background: linear-gradient(135deg, #7e57c2, #5e35b1);
  color: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 340px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  flex: 1 1 150px;
  position: relative;
  overflow: hidden;
  animation: popIn 1s ease forwards;
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  animation: countUp 2s ease-in-out;
}

.stat-box h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.stat-box p {
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes countUp {
  from { transform: scale(0.6); opacity: 0.3; }
  to { transform: scale(1); opacity: 1; }
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a237e;
  color: white;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #ede7f6;
  font-family: 'Poppins', sans-serif;
}

.testimonial-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  max-width: 350px;
  flex: 1 1 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-10px);
}

.testimonial-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #673ab7;
}

.testimonial-box .testimonial-content {
  padding: 1.5rem;
}

.testimonial-box h4 {
  color: #512da8;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.testimonial-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a237e;
  color: white;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.partners-section {
  background: #ede7f6;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.partners-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #512da8;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.partner-box {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  padding: 1rem;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-box:hover {
  transform: scale(1.1);
}

.partner-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-btn {
  display: inline-block;
  background-color: #512da8;
  color: white;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.about-btn:hover {
  background-color: #673ab7;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a237e;
  color: white;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}


.contact-box {
  max-width: 800px;
  margin: 4rem auto;
  background: linear-gradient(135deg, #7e57c2, #512da8);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.contact-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ede7f6, #d1c4e9);
  border-radius: 50% 50% 0 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.contact-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-box p {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #fff59d;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #1a237e;
  color: white;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #1a237e;
  color: white;
  font-size: 0.9rem;
}

footer .footer-nav {
  margin-bottom: 1rem;
}

footer .footer-nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer .footer-nav a:hover {
  color: #ffeb3b;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Responsive Grid */
section {
  padding: 2rem 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a237e;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.logo {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-links li a:hover {
  background-color: #3949ab;
  color: #fff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: #512da8;
  color: #fff;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #673ab7;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #1a237e;
  color: white;
  font-size: 0.9rem;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffeb3b;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stat-box,
  .testimonial-box,
  .partner-box,
  .join-section,
  .contact-box {
    width: 100%;
    margin: auto;
  }

  .stats-section,
  .testimonials-section,
  .partners-logos {
    flex-direction: column;
    align-items: center;
  }

  .social-links {
    flex-direction: column;
  }
}


/* About Page Section */

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.about-box {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #ede7f6, #d1c4e9);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.about-box:hover {
  transform: translateY(-10px);
}

.about-box h2 {
  color: #512da8;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.about-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

.values-section {
  background-color: #ede7f6;
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #4527a0;
  font-family: 'Poppins', sans-serif;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.value-card {
  background: #fff;
  color: #512da8;
  padding: 1rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: scale(1.05);
  background-color: #d1c4e9;
  color: #311b92;
}

.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to right, #7e57c2, #512da8);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.team-section {
  text-align: center;
  padding: 4rem 1rem;
  background: #f3e5f5;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: linear-gradient(to top right, #ede7f6, #d1c4e9);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  width: 300px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card h3 {
  font-size: 1rem;
  color: #512da8;
  margin-bottom: 0.5rem;
}

.team-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #311b92;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.team-avatar {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #673ab7;
}

.team-card .btn-primary {
  display: inline-block;
  background-color: #512da8;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.team-card .btn-primary:hover {
  background-color: #7e57c2;
}

@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 90%;
  }
}


/* General container settings */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #512da8;
  font-family: 'Poppins', sans-serif;
}

/* TEAM SECTION */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-card {
  background: linear-gradient(to top right, #ede7f6, #d1c4e9);
  border-radius: 16px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-avatar {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #673ab7;
}

.team-card h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #311b92;
}

.team-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #4527a0;
}

.team-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.team-card .btn-primary {
  display: inline-block;
  background-color: #512da8;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1rem;
}

.team-card .btn-primary:hover {
  background-color: #7e57c2;
}

/* EXPERT SECTION */
.expert-section ul {
  list-style: none;
  padding-left: 0;
}

.expert-section ul li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

/* VIDEO */
video {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* INQUIRY FORM */
.inquiry-section {
  background: linear-gradient(to right, #ede7f6, #d1c4e9);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  padding: 2rem;
  margin: 4rem auto;
  max-width: 800px;
}

.inquiry-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

.inquiry-section input,
.inquiry-section textarea {
  padding: 0.9rem;
  border-radius: 8px;
  border: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  width: 100%;
}

.inquiry-section button {
  background-color: #512da8;
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.inquiry-section button:hover {
  background-color: #7e57c2;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 90%;
  }

  .expert-section {
    flex-direction: column;
  }

  video {
    margin-top: 2rem;
  }
}


/* General Reset & Fonts */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
}

/* NAVIGATION BAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #512da8;
  padding: 1rem 2rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.menu li a:hover,
.menu li a.active {
  background-color: #7e57c2;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(to right, #ede7f6, #d1c4e9);
  padding: 4rem 1rem;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: #4527a0;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* SERVICE BOXES */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 1rem;
}

.service-box {
  background: linear-gradient(to bottom right, #e1bee7, #d1c4e9);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  padding: 2rem;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box h3 {
  font-size: 1.3rem;
  color: #4527a0;
  margin-bottom: 1rem;
}

.service-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* CTA QUOTE */
.cta-quote {
  margin-top: 3rem;
  background: #f3e5f5;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.cta-quote blockquote {
  font-size: 1.3rem;
  color: #311b92;
  font-style: italic;
}

/* CTA BUTTON */
.cta {
  text-align: center;
  margin: 2rem 0;
}

.btn-primary {
  background-color: #512da8;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #7e57c2;
}

/* FOOTER */
footer {
  background-color: #4527a0;
  color: white;
  padding: 2rem;
  text-align: center;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
  }
}

/* Navbar Styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #512da8;
  padding: 1rem 2rem;
  position: relative;
  z-index: 999;
}

.logo {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hamburger button */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Mobile styling */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #512da8;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
  }

  .nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

