@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Anton&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Dancing+Script:wght@400..700&family=Great+Vibes&family=Italianno&family=Jomhuria&family=Lexend+Deca:wght@100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Playball&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Victor+Mono:ital@0;1&display=swap');
/* first section */
#first-section{
  width: 100%;
  /* border: 1px solid red; */
  /* background-color: #1a0f52; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0px 50px 0px;
  gap: 70px 0px;
  position: relative;
  overflow: hidden;

}
    #first-section canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      pointer-events: none;
    }

.first-section-card{
  width: 85%;
  /* border: 1px solid; */
  height: 200px;  
  display: flex;
  justify-content: space-between;
  align-items: center;
    position: relative;
background: linear-gradient(145deg, hsl(225, 98%, 25%), #f0f0f0);
box-shadow:  20px 20px 60px #bebebe,
             -20px -20px 60px #ffffff;

             border-radius: 20px;
}


.first-section-card.reverse{
  flex-direction: row-reverse;
}

.first-text{
width: 70%;
padding: 20px 40px;

}
.first-text h1{
font-family: "Libre Baskerville", serif;
  font-weight: 600;
  position: relative;
  color: white;
  font-size: 30px;
}
/* Opening quote */
.first-text h1::before {
  content: "“"; /* or use \201C for unicode */
  color: rgba(167, 167, 255, 0.872);
  font-size: 80px;
  position: absolute;
  top: -40px;
  left: -40px;
  font-family: serif;
}

/* Closing quote */
.first-text h1::after {
  content: "”"; 
  color: rgba(61, 61, 238, 0.948);
  font-size: 80px;
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: serif;
}

.first-img{
  width: 300px;
  position: relative;
  height: 100%;
}

.first-img img{
width: 100%;
/* height: 200px; */
border-radius: 20px;
position: absolute;
bottom: -10px;
/* z-index: 9; */
}

/* .first-img::after{
  content: '';
  border: 2px solid blue;
  z-index: 10;
  width: 100%;
  height: 220px;
  position: absolute;
  left: 20px;
  top: -40px;
  border-radius: 20px;
} */









/* .border{
  border: 1px solid;
} */

/* first section */







/* ---------- OUR WORK STYLING ---------- */
.ourwork-section {
  background: linear-gradient(135deg, #f7f7ff 0%, #f3ecff 100%);
  padding: 100px 6%;
  position: relative;
  overflow: hidden;
}

.ourwork-title {
  text-align: center;
  margin-bottom: 80px;
}

.ourwork-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #4c0080;
  letter-spacing: 2px;
}

/* Wrapper - 3 column layout */
.ourwork-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}

/* Columns */
.ourwork-col {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
/* make grid items align at top so middle can pin cleanly */
.ourwork-wrapper {
  align-items: start; /* instead of center */
}

/* wrapper for pin */
.ourwork-image-wrapper {
  position: relative;    /* required for pin calculations */
  /* height: 100%;          gives the wrapper the column height */
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid; */
  margin-bottom: 150px;
}

/* ensure the element we pin doesn't stretch weirdly */
.ourwork-image {
  align-self: flex-start;
  /* border: 1px solid; */
}

/* optionally reduce the image size at smaller widths */
@media (max-width: 992px) {
  .ourwork-image-wrapper { order: -1; }
  .ourwork-image img { width: 80%; }
}

.image-frame {
  position: relative;
  /* clip-path: polygon(15% 0%, 85% 0%, 100% 20%, 100% 80%, 85% 100%, 15% 100%, 0 80%, 0 20%); */
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: transform 0.8s ease;
  background: linear-gradient(145deg, #f3ecff, #e7f4ff);
}

.image-frame img {
  width: 350px;
  height: auto;
  display: block;
  transition: transform 1s ease;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 70%);
  opacity: 0.4;
  mix-blend-mode: screen;
  animation: glowPulse 6s ease-in-out infinite alternate;
  z-index: 10;
}

@keyframes glowPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0.7; }
}

.image-frame:hover img {
  transform: scale(1.05);
}
.image-frame:hover {
  transform: rotateY(10deg) rotateX(5deg);
}

/* Card design (unchanged from your original) */
.work-card {
  background: white;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.work-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 90deg, #d4a5ff, #a5e6ff, #ffb3d9, #d4a5ff);
  transform: rotate(0deg);
  z-index: 0;
  transition: 0.8s;
  opacity: 0;
}

.work-card:hover::before {
  opacity: 0.5;
  animation: spinBorder 6s linear infinite;
}

@keyframes spinBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.work-card h3 {
  position: relative;
  z-index: 2;
  color: #4c0080;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.work-card p {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.work-btn {
  margin-top: 15px;
  background: #4c0080;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease, transform 0.2s;
}

