:root {
  --navy: #13365f;
  --orange-light: #ffb84c;
  --orange: #ff7c3f;
  --cream: #fff8eb;
  --dark-text: #15324a;
  --light-bg: #f9f6ef;
}
.section {
  opacity: 1 !important;
  transform: none !important;
  color: var(--dark-text) !important;
}
.card, blockquote, .testimonial-cards {
  color: var(--dark-text) !important;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--dark-text);
}
.logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  margin-right: 16px;
}
header {
  background: var(--navy);
  color: white;
  padding: 1.2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header h1 {
  margin-bottom: 0;
  margin-top: 0;
}
.tagline {
  font-size: 1rem;
  color: var(--orange-light);
}
.header-contact {
  font-size: 0.9rem;
  margin-top: 0.2rem;
  display: flex;
  gap: 1.5rem;
  color: var(--orange-light);
}
.header-contact a {
  color: var(--orange-light);
  text-decoration: none;
  font-weight: 600;
}
.header-contact a:hover,
.header-contact a:focus {
  color: var(--orange);
  outline: none;
}
nav {
  margin-left: auto;
}
nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
nav a:hover,
nav a:focus {
  color: var(--orange);
  outline: none;
}
.nav-blog {
  background-color: var(--orange);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  color: white;
}
.nav-blog:hover, .nav-blog:focus {
  background-color: var(--orange-light);
  color: var(--navy);
  outline: none;
}
.section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem 2.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 0.05);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.certifications img {
  width: 60px;       /* Make badges smaller */
  height: auto;      /* Maintain aspect ratio */
  margin-right: 10px; /* Optional spacing between badges */
}
.hero {
  background: linear-gradient(110deg, var(--orange-light) 40%, var(--cream) 100%);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgb(255 124 63 / 0.25);
}
.primary-cta {
  background: var(--orange);
  border: none;
  padding: 0.8rem 1.5rem;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 8px 15px rgb(255 124 63 / 0.35);
  transition: box-shadow 0.3s ease;
  margin-top: 2rem;
}
.primary-cta:hover,
.primary-cta:focus {
  box-shadow: 0 15px 25px rgb(255 124 63 / 0.5);
  outline: none;
}
.full-width-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border-radius: 8px;
}
.cards .service-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.card {
  background: var(--light-bg);
  padding: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgb(229 197 156 / 0.3);
  flex: 1 0 250px;
  max-width: 270px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Home section enhancement */
#home {
  background: linear-gradient(rgba(25, 95, 145, 0.7), rgba(0, 60, 115, 0.7)),
              url('hero-background.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

#home h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#home p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.primary-cta {
  background-color: #007acc;
  color: white;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.primary-cta:hover {
  background-color: #005fa3;
}

/* About section enhancement */
#about {
  padding: 3rem 2rem;
  background-color: #e6f0fb;
  border-radius: 10px;
  max-width: 900px;
  margin: 2rem auto;
  text-align: center;
}

#about p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.certifications {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.certifications img {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
  cursor: pointer;
}

.certifications img:hover {
  transform: scale(1.1);
}

.card:hover,
.card:focus {
  transform: translateY(-10px);
  box-shadow: 0 6px 14px rgb(255 124 63 / 0.55);
  outline: none;
}
.card img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.7rem;
}
blockquote {
  background: var(--light-bg);
  padding: 1rem;
  border-left: 5px solid var(--orange);
  margin-bottom: 1rem;
  border-radius: 4px;
  font-style: italic;
  box-shadow: 0 4px 9px rgb(255 124 63 / 0.15);
}
.testimonial-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.faq .accordion {
  background-color: var(--orange-light);
  color: var(--navy);
  cursor: pointer;
  padding: 1rem;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  transition: background-color 0.2s;
  font-size: 1rem;
  border-radius: 6px;
  margin-bottom: 0.2rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgb(255 124 63 / 0.2);
}
.faq .accordion.active {
  background-color: var(--orange);
  color: white;
}
.faq .accordion:hover,
.faq .accordion:focus {
  background-color: var(--orange);
  color: white;
  outline: none;
}
.faq .panel {
  padding: 0 1rem;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}
.faq .panel.open {
  max-height: 200px;
  padding-bottom: 1rem;
}
label {
  display: block;
  margin-top: 1.1rem;
  font-weight: 500;
}
input,
textarea {
  width: 100%;
  padding: 0.6rem;
  margin-top: 0.2rem;
  box-sizing: border-box;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 1rem;
}
button {
  margin-top: 1rem;
  background: var(--orange);
  color: white;
  border: none;
  padding: 0.75rem 1.3rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s;
}
button:hover,
button:focus {
  background: #d1591a;
  outline: none;
}
#result,
#form-message {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}
footer {
  background: var(--navy);
  color: var(--orange-light);
  padding: 1.5rem 0;
  text-align: center;
  margin-top: 3rem;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
}
.social-links {
  display: flex;
  gap: 1.5rem;
}
.social-links a svg {
  fill: currentColor;
  vertical-align: middle;
  transition: fill 0.3s ease;
}
.social-links a:hover svg,
.social-links a:focus svg {
  fill: var(--orange);
  outline: none;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--orange-light);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
