@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@500;700&display=swap");

/* header {
    background: #5a015f;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
} */

header {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #ff5722;
  color: white;
  text-align: center;
}
#three-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 1rem;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  /* rich dark navy */
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -1px;
  background: linear-gradient(to right, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a4a;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin: 0.75rem 0;
  max-width: 650px;
}
.buttons a {
  margin: 1rem 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  color: #ff5722;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s;
}
.buttons a:hover {
  background: #fff3e0;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature {
  flex: 1 1 200px;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.quick-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

.highlight {
  flex: 1 1 200px;
  background: #fff;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 6px;
}

.highlight-section {
  padding: 80px 20px;
  text-align: center;
}


.quick-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.highlight span {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 600px) {
  .highlight {
    font-size: 1rem;
    padding: 20px;
  }
}

.welcome-hero {
  background: #f5f5f5; /* fallback background */
  padding: 5rem 1rem;
  position: relative;
}

.welcome-container {
  display: flex;
  flex-direction: column; /* mobile: stacked */
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  position: relative;
}

.welcome-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-image .image-bg {
  position: absolute;
  bottom: -40px; 
  left: -60px;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #0ea5e9, #22c55e); /* modern gradient */
  border-radius: 50%; /* oval/circle shape */
  z-index: 1;
  filter: blur(50px); /* soft glow effect */
}

.welcome-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2; /* above the oval */
}

.welcome-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  position: relative;
}
.welcome-content p {
  color: #444;  /* Darker text for visibility */
  font-size: 1.1rem;
  line-height: 1.6;
}
/* Responsive: tablet and desktop */
@media (min-width: 768px) {
  .welcome-container {
    flex-direction: row; /* image + text side by side */
    justify-content: space-between;
  }

  .welcome-content {
    text-align: left;
  }

  .welcome-image .image-bg {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -80px;
  }
}

@media (max-width: 480px) {
  .welcome-image .image-bg {
    width: 180px;
    height: 180px;
    bottom: -30px;
    left: -30px;
  }
}


.what-makes-us-different {
  padding: 60px 20px;
  background: #fdfdfd;
  text-align: center;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature .icon {
  font-size: 2.5rem;
  background: #990000;
  color: white;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.feature:hover .icon {
  transform: rotate(20deg) scale(1.1);
}

.feature strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.feature p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .what-makes-us-different h1 {
    font-size: 2rem;
  }
  .feature {
    padding: 25px 15px;
  }
  .feature .icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

/* FAQ Section */
.faq {
  padding: 4rem 10%;
  background: #ffffff;
  text-align: center;
}


/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

/* Each FAQ item */
.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Question */
.faq-question {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
  position: relative;
}

.faq-question::after {
  content: "➕";
  position: absolute;
  right: 20px;
  font-size: 1em;
  color: #22c55e;
  transition: transform 0.3s, color 0.3s;
}

.faq-question.active::after {
  content: "➖";
  color: #ef4444;
}

/* Answer (with smooth animation) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  background: #ffffff;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0.8rem 0 1rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px; /* enough to show content */
  padding: 0 1.2rem 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 1.8rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }
}
