/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #E7F5F5;
  color: #262341;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  width: 90px;
  margin-right: 10px;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #262341;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CTA Button */
/* Header Button */
.btn-header {
  background-color: transparent;
  color: #262341;
  border: 2px solid #F9D94A;
  padding: 8px 50px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-header:hover {
  background-color: #F9D94A;
  color: #262341;
}

/* Form Submit Button */
.btn-form {
        width: 100%;
    margin-bottom: 70px;
    margin-top: 41px;
  background-color: #262341;
  color: #fff;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-form:hover {
  background-color: #ffe966;
}


/* Hero Section */
.hero {
  padding: 5px;
  text-align: center;
    background-color: #ffffff;

}

.hero-title {
  font-size: 3.5rem;
  color: #262341;
}

.hero-subtitle {
  font-size: 2.2rem;
  color: #3c3c3c;
  font-weight:bold;
}

/* Contact Section */
.contact-section {
  padding: 0px 0;
  display: flex;
  justify-content: center;
    background-color: #ffffff;

}

.form-card {
  background-color: #ffffff;
  color: #262341;
  border-radius: 12px;
  padding: 0px;
    max-width: 1085px;
    width: 100%;
}

.form-card h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
}


/* Form styles */
form label {
  display: block;
  font-weight: 600;
  font-size:19px;
  margin-top: 10px;
}

form input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 3px solid #000;
  border-radius: 8px;
  font-size: 18px;
      background-color: #EDEDED;
}

form input:focus {
  outline: none;
  border-color: #F9D94A;
}

.full-width {
  width: 25%;
  margin-top: 20px;
}

.disclaimer {
  margin-top: 5rem !important;
  font-size: 0.85rem;
  color: #555;
}

.disclaimer a {
  color: #262341;
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .main-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 2rem;
  }
}

/* About Section */
.about-section {
  background-color: #262341;
  color: #E7F5F5;
  padding: 80px 20px;
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Icon and Heading */
.icon-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInDown 1s ease-out both;
}

.goal-icon {
  width: 36px;
  height: 36px;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: bold;
  color: #F9D94A;
  margin: 0;
}

/* Animated Divider */
.divider {
  width: 80px;
  height: 4px;
  background-color: #F9D94A;
  margin: 20px 0 40px;
  animation: scaleGrow 0.6s ease-out both;
}

/* Text with scroll reveal */
.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

/* Reveal on scroll */
.about-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}


/* Services Section */
.services-section {
  background-color: #E7F5F5; /* Light background */
  color: #262341; /* Dark text */
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Section Heading */
.services-heading {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

/* Intro & Closing Paragraphs */
.services-intro,
.services-closing {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.services-closing {
  margin-top: 60px;
  font-weight: 500;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Service Box */
.service-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

/* Show Class for Scroll Reveal */
.service-box.show,
.services-intro.show,
.services-closing.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effect */
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Icon Styles */
.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

/* Sub-headings */
.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #262341;
}

/* Descriptions */
.service-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.pricing-section {
  background-color: #262341;
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.pricing-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #E7F5F5;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  background-color: #1f1b34;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #F9D94A;
}

.ideal-for {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 1rem 0;
}

.pricing-card ul li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #F9D94A;
}

.price {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #ffffff;
}

.btn-pricing {
  background-color: #F9D94A;
  color: #262341;
  font-weight: bold;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.btn-pricing:hover {
  background-color: #e5c833;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.why-choose-us {
  background-color: #f9f9f9;
  color: #262341;
  padding: 80px 20px;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-us .heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-choose-us .heading p {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.reason-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 30px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.reason-card:hover {
  transform: translateY(-10px);
}

.reason-card img {
  width: 60px;
  margin-bottom: 20px;
}

.reason-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #262341;
}

.reason-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

 /* ===== Contact Section (Yellow Strip) ===== */
.info-bar {
  background-color: #F9D94A;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-column {
  flex: 1;
  padding: 0 1rem;
  position: relative;
  color: #262341;
}

.info-column h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}

.info-column p {
  margin: 0.3rem 0;
}

.info-column a {
  color: #262341;
  text-decoration: none;
}

.info-column a:hover {
  text-decoration: underline;
}

/* Vertical dividers */
.info-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #262341;
  opacity: 0.4;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .info-bar {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .info-column:not(:last-child)::after {
    display: none;
  }
}



  .site-footer {
    background-color: #022C2C;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
  }

  .disclaimer {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 0.95rem;
    line-height: 1.6;
  }
.disclaimer p {
  color: #fff;
}
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-links a {
    color: #F9D94A;
    text-decoration: none;
    margin: 0 0.25rem;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }


.input-error {
  border: 2px solid red;
  background-color: #fff0f0;
}