.work-btn:hover {
  background: #7a1dd4;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .ourwork-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ourwork-image {
    order: -1;
    text-align: center;
      align-self: start; 
  }

  .image-frame img {
    width: 80%;
    margin: 0 auto;
  }
}



/* dsd */


.about-section {
  position: relative;
  background: linear-gradient(345deg, #0c0633, #1a0f52, #2b1b76);
  color: #fff;
  padding: 140px 10%;
  overflow: hidden;
}

/* Animated Background Lights */
.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: floatGlow 6s ease-in-out infinite alternate;
}
.about-section::before {
  top: -50px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #a5e6ff 0%, transparent 70%);
}
.about-section::after {
  bottom: -100px; right: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, #d4a5ff 0%, transparent 70%);
  animation-delay: 3s;
}

@keyframes floatGlow {
  from { transform: translateY(0); }
  to { transform: translateY(30px); }
}

/* Wave SVG animation */
.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: waveMove 10s ease-in-out infinite alternate;
  opacity: 0.4;
}
@keyframes waveMove {
  from { transform: translateY(0); }
  to { transform: translateY(15px); }
}

/* About Content */
.about-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px;
  position: relative;
  z-index: 2;
}

.about-title {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: #a5e6ff;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-align: center;
}

.about-desc {
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  opacity: 0.9;
  margin-bottom: 30px;
}
p.about-desc {
    font-family: "Libre Baskerville", serif;
}

.about-btn {
  background: transparent;
  border: 2px solid #a5e6ff;
  color: #a5e6ff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.about-btn:hover {
  background: #a5e6ff;
  color: #0c0633;
}

/* Vision Section */
.vision-section {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.vision-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.vision-title {
  font-size: 1.8rem;
  color: #d4a5ff;
  margin-bottom: 20px;
}
.vision-box {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Mission Section */
.mission-section {
  text-align: center;
  position: relative;
  z-index: 2;
}
.mission-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.mission-title {
  font-size: 1.8rem;
  color: #d4a5ff;
  margin-bottom: 20px;
}
.mission-box {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.mission-box ul {
  list-style-type: disc;
  padding-left: 25px;
}
.mission-box li {
  margin: 10px 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 100px 5%;
  }
  .about-title {
    font-size: 2.2rem;
  }
  .mission-box, .vision-box {
    padding: 20px;
  }
}






/* =======================
   PROBLEM SECTION STYLES
   ======================= */
.problem-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background: radial-gradient(circle at top right, #fff8f9 0%, #f9f9ff 100%);
  color: #222;
  font-family: "Poppins", sans-serif;
}







/* --- Gradient orbs --- */
.problem-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.problem-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: float 10s ease-in-out infinite alternate;
}

.problem-orb.orb1 {
  width: 400px; height: 400px;
  top: -100px; left: -150px;
  background: linear-gradient(135deg, #ff8fb1, #ffbddb);
}

.problem-orb.orb2 {
  width: 300px; height: 300px;
  bottom: -80px; right: -100px;
  background: linear-gradient(135deg, #b3cfff, #8ea6ff);
}

.problem-orb.orb3 {
  width: 250px; height: 250px;
  top: 30%; left: 60%;
  background: linear-gradient(135deg, #ffd9a0, #ffb585);
}

@keyframes float {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-30px) scale(1.05); }
}

/* --- Layout --- */
.problem-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-header {
  text-align: center;
  margin-bottom: 3rem;
}

.problem-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.problem-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff7ab8, #7b61ff);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Content --- */
.problem-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .problem-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
  }
}

.problem-text {
  flex: 1;
  line-height: 1.75;
  font-size: 1.05rem;
}

.problem-stat {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.problem-highlight {
  font-weight: 700;
  font-size: 2rem;
  color: #ff4f81;
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1.2rem;
}

.problem-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7b61ff;
  font-size: 1.5rem;
  line-height: 1;
}

.problem-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.problem-image::after{
  position: absolute;
  content: '';
  height: 100%;
  width: 500px;
  left: 70px;
  bottom: 30px;
  border-right: 2px dashed blue;
  border-top: 2px dashed blue;
}

.problem-image img {
  /* position: relative; */
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.problem-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}






/* Founder Section */
.founder-section {
  position: relative;
  background: linear-gradient(135deg, #0c0633, #1a0f52, #2b1b76);
  color: #fff;
  padding: 20px 8%;
  overflow: hidden;
}

/* Background glowing orbs */
.founder-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: floatLight 8s ease-in-out infinite alternate;
}

.orb1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #a5e6ff 0%, transparent 70%);
  top: -80px;
  left: -100px;
}
.orb2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #d4a5ff 0%, transparent 70%);
  bottom: -60px;
  right: -120px;
  animation-delay: 2s;
}
.orb3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #ffb3d9 0%, transparent 70%);
  top: 30%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes floatLight {
  0% { transform: translateY(0); opacity: 0.4; }
  100% { transform: translateY(25px); opacity: 0.7; }
}

