/* =========================
        Base Reset
    ========================= */
* {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Jost", sans-serif;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000;
  padding-top: 110px;

  /* space for fixed header */
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(71, 60, 60, 0.9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-left,
.nav-right-logo {
  display: flex;
  align-items: center;
}

.logo {
  height: 110px;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

/* Right Logo */
.logo-right {
  height: 50px;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

/* Center Navigation */
.nav-center {
  flex: 1;
  text-align: center;
}

.nav-center ul {
  list-style: none;
  display: inline-flex;
  gap: 26px;
  align-items: center;
}

.nav-center a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.95;
  font-size: 21px;
  padding: 6px 2px;
  transition: color 0.18s ease;
}

.nav-center a:hover {
  color: #d90a2c;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 80vh;
}

.image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, rgb(0 0 0 / 25%) 0%, rgb(48 48 48 / 25%) 30%, rgb(0 0 0 / 35%) 100%);
  z-index: 2;
}

/* Hero Content */
.hero-text {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Right Social Icons */
.hero-social {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  z-index: 6;
}

.hero-social .social-line {
  position: absolute;
  right: -18px;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px;
  background: #fff;
}

.hero-social a {
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.hero-social a:hover {
  color: #d90a2c;
  transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
  animation: bounce 1.2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablet - Max Width 992px */
@media (max-width: 992px) {
  .nav-inner {
    padding: 12px 16px;
    gap: 10px;
  }

  .logo {
    height: 80px;
  }

  .nav-center ul {
    gap: 18px;
  }

  .nav-center a {
    font-size: 18px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }
}

/* Mobile - Max Width 768px */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-center {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1200;
  }

  .nav-center.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-center ul {
    flex-direction: column;
    gap: 14px;
  }

  .nav-center a {
    font-size: 20px;
    display: block;
    padding: 10px 0;
    color: #fff;
  }

  /* Hide Right Logo on Mobile */
  .nav-right-logo {
    display: none;
  }

  /* Hide Social Icons on Mobile */
  .hero-social {
    display: none;
  }

  /* Adjust Hero Text */
  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

/* pillar */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #333;
}



.section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  padding: 60px 20px;
}

/* Stats container */
.stats-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
}

.stats-container h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f3a68;
  margin-bottom: 20px;
  text-align: center;
  font-family: Merriweather, serif;
}

.stats-box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

/* Base box styles */
.box {
  position: relative;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.box img {
  width: 50px;
  margin-bottom: 10px;
}

.box h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

/* Hover effect */
.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Hidden content */
.box .more {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.4;
}

.box:hover .more {
  opacity: 1;
  max-height: 120px;
}

/* Individual colors */
.education {
  background: #c98a2d;
}

.guardianship {
  background: #a12a22;
}

.inclusion {
  background: #e25a1d;
}

.safety {
  background: #d29d1a;
}

/* Center highlight */
.highlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.highlight img {
  display: block;
  max-width: 120px;
  max-height: 120px;
  width: 100%;
  height: auto;
}

/* Right side content */
.content {
  max-width: 650px;
  flex: 1;
}

.content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f3a68;
  margin-bottom: 30px;
  text-align: center;
  font-family: Merriweather, serif;
}

/* Grid for cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  font-family: Poppins, sans-serif;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 36px;
  color: #c98a2d;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

/* Responsive */
@media(max-width: 1100px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 700px) {
  .section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .highlight img {
    max-width: 90px;
    max-height: 90px;
  }
}



