:root {
  --navy: #08153f;
  --navy-2: #10215f;
  --navy-3: #18378d;
  --gold: #cfa647;
  --gold-light: #ebcf8a;
  --gold-soft: #f8f1df;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-soft: #f4f7fb;
  --text: #1d2746;
  --muted: #667085;
  --line: #e7ecf3;
  --shadow: 0 20px 50px rgba(10, 25, 61, 0.10);
  --shadow-2: 0 12px 30px rgba(11, 21, 63, 0.08);
  --radius: 24px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 234, 242, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand h2 {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.1;
}

.brand h2 span {
  color: var(--gold);
}

.brand p {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  color: var(--navy);
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(207, 166, 71, 0.16), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  padding: 110px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.18;
}

.hero-circle-1 {
  width: 280px;
  height: 280px;
  background: var(--gold);
  top: -50px;
  right: -70px;
}

.hero-circle-2 {
  width: 220px;
  height: 220px;
  background: #6d8fff;
  left: -60px;
  bottom: -50px;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: var(--gold-light);
}

.hero-content p {
  color: #dde5ff;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(207, 166, 71, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.09);
}

.btn-light {
  background: rgba(255,255,255,0.11);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-light:hover {
  background: rgba(255,255,255,0.2);
}

.btn-dark-gold {
  background: var(--navy);
  color: var(--gold-light);
}

.hero-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-mini-points span {
  color: #dbe4ff;
  font-size: 0.92rem;
  padding-left: 16px;
  position: relative;
}

.hero-mini-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-info-card h3 {
  color: var(--gold-light);
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.hero-info-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-info-item:last-child {
  border-bottom: none;
}

.hero-info-item strong {
  display: block;
  margin-bottom: 6px;
}

.hero-info-item p {
  margin: 0;
  color: #d7def8;
}

.page-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  padding: 88px 0 68px;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.9rem;
  margin-bottom: 10px;
}

.page-banner p {
  max-width: 820px;
  margin: auto;
  color: #dde5ff;
}

.section {
  padding: 90px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 8px 15px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}

.text-block h2,
.section-heading h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.text-block p,
.section-heading p {
  color: var(--muted);
  margin-bottom: 14px;
}

.section-heading.center {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 40px;
}

.panel-card,
.info-card,
.service-card,
.forte-card,
.team-card,
.blog-card,
.partner-logo,
.faq-item,
.contact-right,
.contact-box,
.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
}

.panel-card {
  padding: 34px;
  box-shadow: var(--shadow);
}

.panel-card h3,
.info-card h3,
.service-card h3,
.forte-card h3,
.team-card h3,
.blog-card h3,
.testimonial-card h4 {
  color: var(--navy);
  margin-bottom: 12px;
}

.panel-card p,
.info-card p,
.service-card p,
.forte-card p,
.team-card p,
.blog-card p,
.testimonial-card p {
  color: var(--muted);
}

.panel-card ul li {
  padding: 12px 0 12px 26px;
  border-bottom: 1px dashed #e5eaf1;
  position: relative;
}

.panel-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.dark-section {
  background: linear-gradient(135deg, var(--navy), #0e1f59);
  color: white;
}

.dark-section .section-heading h2,
.dark-section .section-heading p {
  color: white;
}

.finance-grid,
.services-grid,
.forte-grid,
.cards-grid,
.team-grid,
.blog-grid,
.testimonial-grid,
.partner-grid {
  display: grid;
  gap: 22px;
}

.finance-grid,
.services-grid,
.cards-grid,
.blog-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.forte-grid,
.team-grid,
.partner-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px;
  transition: var(--transition);
}

.feature-card h3 {
  color: white;
  margin-bottom: 12px;
}

.feature-card p {
  color: #d7def8;
}

.info-card,
.service-card,
.forte-card,
.team-card,
.blog-card,
.testimonial-card {
  padding: 28px;
  transition: var(--transition);
}

.info-card:hover,
.service-card:hover,
.forte-card:hover,
.team-card:hover,
.blog-card:hover,
.feature-card:hover,
.partner-logo:hover,
.panel-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
}

.forte-section {
  background: #fcfdff;
}

.forte-icon,
.team-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.team-single-card {
  max-width: 520px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.team-single-card:hover {
  transform: translateY(-6px);
}

.team-single-image img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
}

.team-single-content h2 {
  color: var(--navy);
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.team-single-content .team-role {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.05rem;
}

.partner-logo {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  box-shadow: var(--shadow-2);
  transition: var(--transition);
}

.partner-logo img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo:hover {
  transform: translateY(-6px);
}
.testimonial-role {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.faq-list {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 22px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.contact-section {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-box {
  padding: 20px;
  margin-top: 16px;
}

.contact-box h4 {
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-box p {
  color: var(--muted);
}

.contact-right {
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d9e0ea;
  border-radius: 14px;
  outline: none;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(207, 166, 71, 0.12);
}

.full-width {
  width: 100%;
}

.cta-strip {
  padding: 20px 0 90px;
}

.cta-strip-inner {
  background: linear-gradient(135deg, #f4e5bf, #fff5dd);
  border: 1px solid #ead5a2;
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cta-strip-inner h2 {
  color: var(--navy);
  font-size: 2rem;
}

.footer {
  background: #07112d;
  color: white;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 26px;
  padding-bottom: 36px;
}

.footer h3,
.footer h4 {
  color: var(--gold-light);
  margin-bottom: 14px;
}

.footer p,
.footer li {
  color: #cdd6f7;
  margin-bottom: 10px;
}

.footer a {
  color: #cdd6f7;
}

.footer a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 18px 0;
  color: #bfc8ea;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: 0.3s ease;
  animation: whatsappPulse 1.8s infinite;
  overflow: hidden;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  animation-play-state: paused;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55),
                0 12px 25px rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0),
                0 12px 25px rgba(37, 211, 102, 0.35);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0),
                0 12px 25px rgba(37, 211, 102, 0.35);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .section-grid,
  .finance-grid,
  .services-grid,
  .forte-grid,
  .cards-grid,
  .team-grid,
  .blog-grid,
  .testimonial-grid,
  .partner-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    right: 4%;
    width: 250px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 20px;
    flex-direction: column;
    gap: 14px;
  }

  .nav-links.show {
    display: flex;
  }

  .hero-grid,
  .section-grid,
  .finance-grid,
  .services-grid,
  .forte-grid,
  .cards-grid,
  .team-grid,
  .blog-grid,
  .testimonial-grid,
  .partner-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1,
  .page-banner h1 {
    font-size: 2.2rem;
  }

  .text-block h2,
  .section-heading h2,
  .cta-strip-inner h2 {
    font-size: 1.8rem;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}