/* Layout */
.founder-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Founder Image */
.founder-image {
  flex: 1;
  position: relative;
  text-align: center;
}

.founder-image::after{
  content: '';
  width: 200px;
  height: 300px;
  bottom: -50px;
  right: -80px;
  position: absolute;
  z-index: 2;
  background-image: url('../akam/svg/1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.3;

  
}

.founder-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  /* clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%); */
  border: 4px solid transparent;
  /* background: linear-gradient(135deg, #a5e6ff, #d4a5ff); */
  background-clip: padding-box;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.4); */
  transition: transform 0.8s ease;
}
.founder-image img:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Quote */
.founder-quote {
  flex: 1.5;
  position: relative;
}

.founder-quote::after{
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  /* border: 1px solid; */
  top: -20%;
  right: -150px;
  background-image: url(../akam/svg/Ornament\ 68.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
}

.founder-quote .quote-symbol {
  font-size: 5rem;
  color: rgba(255,255,255,0.15);
  font-weight: bold;
  line-height: 0.8;
}
.founder-quote p {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    font-weight: 400;
    color: #e8e8f9;
    margin: 20px 0;
    font-family: "Libre Baskerville", serif;
}
.founder-quote .end {
  text-align: right;
  display: block;
  margin-top: -20px;
}
.founder-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #a5e6ff;
  margin-top: 25px;
  position: relative;
  display: inline-block;
}
.founder-name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  /* background: linear-gradient(90deg, #a5e6ff, #d4a5ff); */
  animation: nameUnderline 2s ease-out forwards;
  animation-delay: 1.5s;
}
@keyframes nameUnderline {
  to { width: 100%; }
}

/* Responsive */
@media (max-width: 992px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .founder-image img {
    max-width: 300px;
  }
  .founder-quote p {
    font-size: 1.05rem;
  }
}



/* ---------- Testimony Section ---------- */
.testimony-section {
  position: relative;
  background: linear-gradient(135deg, #f9f9ff, #f1f5ff);
  padding: 100px 8%;
  overflow: hidden;
}

.testimony-header {
  text-align: center;
  margin-bottom: 70px;
}
.testimony-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #2b1b76;
  position: relative;
}
.testimony-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #a5e6ff, #d4a5ff);
  border-radius: 2px;
}

/* Container & Cards */
.testimony-container {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  z-index: 2;
}

.testimony-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  padding: 60px 50px;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.testimony-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* Alternating layout */
.testimony-card.left .testimony-image {
  order: 1;
}
.testimony-card.left .testimony-content {
  order: 2;
}
.testimony-card.right .testimony-content {
  order: 1;
}
.testimony-card.right .testimony-image {
  order: 2;
}

/* Image Styling */
.testimony-image {
  position: relative;
  width: 30%;
  min-width: 220px;
  z-index: 3;
}
.testimony-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: translateY(30px);
  transition: transform 0.5s ease;
}
.testimony-card:hover .testimony-image img {
  transform: translateY(0);
}

/* Let image break out a bit of the card */
.testimony-card.left .testimony-image img {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.testimony-card.right .testimony-image img {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

/* Content Styling */
.testimony-content {
  width: 70%;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  position: relative;
}
.testimony-content p {
  font-style: italic;
  color: #222;
  margin-bottom: 15px;
}
.testimony-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #4c0080;
}

/* Responsive */
@media (max-width: 992px) {
  .testimony-card {
    flex-direction: column;
    padding: 50px 30px;
  }
  .testimony-image img {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    transform: none;
    margin-bottom: 30px;
  }
  .testimony-content {
    width: 100%;
    text-align: center;
  }
}




/* blog news */
#blog-news{
  padding: 40px 0px;
}

.blog-news-container{
  /* border: 1px solid; */
  width: 80%;
  /* height: 20px; */
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
}

.newscard{
  width: 320px;
  height:450px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;

}
.newscard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newscard .news-btn{
  position: absolute;
  /* width: 50px; */
  /* height:25px; */
  bottom: 20px;
  left: 20px;
border-radius: 10px;
background: #ebebeb;
box-shadow:  20px 20px 60px #c8c8c8,
             -20px -20px 60px #ffffff63;
padding:10px 15px;

}
/* blog news */

/* Footer Wrapper */
.akam-footer {
  background: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #0b1e4e;
}

/* Main Layout */
.akam-footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Left Column */
.akam-footer-left,
.akam-footer-middle,
.akam-footer-right {
  flex: 1;
}

.akam-footer-address {
  line-height: 1.6;
  margin-bottom: 20px;
}

.akam-footer-heading {
  font-weight: bold;
  margin-bottom: 10px;
}