/*about us section*/
.about-us-section {
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

/*3.1 ==== Container & Layout ==== */
.about-us-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-us-col-left,
.about-us-col-right {
  width: 100%;
  max-width: 50%;
  padding: 20px;
}

/*3.2==== Section Title ==== */
.about-us-title-wrapper .about-us-subtitle {
  color: #e41604;
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-us-title-wrapper .about-us-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: left;
  /* Added based on the original HTML's section-title text-left class */
}

/*3.3==== Paragraph ==== */
.about-us-section p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

/*3.4 ==== Image Styling ==== */
.about-us-image-wrapper-outer {
  position: relative;
  margin-right: 30px;
  /* Corresponds to mr-lg-30 */
}

.about-us-dots-wrapper {
  position: relative;
}

.about-us-dots-wrapper img {
  width: 100%;
  border: 10px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-us-dots.about-us-dots-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px dashed #eee;
  z-index: -1;
}

/*3.5 ==== Responsive ==== */
@media screen and (max-width: 768px) {

  .about-us-col-left,
  .about-us-col-right {
    max-width: 100%;
  }

  .about-us-title-wrapper .about-us-title {
    font-size: 24px;
  }

  .about-us-title-wrapper .about-us-subtitle {
    font-size: 30px;
  }

  .about-us-image-wrapper-outer {
    margin-right: 0;
    /* Remove margin on smaller screens */
  }
}


/*our vision*/
/* ---------- Root Variables ---------- */
:root {
  --bg-light: #fefefe;
  --text-dark: #1a1a1a;
  --muted: #555;
  --accent: #d62828;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);

  --serve-bg: #ffecec;
  --objectives-bg: #eaf2fd;
  --aegis-bg: #eaf7df;
}

/* ---------- Global Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2c3e50;
  margin: 0;
  padding: 0;
  background: var(--bg-light);
  line-height: 1.6;
}

/* ---------- Hero Area ---------- */
.hero-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.content-box h5 {
  font-weight: 700;
  font-size: 1.5rem;
  color: #e41604;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 10px;
  text-align: justify;
  color: #555;
}

.highlight-text {
  font-weight: 600;
  color: #2c3e50;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* ---------- Biz Section ---------- */
.biz-section {
  padding: 5px 15px;
  text-align: center;
}

.biz-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeDown 1s ease;
}

.biz-section p {
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.namaste-africa img {
  width: 30%;
  height: auto;
  margin-bottom: 20px;
}

/* ---------- Card Styling ---------- */
.biz-card {
  border-radius: var(--radius);
  padding: 40px 25px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  height: 100%;
  background: #fff;
}

.biz-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* Card Colors */
.biz-serve {
  background: var(--serve-bg);
}

.biz-objectives {
  background: var(--objectives-bg);
}

/* Icon Styling */
.biz-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
  background: #fff;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

.biz-card:hover .biz-icon {
  animation: bounceRotate 1s ease;
}

/* Card Titles */
.biz-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.biz-card:hover h3 {
  color: var(--accent);
}

/* Features List */
.biz-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.biz-features li {
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.biz-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.biz-card:hover .biz-features li {
  transform: translateX(5px);
  color: var(--accent);
}

/* ---------- Animations ---------- */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceRotate {
  0% {
    transform: scale(0.8) rotate(0deg);
  }

  50% {
    transform: scale(1.2) rotate(180deg);
  }

  100% {
    transform: scale(1) rotate(360deg);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-area {
    flex-direction: column;
    text-align: center;
  }

  .content-box {
    margin-bottom: 30px;
  }

  .biz-section h2 {
    font-size: 24px;
  }

  .biz-section p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .biz-card {
    padding: 30px 20px;
  }

  .namaste-africa img {
    width: 90%;
    height: auto;
  }
}






/* Ghana Section */
/* Ghana Section */
.ghana {
  font-family: 'Arial', sans-serif;
  background-color: #7e1d2f;
  color: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  padding-top: 10vh;
  padding-bottom: 40px;
  text-align: center;
}

.ghana-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Article Section */
.ghana-article-section {
  margin: 0 auto;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Justify All Text */
.ghana-article-section p,
.ghana-info-box ul,
.ghana-footer-note {
  text-align: justify;
}

.ghana-article-section p {
  color: #fff;
}

/* Info Box */
.ghana-info-box {
  background-color: #f1c232;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.ghana-info-box ul {
  padding-left: 1.2rem;
  margin: 0;
}

.ghana-info-box p {
  text-align: justify;
}

/* Footer Text */
.ghana-footer-note {
  text-align: justify;
  font-weight: bold;
  margin-top: 30px;
  padding: 10px;
}

/* Image size adjustment */
.ghana-custom-image {
  max-width: 90%;
  /* Adjust as per requirement */
  height: auto;
  margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .ghana-title {
    font-size: 1.8rem;
    padding: 0 15px;
  }

  .ghana {
    padding-top: 15vh;
  }

  .ghana-article-section {
    padding: 10px;
  }

  .ghana-custom-image {
    max-width: 90%;
    /* Adjust as per requirement */
    height: auto;
    margin: 0 auto;
  }
}


/* footer section */
/* Footer Styles */
.custom-footer {
  background: #111;
  color: #ddd;
  padding: 40px 20px;
  font-family: "Jost", sans-serif;
  border-top: 1px solid #333;
}

/* Container for footer content */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo section in the footer */
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Footer image/logo */
.footer-image {
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
}

/* Footer description text */
.footer-logo-section p {
  font-size: 14px;
  margin: 0;
  color: #aaa;
}

/* Footer navigation styles */
.footer-navigation {
  flex-grow: inherit;
}

/* Navigation links */
.footer-nav-list {
  list-style: none;
  display: flex;
  gap: 26px;
  padding: 0;
  margin: 0;
}

.footer-nav-link {
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #d90a2c;
}

/* Social media icon styles */
.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  color: #ddd;
  font-size: 18px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-social-icon:hover {
  color: #d90a2c;
}

/* Mobile specific styles */
@media (max-width: 768px) {
  .footer-nav-list {
    flex-direction: column;
    /* Stack items vertically */
    gap: 12px;
    /* Reduce gap between items */
    align-items: center;
    /* Center align items */
  }

  .footer-nav-link {
    font-size: 14px;
    /* Adjust font size for smaller screens */
  }

  .footer-social-links {
    justify-content: center;
    /* Center social icons on mobile */
    gap: 8px;
  }
}


/* contact form section */
.contact-section {
  font-family: "Jost", sans-serif;
  background: #f9f9f9;
  padding: 60px 20px;
}

.contact-container {
  max-width: 960px;
  margin: auto;
}

.contact-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #d90a2c;
  margin-bottom: 32px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-form,
.contact-info {
  flex: 1 1 300px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d90a2c;
  outline: none;
}

.btn-submit {
  background: #d90a2c;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover {
  background: #a30821;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
  color: #333;
}

.map-container {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}







/*rating stars*/

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #222;
}

.container {
  max-width: 1100px;
  margin: auto;

}

h1 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #c12026;
  text-align: center;
}

p {
  font-size: 15px;
  color: #020202;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.pad {
  padding-top: 60px;
}

.stars-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.star-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 25px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.star-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(193, 32, 38, 0.15) 0%, transparent 70%);
  transform: rotate(25deg);
}

.star-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #f9c846;
  font-size: 22px;
  margin-bottom: 15px;
}