@media (max-width: 720px) {
  .cards .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .section {
    padding: 1rem 1rem;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  nav {
    margin-left: 0;
    margin-top: 1rem;
  }
}
/* Hero Section - Amplifying Investments Enhancements */
.hero-section {
  background: linear-gradient(135deg, var(--orange-light) 40%, var(--cream) 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(255, 124, 63, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  color: var(--dark-text);
  max-width: 1100px;
  margin: 3rem auto;
  text-align: left;
}
.hero-visual {
  flex-shrink: 0;
  max-width: 300px;
  animation: fade-in 1.2s ease both;
}
.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text {
  max-width: 600px;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: var(--navy);
}
.hero-text h1 .highlight {
  background: linear-gradient(to bottom, transparent 60%, var(--orange-light) 40%);
  padding: 0 4px;
  border-radius: 4px;
}
.hero-support {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--dark-text);
}
.hero-facts {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.fact {
  background: var(--light-bg);
  padding: 0.6rem 1.2rem;
  box-shadow: 0 3px 8px rgba(255, 124, 63, 0.15);
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 180px;
  transition: background-color 0.3s ease;
  cursor: default;
}
.fact:hover {
  background-color: var(--orange-light);
  color: var(--navy);
}
.fact .icon {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}
.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-primary, .cta-secondary {
  padding: 0.9rem 2.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.cta-primary {
  background-color: var(--orange);
  color: white;
  box-shadow: 0 8px 18px rgba(255, 124, 63, 0.35);
}
.cta-primary:hover, .cta-primary:focus {
  background-color: #d1591a;
  box-shadow: 0 12px 26px rgba(255, 124, 63, 0.46);
  outline: none;
}
.cta-secondary {
  background-color: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.cta-secondary:hover, .cta-secondary:focus {
  background-color: var(--orange-light);
  color: var(--navy);
  border-color: var(--orange-light);
  outline: none;
}
@media (max-width: 780px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-facts {
    justify-content: center;
  }
  .hero-visual {
    max-width: 90%;
    margin-bottom: 2rem;
  }
}

/* 3. Testimonial pop-up on hover */
.testimonial-cards blockquote {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  z-index: 1;
}
.testimonial-cards blockquote:hover,
.testimonial-cards blockquote:focus {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 124, 63, 0.45);
  background-color: #fffbee;
  border-left-color: var(--orange);
  outline: none;
}

/* 5. Blog button smaller padding */
#blog .primary-cta {
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem; /* same font size */
  border-radius: 16px;
}

/* 6. Footer phone and Gmail link brighter */
.footer-info a {
  color: #ffffffcc;
  font-weight: 700;
}
.footer-info a:hover,
.footer-info a:focus {
  color: var(--orange);
  outline: none;
}

/* 9. Contact nav link highlighted */
.nav-contact {
  background-color: var(--orange);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  color: white;
}
.nav-contact:hover,
.nav-contact:focus {
  background-color: var(--orange-light);
  color: var(--navy);
  outline: none;
}

/* 10. WhatsApp and Youtube icon clearer */
.icon-whatsapp svg,
.icon-youtube svg {
  fill: var(--orange-light);
  transition: fill 0.3s ease;
}
.icon-whatsapp:hover svg,
.icon-youtube:hover svg,
.icon-whatsapp:focus svg,
.icon-youtube:focus svg {
  fill: var(--orange);
  outline: none;
}
/* Adjust this height to be a bit more than your header height */
.scroll-offset {
  position: relative;
  padding-top: 110px;  /* Increased offset */
  margin-top: -110px;  /* Same negative margin */
}
/* 3. Testimonial pop-up on hover */
.testimonial-cards blockquote {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  z-index: 1;
}
.testimonial-cards blockquote:hover,
.testimonial-cards blockquote:focus {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 124, 63, 0.45);
  background-color: #fffbee;
  border-left-color: var(--orange);
  outline: none;
}

/* 5. Blog button smaller padding */
#blog .primary-cta {
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem; /* keep font size */
  border-radius: 16px;
}

/* 6. Footer phone and Gmail link brighter */
.footer-info a {
  color: #ffffffcc;
  font-weight: 700;
}
.footer-info a:hover,
.footer-info a:focus {
  color: var(--orange);
  outline: none;
}

/* 9. Contact nav link highlighted */
.nav-contact {
  background-color: var(--orange);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  color: white;
}
.nav-contact:hover,
.nav-contact:focus {
  background-color: var(--orange-light);
  color: var(--navy);
  outline: none;
}

/* 10. Clearer WhatsApp and YouTube icons */
.icon-whatsapp svg,
.icon-youtube svg {
  fill: var(--orange-light) !important;
  transition: fill 0.3s ease;
}
.icon-whatsapp:hover svg,
.icon-youtube:hover svg,
.icon-whatsapp:focus svg,
.icon-youtube:focus svg {
  fill: var(--orange) !important;
  outline: none;
}

/* Offset magic for fixed header overlap - if still needed */
.scroll-offset {
  position: relative;
  padding-top: 110px;
  margin-top: -110px;
}
#sipChart {
  display: block;
  border: 1px solid #ccc;
  background: #fff;
  margin: 1rem auto;
}