/* Contact list */
.akam-footer-list {
  list-style: disc;
  margin-left: 20px;
}

.akam-footer-list a {
  color: #0b1e4e;
  text-decoration: none;
}

.akam-footer-list a:hover {
  text-decoration: underline;
}

/* Social icons */
.akam-footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  
  /* flex-direction: column; */
  gap: 12px;
}

.akam-footer-icon img {
  width: 40px;
  height: 40px;
}

/* Right Column - QR */
.akam-footer-donate-title {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.akam-footer-qr {
  border: 10px solid #d7c44a;
  padding: 10px;
  display: inline-block;
}

.akam-footer-qr img {
  width: 170px;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .akam-footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .akam-footer-socials {
    flex-direction: row;
    justify-content: center;
  }
}
.akam-footer-icon i {
  font-size: 26px;
  color: #0b1e4e;
  transition: 0.3s ease;
}

.akam-footer-icon i:hover {
  transform: scale(1.15);
  opacity: 0.8;
}








/* about us  */
/* WRAPPER */
.akam-story-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  font-family: "Arial", sans-serif;
  color: #1d1d4f; /* matches screenshot text color */
  padding: 20px;
}

/* LEFT TEXT COLUMN */
.akam-story-content {
  max-width: 55%;
}

/* HEADINGS */
.akam-story-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d1d4f;
}

.akam-story-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #1d1d4f;
}

/* PARAGRAPHS */
.akam-story-text {
  font-size: 18px !important;
  line-height: 1.24;
  margin-bottom: 15px;
  color: #1d1d4f;
  text-align: justify;
}

/* RIGHT IMAGE */
.akam-story-image-wrapper {
  flex-shrink: 0;
  max-width: 40%;
}

.akam-story-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 4px solid #1d1d4f;
  object-fit: cover;
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 992px) {
  .akam-story-section {
    flex-direction: column;
    text-align: left;
  }

  .akam-story-content,
  .akam-story-image-wrapper {
    max-width: 100%;
  }

  .akam-story-image-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .akam-story-title {
    font-size: 36px;
  }

  .akam-story-subtitle {
    font-size: 26px;
  }

  .akam-story-text {
    font-size: 16px;
  }
}
/* === Container / reset === */
.akam-focus-section {
  padding: 36px 20px;
  box-sizing: border-box;
  font-family: "Arial", Helvetica, sans-serif;
  color: #0f2350; /* deep-blue text */
}

.akam-focus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

/* Column containing the boxes */
.akam-focus-column {
  width: 36%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  box-sizing: border-box;
  min-height: 340px;
}

/* Individual rounded boxes */
.akam-focus-box {
  background: #ffffff;
  border: 2px solid #1d2a66; /* navy border */
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 0 0 4px transparent; /* placeholder */
  position: relative;
  box-sizing: border-box;
  min-height: 64px;
}

/* Connector line from each box towards the center (horizontal) */
.akam-focus-box::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  background: #1d2a66;
  transform: translateY(-50%);
}

/* connectors lengths differ for left/right */
.akam-focus-left .akam-focus-box::after {
  right: -34px;               /* small gap at box edge */
  left: auto;
  width: calc(34px + 8px);    /* visual spacing to node */
}

.akam-focus-right .akam-focus-box::after {
  left: -34px;
  width: calc(34px + 8px);
}

/* For smaller screens we will shrink connectors (media queries below) */

/* Center circle + rings */
.akam-focus-center {
  width: 320px;
  height: 320px;
  min-width: 240px;
  min-height: 240px;
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.akam-focus-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  background: #f9f9f9;; /* deep navy fill for outermost ring */
  border: 6px solid #071544;
}

/* create a white gap and inner dark disk using a pseudo-inner ring */
.akam-focus-ring::before {
  content: "";
  position: absolute;
  inset: 10px; /* gap thickness */
  border-radius: 50%;
  background: #ffffff00; /* white gap */
  z-index: 1;
}

/* inner dark ring (drawn by a sibling element) */
.akam-focus-ring--inner {
  width: 70%;
  height: 70%;
  background: #071544;
  z-index: 2;
  border: 6px solid #071544;
}

.akam-focus-label {
  position: absolute;
  z-index: 3;
  text-align: center;
  color: #ffffff;
  width: 64%;
  padding: 6px;
}

.akam-focus-label h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

/* small circular nodes placed at cardinal points */
.akam-focus-node {
  width: 20px;
  height: 20px;
  background: #071544;
  border-radius: 50%;
  position: absolute;
  z-index: 4;
  box-shadow: 0 0 0 6px #ffffff;  /* white ring around node to match image */
  border: 3px solid #071544;      /* extra dark border to match look */
}