.star-card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.star-card p {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin: 0;
}

.roadmap {
  margin-top: 50px;
  background: linear-gradient(135deg, #c85d61, #c85d61);
  color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.roadmap h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 700;
}

.roadmap p {
  font-size: 15px;
  color: #f5f5f5;
  text-align: center;

}

.footer-text {
  margin-top: 35px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #222;
}

@media (max-width: 600px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  .star-card h3 {
    font-size: 16px;
  }
}





/*time line */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
  position: relative;
}

/* ====== Section Styling ====== */
.benefits-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated Background Shapes */
.floating-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c12026, #f3b500);
  opacity: 0.3;
  animation: float 12s ease-in-out infinite;
}

.shape1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape2 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 70%;
  animation-delay: 3s;
}

.shape3 {
  width: 150px;
  height: 150px;
  top: 75%;
  left: 25%;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-40px) translateX(30px);
  }
}

/* ====== Section Header ====== */
.section-header {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.section-header .subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #c12026;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header .title {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #c12026, #f3b500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====== Benefit Card ====== */
.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #c12026;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.benefit-icon img {
  width: 35px;
  height: 35px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #c12026;
  margin-bottom: 15px;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-card ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.benefit-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c12026;
  font-weight: bold;
}

/* ====== Responsive ====== */
@media screen and (max-width: 768px) {
  .section-header .title {
    font-size: 32px;
  }

  .benefit-card {
    padding: 20px;
  }
}