/* node positions */
.akam-focus-node--top    { top: -10px; left: 50%; transform: translate(-50%, -50%); }
.akam-focus-node--right  { right: -10px; top: 50%; transform: translate(50%, -50%); }
.akam-focus-node--bottom { bottom: -10px; left: 50%; transform: translate(-50%, 50%); }
.akam-focus-node--left   { left: -10px; top: 50%; transform: translate(-50%, -50%); }

/* tweak box vertical distribution to roughly match your image (top/middle/bottom) */
.akam-focus-left .akam-focus-box--top    { align-self: flex-start; }
.akam-focus-left .akam-focus-box--middle { align-self: center; }
.akam-focus-left .akam-focus-box--bottom { align-self: flex-end; }

.akam-focus-right .akam-focus-box--top    { align-self: flex-start; }
.akam-focus-right .akam-focus-box--middle { align-self: center; }
.akam-focus-right .akam-focus-box--bottom { align-self: flex-end; }

/* === Responsive === */
@media (max-width: 1100px) {
  .akam-focus-inner { gap: 20px; }
  .akam-focus-column { width: 30%; min-height: 300px; }
  .akam-focus-center { width: 280px; height: 280px; }
  .akam-focus-label h3 { font-size: 22px; }
  .akam-focus-box { font-size: 13px; padding: 10px 12px; }
  .akam-focus-node { width: 18px; height: 18px; box-shadow: 0 0 0 5px #ffffff; }
  /* shorten connector lines */
  .akam-focus-left .akam-focus-box::after,
  .akam-focus-right .akam-focus-box::after { width: calc(28px + 6px); }
}

@media (max-width: 820px) {
  /* Stack: center first, then 2-column boxes under it */
  .akam-focus-inner {
    display: block;
    text-align: center;
  }

  .akam-focus-center {
    margin: 0 auto 24px;
  }

  .akam-focus-column {
    width: 100%;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
  }

  .akam-focus-left,
  .akam-focus-right { margin: 0 auto; }

  /* connectors become short vertical-ish bars near boxes: hide them for narrow screens to avoid awkward lengths */
  .akam-focus-box::after { display: none; }

  .akam-focus-box { font-size: 13px; text-align: left; }
  .akam-focus-label h3 { font-size: 20px; }
  .akam-focus-center { width: 220px; height: 220px; }
}

@media (max-width: 480px) {
  .akam-focus-column { grid-template-columns: 1fr; }
  .akam-focus-box { font-size: 14px; padding: 12px; }
  .akam-focus-center { width: 200px; height: 200px; }
  .akam-focus-label h3 { font-size: 18px; }
}




/* WRAPPER */
.akam-gj-section {
  padding: 30px 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #152059; /* deep navy */
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.55;
}

/* EACH BLOCK */
.akam-gj-block {
  margin-bottom: 45px;
  position: relative;
}

/* SUB-HEADING */
.akam-gj-heading-small {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

/* QUOTED TITLE */
.akam-gj-quote {
  font-size: 26px;
  font-weight: 800;
  color: #152059;
  margin: 0 0 18px 0;
  line-height: 1.25;
}

/* BODY TEXT */
.akam-gj-text {
  margin: 10px 0;
  font-size: 16px !important;
}

/* IMAGE ON RIGHT */
.akam-gj-img-wrapper {
  float: right;
  width: 250px;
  margin-left: 20px;
  margin-bottom: 12px;
}

.akam-gj-img {
  width: 100%;
  border-radius: 12px;
  border: 3px solid #152059;
  object-fit: cover;
}

/* CLEAR FLOAT AFTER SECTION */
.akam-gj-block::after {
  content: "";
  display: block;
  clear: both;
}

/* RESPONSIVE */
@media (max-width: 780px) {
  .akam-gj-img-wrapper {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px auto;
    display: block;
  }

  .akam-gj-quote {
    font-size: 22px;
  }

  .akam-gj-heading-small {
    font-size: 18px;
  }

  .akam-gj-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .akam-gj-quote {
    font-size: 20px;
  }

  .akam-gj-heading-small {
    font-size: 17px;
  }
}



/* MAIN SECTION WRAPPER */
.akam-rtread-section {
  padding: 5px 20px;
  max-width: 1150px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #16225b; /* navy tone from screenshot */
  line-height: 1.55;
}

/* FLEX LAYOUT */
.akam-rtread-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* IMAGE BLOCK */
.akam-rtread-img-wrapper {
  width: 380px;
  flex-shrink: 0;
}

.akam-rtread-img {
  width: 100%;
  border-radius: 18px;
  border: 3px solid #16225b;
  object-fit: cover;
  display: block;
}

/* TEXT BLOCK */
.akam-rtread-text-block {
  flex: 1;
}

.akam-rtread-heading-small {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.akam-rtread-quote {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: #16225b;
}

.akam-rtread-text {
  font-size: 16px !important;
  margin-bottom: 12px;
  word-spacing: 5px;
  text-align: justify;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .akam-rtread-content {
    flex-direction: column;
    text-align: left;
  }

  .akam-rtread-img-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 20px auto;
  }

  .akam-rtread-quote {
    font-size: 26px;
  }

  .akam-rtread-heading-small {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .akam-rtread-heading-small {
    font-size: 18px;
  }

  .akam-rtread-quote {
    font-size: 22px;
  }

  .akam-rtread-text {
    font-size: 15px;
  }
}


/* ============ Base / layout ============ */
.akam-approach-section {
  font-family: Arial, Helvetica, sans-serif;
  color: #0d2050;
  padding: 40px 20px;
  box-sizing: border-box;
}

.akam-approach-inner {
  max-width: 1220px;
  margin: 0 auto;
}

/* Header */
.akam-approach-header { margin-bottom: 28px; }

.akam-approach-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #0d2050;
}

.akam-approach-lead {
  margin: 0 0 26px 0;
  color: #102352;
  font-size: 16px;
  line-height: 1.55;
  max-width: 920px;
}

/* GRID */
.akam-approach-grid {
  display: grid;
  grid-template-columns: 1fr 320px 1fr;
  grid-template-areas:
    "lt center rt"
    "lb center rb";
  gap: 55px 30px; /* increased spacing for accuracy */
  align-items: center;
  position: relative;
}


/* ======================================================
   CENTER CIRCLE (Improved to match screenshot perfectly)
   ====================================================== */
.akam-approach-center-wrap {
  grid-area: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Outer navy circle */
.akam-approach-center {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #071544;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* White ring */
.akam-approach-center::before {
  content: "";
  position: absolute;
  inset: 12px; /* ring thickness */
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
}

/* Inner navy ring behind image */
.akam-approach-center::after {
  content: "";
  position: absolute;
  inset: 32px; /* inner ring thickness */
  background: #071544;
  border-radius: 50%;
  z-index: 1;
}

/* Image */
.akam-approach-center-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* Label */
.akam-approach-center-label {
  position: absolute;
  z-index: 3;
  bottom: 16px;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}


/* Connector Dots */
.akam-approach-connector {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 3px solid #0d2050;
  border-radius: 50%;
  position: absolute;
  z-index: 4;
}

.akam-approach-connector--t { top: 18px;
    left: 5%; transform: translateX(-50%); }
.akam-approach-connector--b { bottom: 25px;
    left: 96%; transform: translateX(-50%); }
.akam-approach-connector--l {     left: -26px;
    top: 100%;
    transform: translate(26px, -40px); }
.akam-approach-connector--r {     right: 6px;
    top: 20%; transform: translateY(-50%); }


/* ======================================================
   CARDS (Improved spacing, icon placement, typing, radius)
   ====================================================== */

.akam-approach-card {
  background: #ffffff;
  border: 3px solid #0d2050;
  border-radius: 26px;
  padding: 22px 22px 18px 22px;
  max-width: 420px;
  position: relative;
  box-sizing: border-box;
}

.akam-approach-card-title {
  font-size: 18px;
  font-weight: 800;
  margin: 8px 0 8px 0;
  color: #0d2050;
}

.akam-approach-card-body {
  font-size: 15px;
  color: #102352;
  line-height: 1.55;
}

/* ICON above card */
.akam-approach-card-icon {
  width: 52px;
  height: 52px;
  background: #0d2050;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
}

.akam-approach-card-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}


/* GRID AREA ASSIGNMENT */
.akam-approach-card--lt { grid-area: lt; }
.akam-approach-card--rt { grid-area: rt; }
.akam-approach-card--lb { grid-area: lb; }
.akam-approach-card--rb { grid-area: rb; }

/* Position refinement to match screenshot */
.akam-approach-card--lt { justify-self: end; transform: translateY(-12px); }
.akam-approach-card--rt { justify-self: start; transform: translateY(-12px); }
.akam-approach-card--lb { justify-self: end; transform: translateY(12px); }
.akam-approach-card--rb { justify-self: start; transform: translateY(12px); }


/* ============ Responsive ============ */
@media (max-width: 950px) {
  .akam-approach-grid {
    grid-template-columns: 1fr 260px 1fr;
  }

  .akam-approach-center {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 780px) {
  .akam-approach-grid {
    grid-template-areas:
      "center"
      "lt"
      "rt"
      "lb"
      "rb";
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }

  .akam-approach-connector {
    display: none;
  }

  .akam-approach-card {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .akam-approach-title { font-size: 28px; }
  .akam-approach-lead { font-size: 15px; }
  .akam-approach-card-title { font-size: 17px; }
}




/* =======================
   BASE WRAPPER
======================= */
.akam-lib-section {
  padding: 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
  color: #0d2050;
  box-sizing: border-box;
}

.akam-lib-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* =======================
   HEADER BLOCK
======================= */
.akam-lib-header {
  /* display: flex;
  align-items: flex-start; */
  gap: 14px;
  margin-bottom: 18px;
}

.akam-lib-logo {
  width: 110px;
  height: auto;
  display: block;
}

.akam-lib-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
  color: #0d2050;
  text-transform: uppercase;
}

/* =======================
   TEXT + IMAGE ROW
======================= */
.akam-lib-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.akam-lib-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #0d2050;
}

.akam-lib-text p {
  margin-bottom: 14px;
}

/* =======================
   IMAGE
======================= */
.akam-lib-image-wrapper {
  flex-shrink: 0;
  max-width: 380px;
}

.akam-lib-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 4px solid #0d2050;
  object-fit: cover;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
  .akam-lib-body {
    flex-direction: column;
  }

  .akam-lib-image-wrapper {
    max-width: 100%;
  }

  .akam-lib-image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
  }

  .akam-lib-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .akam-lib-title {
    font-size: 22px;
  }
}

@media (max-width: 500px) {
  .akam-lib-title {
    font-size: 20px;
  }

  .akam-lib-text {
    font-size: 15px;
  }
}





.feminist-library {
  padding: 20px 24px;
  background-color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.feminist-library-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP ROW */
.feminist-library-top {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

/* IMAGE */
.feminist-library-image {
  flex: 0 0 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid rgb(0, 0, 97);
}

.feminist-library-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* RIGHT CONTENT */
.feminist-library-intro {
  flex: 1;
}

.feminist-library-heading {
  font-size: 34px;
  font-weight: 700;
  color: #00184b;
  margin-bottom: 20px;
  text-transform: uppercase;
  margin-top: 30px;
}

.feminist-library-paragraph {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: #1f2937;
  word-spacing: 6px;
}

/* BOTTOM SECTION */
.feminist-library-bottom {
  margin-top: 56px;
  /* max-width: 820px; */
}

.feminist-library-subheading {
  font-size: 28px !important;
  font-weight: 700;
  color: #0b2a6f;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 768px) {
  .feminist-library-top {
    flex-direction: column;
  }

  .feminist-library-image {
    width: 100%;
    max-width: 360px;
  }

  .feminist-library-heading {
    font-size: 22px;
  }

  .feminist-library-subheading {
    font-size: 17px;
  }

  .feminist-library-paragraph {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .feminist-library {
    padding: 56px 16px;
  }
}





.community-events {
  padding: 80px 24px;
  background-color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.community-events-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.community-events-title {
  font-size: 28px;
  font-weight: 700;
  color: #0b2a6f;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.community-events-intro {
  font-size: 17px !important;
  color: #1f2937;
  margin-bottom: 48px;
  word-spacing: 6px;
}

/* Grid */
.community-events-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: start;
}

/* Cards */
.community-event-card {
  text-align: center;
}

.community-event-heading {
  font-size: 22px !important;
  font-weight: 700;
  color: #001e5f;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Images */
.community-event-image {
  border-radius: 20px;
  border: 3px solid #001d5a;
  overflow: hidden;
  margin-bottom: 16px;
}

.community-event-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /* height: auto; */
  display: block;
}

/* Text */
.community-event-text {
  font-size: 14px !important;
  line-height: 1.6;
  color: #1f2937;
}

/* Connector */
.community-event-connector {
  position: relative;
}

.community-event-connector::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 50%;
  width: 100px;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #0b2a6f,
    #0b2a6f 6px,
    transparent 6px,
    transparent 12px
  );
  transform: translateX(-50%);
}

/* Footer */
.community-events-footer {
  margin-top: 40px;
  /* max-width: 820px; */
  font-size: 18px !important;
  line-height: 1.7;
  color: #1f2937;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .community-events-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .community-event-connector {
    display: none;
  }
}

@media (max-width: 480px) {
  .community-events {
    padding: 56px 16px;
  }

  .community-events-title {
    font-size: 20px;
  }

  .community-event-heading {
    font-size: 14px;
  }

  .community-event-text,
  .community-events-intro,
  .community-events-footer {
    font-size: 13.5px;
  }
}


.assam-library-legacy {
  padding: 20px 24px;
  background-color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.assam-library-legacy-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

/* TEXT COLUMN */
.assam-library-legacy-content {
  flex: 1;
  max-width: 720px;
}

.assam-library-legacy-title {
  font-size: 26px;
  font-weight: 700;
  color: #0b2a6f;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 20px;
}

.assam-library-legacy-text {
  font-size: 18px !important;
  line-height: 1.75 !important;
  color: #1f2937;
  margin-bottom: 16px;
}

/* IMAGE COLUMN */
.assam-library-legacy-image {
  flex: 0 0 360px;
  border-radius: 20px;
  border: 3px solid #0b2a6f;
  overflow: hidden;
  position: relative;
}

.assam-library-legacy-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional dotted decorative curve */
.assam-library-legacy-image::before {
  content: "";
  position: absolute;
  top: -32px;
  left: -40px;
  width: 120px;
  height: 60px;
  border-top: 2px dashed #0b2a6f;
  border-radius: 60px 60px 0 0;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .assam-library-legacy-wrapper {
    flex-direction: column;
  }

  .assam-library-legacy-image {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .assam-library-legacy {
    padding: 56px 16px;
  }

  .assam-library-legacy-title {
    font-size: 20px;
  }

  .assam-library-legacy-text {
    font-size: 14px;
  }
}





.how-started {
  padding: 20px 24px;
  background-color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.how-started-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* LEFT */
.how-started-content {
  flex: 1;
  max-width: 640px;
}

.how-started-title {
  font-size: 26px;
  font-weight: 700;
  color: #0b2a6f;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.how-started-text {
  font-size: 16px !important;
  line-height: 1.75 !important;
  color: #1f2937;
  margin-bottom: 16px;
}

/* RIGHT IMAGE */
.how-started-image {
  flex: 0 0 420px;
}

.how-started-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* BOTTOM */
.how-started-bottom {
  /* max-width: 820px; */
  margin: 48px auto 0;
}

.how-started-subtitle {
  font-size: 26px !important;
  font-weight: 700;
  color: #0b2a6f;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 900px) {
  .how-started-wrapper {
    flex-direction: column;
  }

  .how-started-image {
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .how-started {
    padding: 56px 16px;
  }

  .how-started-title {
    font-size: 20px;
  }

  .how-started-subtitle {
    font-size: 16px;
  }

  .how-started-text {
    font-size: 14px;
  }
}




/* ===== SECTION ===== */

.akf-lib-section {
  padding: 24px 20px;
  background-color: #ffffff;
}

.akf-lib-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ===== BOX COMMON ===== */

.akf-lib-box {
  margin-bottom: 48px;
}

/* ===== BOX 1 : INTRO ===== */

.akf-lib-title {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #001957;
  margin-bottom: 12px;
}

.akf-lib-subtitle {
  font-size: 19px !important;
  font-weight: 600;
  color: #1f3c88;
  margin-bottom: 20px;
}

.akf-lib-text {
  font-size: 18px !important;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 16px;
  word-spacing: 6px;
}

/* ===== BOX 2 : SPLIT ===== */

.akf-lib-box--content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.akf-lib-subheading {
  font-size: 26px;
  font-weight: 700;
  color: #001753;
  margin-bottom: 16px;
}

/* ===== IMAGE ===== */

.akf-lib-image-wrap {
  position: relative;
  border-radius: 18px;
  border: 4px solid #001a5c;
  overflow: hidden;
}

.akf-lib-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .akf-lib-box--content {
    grid-template-columns: 1fr;
  }

  .akf-lib-right {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .akf-lib-section {
    padding: 48px 16px;
  }

  .akf-lib-title {
    font-size: 18px;
  }

  .akf-lib-text {
    font-size: 14px;
  }
}



/* ===== SECTION ===== */

.akf-impact-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.akf-impact-container {
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ===== IMPACT VISUAL ===== */

.akf-impact-visual {
  position: relative;
  max-width: 900px;
  margin: 0 auto 64px;
  height: 420px;
}

/* CENTER IMAGE */

.akf-impact-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}

.akf-impact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.akf-impact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 60, 136, 0.7);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

/* STAT PILLS */

.akf-impact-stat {
  position: absolute;
  max-width: 260px;
  padding: 10px 16px;
  border: 2px solid #1f3c88;
  border-radius: 24px;
  font-size: 13.5px;
  color: #1f3c88;
  background-color: #ffffff;
  line-height: 1.5;
}

/* POSITIONS */

.stat-top-left {
  top: 0;
  left: 0;
}

.stat-top-right {
  top: 0;
  right: 0;
}

.stat-left {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}

.stat-right {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
}

.stat-bottom {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 360px;
}

/* ===== BOTTOM CONTENT ===== */

.akf-impact-heading {
  font-size: 26px;
  font-weight: 700;
  color: #001750;
  margin-bottom: 16px;
}

.akf-impact-text {
  font-size: 18.5px !important;
  line-height: 1.8;
  color: #333333;
  /* max-width: 900px; */
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .akf-impact-visual {
    height: auto;
  }

  .akf-impact-stat {
    position: static;
    margin: 12px auto;
    max-width: 90%;
  }

  .akf-impact-center {
    position: static;
    transform: none;
    margin: 32px auto;
  }
}