/* 5 pillar circle */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: #f0f2f5;
        }

        /* Main Section */
        .section {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .main-container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            max-width: 900px;
            width: 100%;
            position: relative;
        }

        /* Title */
        .title {
            text-align: center;
            margin-bottom: 30px;
        }

        .main-title {
            font-size: 28px;
            font-weight: bold;
            color: #000587;
            margin-bottom: 10px;
        }

        .subtitle {
            font-size: 18px;
            color: #666;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Pillars Container */
        .pillars-container {
            position: relative;
            width: 600px;
            height: 600px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* SVG for arrows */
        .pillar-arrows {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .pillar-arrows path {
            stroke: #234786;
            stroke-width: 2;
            fill: none;
            marker-end: url(#arrowhead);
        }

        /* Center Circle */
        .center-circle {
            position: absolute;
            width: 180px;
            height: 180px;
            background: linear-gradient(45deg, #234786, #234786);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(47, 0, 255, 0.3);
            z-index: 10;
            border: 4px solid #fff;
            overflow: hidden;
        }

        .center-circle img {
            width: 150px;
            height: auto;
            object-fit: contain;
        }

        /* Pillars */
        .pillar {
            position: absolute;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border: 3px solid #fff;
            z-index: 5;
        }

        .pillar:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        }

        .pillar-text {
            color: white;
            font-weight: bold;
            font-size: 14px;
            text-align: center;
            line-height: 1.3;
            padding: 10px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Pillar Positions (Desktop Circle Layout) */
        .pillar-1 {
            background: #ffecec;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
        }

        .pillar-1 .pillar-text {
            color: #333;
            text-shadow: none;
        }

        .pillar-2 {
            background: #cd7777;
            top: 30%;
            right: 20px;
            transform: translateY(-50%);
        }

        .pillar-3 {
            background: #68cc97;
            bottom: 60px;
            right: 80px;
        }

        .pillar-4 {
            background: #b47952;
            bottom: 60px;
            left: 80px;
        }

        .pillar-5 {
            background: #6c96be;
            top: 30%;
            left: 20px;
            transform: translateY(-50%);
        }

        /* Mobile Responsive */
        @media (max-width:768px) {
            .pillars-container {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 20px;
                position: static;
            }

            .center-circle {
                position: relative;
                margin-bottom: 20px;
                width: 140px;
                height: 140px;
            }

            .center-circle img {
                width: 100px;
            }

            .pillar {
                position: relative;
                width: 120px;
                height: 120px;
                margin: 10px 0;
            }

            .pillar-1,
            .pillar-2,
            .pillar-3,
            .pillar-4,
            .pillar-5 {
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                transform: none;
            }

            .pillar-text {
                font-size: 12px;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            max-width: 400px;
            width: 90%;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 22px;
            font-weight: bold;
            cursor: pointer;
            color: #333;
        }

        .modal h2 {
            margin-bottom: 15px;
            color: #234786;
            font-size: 20px;
        }

        .modal p {
            font-size: 14px;
            line-height: 1.5;
            color: #444;
        }









/* about cricle */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  margin: 0;
  color: #333;
  overflow-x: hidden;
}

h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.4;
  background: linear-gradient(90deg, #c12026, #dca642);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.infographic {
  position: relative;
  max-width: 850px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

/* Center logo */
.center-logo {
  width: 150px;
  z-index: 3;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 12px;
}

.center-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Circles */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333;
  overflow-x: hidden;
}

h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.4;
  background: linear-gradient(90deg, #c12026, #dca642);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.infographic {
  position: relative;
  max-width: 850px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

/* Center logo */
.center-logo {
  width: 150px;
  z-index: 3;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 12px;
}

.center-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Circles */
.circle {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #fff7f6, #f2e4d9);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 18px;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: float 4s ease-in-out infinite;
}

/* Rotating border */
.circle::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: conic-gradient(#c12026, #dca642, #c12026, #dca642, #c12026);
  animation: rotate 3s linear infinite;
  z-index: -1;
}

/* Inner border to create the effect */
.circle::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #fff7f6, #f2e4d9);
  z-index: -1;
}

.circle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(193, 32, 38, 0.4);
  color: #c12026;
}

/* Floating effect */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Rotation effect */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Circle positions */
.circle.top-left {
  top: 40px;
  left: 70px;
  animation-delay: 0s;
}

.circle.top-right {
  top: 40px;
  right: 70px;
  animation-delay: 0.5s;
}

.circle.bottom-left {
  bottom: 40px;
  left: 70px;
  animation-delay: 1s;
}

.circle.bottom-right {
  bottom: 40px;
  right: 70px;
  animation-delay: 1.5s;
}

.circle.bottom-center {
  bottom: -45px;
  left: 40%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

/* Connector lines - precise connections from circle edges to center logo */
.line {
  position: absolute;
  border: none;
  height: 2px;
  background: repeating-linear-gradient(to right,
      #b7a9a2,
      #b7a9a2 6px,
      transparent 6px,
      transparent 12px);
  opacity: 0.7;
  transform-origin: left center;
}

/* Lines from each circle edge to center logo edge */
.line.tl {
  top: 135px;
  left: 215px;
  width: 95px;
  transform: rotate(35deg);
}

.line.tr {
  top: 135px;
  right: 215px;
  width: 95px;
  transform: rotate(-35deg);
  transform-origin: right center;
}

.line.bl {
  bottom: 135px;
  left: 215px;
  width: 95px;
  transform: rotate(-35deg);
}

.line.br {
  bottom: 135px;
  right: 215px;
  width: 95px;
  transform: rotate(35deg);
  transform-origin: right center;
}

.line.bc {
  bottom: 30px;
  left: 50%;
  width: 70px;
  transform: translateX(-50%) rotate(90deg);
}

/* Responsive Improvements with Bootstrap breakpoints */
@media (max-width: 768px) {
  h2 {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .infographic {
    flex-direction: column;
    min-height: auto;
    padding: 20px 0;
    align-items: center;
    max-width: 100%;
    position: relative;
  }

  .center-logo {
    position: relative !important;
    width: 100px !important;
    margin: 0 auto 25px auto !important;
    order: -1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 8px !important;
  }

  .circle {
    position: relative !important;
    width: 280px !important;
    height: 120px !important;
    border-radius: 60px !important;
    margin: 10px auto !important;
    padding: 15px 20px !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    animation: none !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .circle::before {
    animation: none !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    border-radius: 60px !important;
  }

  .circle::after {
    border-radius: 60px !important;
  }

  .line {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .circle {
    width: 260px !important;
    font-size: 12px !important;
    padding: 12px 18px !important;
  }

  h2 {
    font-size: 18px;
  }
}




/*AEGIS STARS */

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

h1,
h2,
h3 {
  font-weight: 700;
}

/* Brand Colors */
.blue {
  color: #2b4ea2;
}

.gold {
  color: #e41604;
}

.tagline {
  margin-top: 8px;
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
}

/* Card Styling */
.custom-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
}

.section-title {
  font-size: 1.4rem;
  color: #e41604;
  margin-bottom: 15px;
}

/* List Styles */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2b4ea2;
  font-weight: bold;
}

.safeguards-list {
  list-style-type: none;
  padding-left: 0;
}

.safeguards-list li {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Certificate Box */
.certificate-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #e41604, #e41604);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  max-width: 260px;
  box-shadow: 0 5px 15px rgba(243, 59, 18, 0.4);
  text-align: center;
}

.certificate-icon {
  font-size: 30px;
  margin-right: 10px;
}

.certificate-text {
  font-weight: 600;
  font-size: 1rem;
}

/* Down */
.Down-title {
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
}

.Down-heading {
  font-weight: 600;
  color: #2b4ea2;
  font-size: 1rem;
}

/* =========================
    Media Queries
    ========================= */

/* Tablets (Portrait) */
@media (max-width: 992px) {
  .certificate-box {
    margin-top: 20px;
  }

  .custom-card {
    text-align: center;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .certificate-box {
    flex-direction: column;
    padding: 10px;
    max-width: 220px;
  }

  .certificate-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .Down-items {
    gap: 20px;
  }
}