
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

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

  body {
    font-family: 'Poppins', sans-serif;
    background: #ffffffff;
    color: #fff;
    overflow-x: hidden;
  }

  
  
  /* ========== WHAT WE DO SECTION (FIXED & RESPONSIVE) ========== */
  .what-we-do {
    background: #fff;
    padding: 37px 0 80px;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    position: relative;
    z-index: 5;
    padding-top: 5px;
    margin-top: 0; /* ensures it sits below the hero */
  }

  .what-we-do .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Section Title */
  .section-title {
    margin-bottom: 50px;
    text-align: center;
  }

  .section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color:#062B5A;
    display: inline-block;
    position: relative;
  }

  .section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #062B5A;
    border-radius: 2px;
  }
.icon-square{
    background: linear-gradient(135deg, #062B5A, #1DA7B2);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(6, 43, 90, 0.25);
}

.icon-square i{
    color: #ffffff;
    transition: all 0.4s ease;
}

/* HOVER */
.feature-card:hover .icon-square{
    background: linear-gradient(135deg, #103A68, #38C4C9);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 25px rgba(29, 167, 178, 0.45);
}

.feature-card:hover .icon-square i{
    color: #ffffff;
}
  /* Features Grid */
  .wwd-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 40px;
  }

  .wwd-features article {
    background: #fdfdfd;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .wwd-features article:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .wwd-features article img {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    object-fit: contain;
  }

  .wwd-features article h4 {
    font-size: 1.15rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .wwd-features article p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }

  /* ---------- SOLUTIONS SECTION ---------- */
  .solutions {
    background-color: #e9edf6;
    padding: 31px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }

  .solutions-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }

  .section-title {
    font-size: 38px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 50px;
  }

  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .solution-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
  }

  .solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .solution-card img {
    width: 50px;
    margin-bottom: 20px;
  }

  .solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
  }

  .solution-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .learn-more {
    color: #f5c542;
    font-weight: 500;
    text-decoration: none;
    border-top: 1px solid #eee;
    padding-top: 10px;
    display: inline-block;
    transition: color 0.3s ease;
  }

  .learn-more:hover {
    color: #f5c542;
  }


  /* ================= PENHAM SOLUTIONS SECTION ================= */


/* ===== Section Base ===== */
/* ===== Section Base (Reduced) ===== */
/* ===== SECTION BASE ===== */
.penham-solutions {
  background: #ffffff;
  padding: 45px 5%; /* reduced */
  font-family: "Poppins", sans-serif;
}

.penham-header h2 {
  font-size: 1.9rem; /* smaller */
  margin-bottom: 8px;
}

.penham-subtext {
  font-size: 0.9rem;
  max-width: 520px;
  margin: 0 auto 30px;
  color: #555;
}
/* HEADER */
.penham-header{
    text-align: center;
    margin-bottom: 40px;
}

.penham-header h2{
    font-size: 42px;
    font-weight: 700;
    color: #062B5A;
    margin-bottom: 12px;
}

.penham-subtext{
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== GRID ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px; /* smaller spacing */
}

/* ===== CARD ===== */
.solution-card {
  background: #fff;
  border-left: 5px solid #1DA7B2;
  border-radius: 10px;
  padding: 18px 20px; /* reduced padding */
  display: flex;
  align-items: flex-start;
  gap: 15px; /* smaller gap */
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transform: translateY(15px);
  opacity: 0;
  animation: fadeUpSmall 0.8s ease forwards;
}

@keyframes fadeUpSmall {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ICON ===== */
.solution-card .icon {
  width: 48px;       /* smaller */
  height: 48px;
  border-radius: 12px;
  font-size: 20px;  /* smaller icon */
  display: flex;
  align-items: center;
  justify-content: center;
   background: linear-gradient(135deg, #062B5A, #1DA7B2);
  color: #fff;
}

/* ===== TEXT ===== */
.solution-card h3 {
  font-size: 1rem; /* smaller heading */
  margin-bottom: 4px;
  color: #000;
}

.solution-card p {
  font-size: 0.85rem; /* smaller paragraph */
  color: #555;
  line-height: 1.4;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution-card {
    padding: 16px 18px;
  }

  .solution-card .icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .solution-card h3 {
    font-size: 0.95rem;
  }

  .solution-card p {
    font-size: 0.8rem;
  }
}


  /* ================= BLOG SECTION ================= */
  /* ================= BLOG SECTION ================= */

.blogs{
    background: #EDEDED;
    padding: 50px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

/* SECTION TITLE */
.blogs h2{
    font-size: 32px;
    font-weight: 700;
    color: #062B5A;
    text-align: center;
    margin-bottom: 35px;
    position: relative;
}

.blogs h2::after{
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #062B5A, #1DA7B2);
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}

/* GRID */
.blog-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.blog-card{
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(6, 43, 90, 0.08);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #C9D4D8;
}

.blog-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(6, 43, 90, 0.18);
}

/* IMAGE */
.blog-card img{
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-bottom: 4px solid #1DA7B2;
}

/* CONTENT */
.blog-content{
    padding: 18px 20px;
}

/* META */
.blog-card .meta{
    font-size: 13px;
    color: #103A68;
    margin-bottom: 8px;
    font-weight: 500;
}

/* TITLE */
.blog-card h3{
    font-size: 20px;
    font-weight: 700;
    color: #062B5A;
    margin-bottom: 10px;
    transition: 0.3s ease;
    line-height: 1.4;
}

/* DESCRIPTION */
.blog-card p{
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* READ MORE */
.blog-card .read-more{
    font-size: 14px;
    font-weight: 600;
    color: #1DA7B2;
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-card .read-more:hover{
    color: #062B5A;
    letter-spacing: 0.3px;
}

/* HOVER TITLE */
.blog-card:hover h3{
    color: #1DA7B2;
}

/* MOBILE */
@media (max-width: 600px){

    .blogs{
        padding: 40px 15px;
    }

    .blogs h2{
        font-size: 26px;
    }

    .blog-card img{
        height: 160px;
    }

    .blog-card h3{
        font-size: 17px;
    }

    .blog-card p{
        font-size: 13px;
    }
}  /* ========== TESTIMONIAL SECTION (Glassmorphism) ========== */
  /* ===== TESTIMONIAL SECTION ===== */
/* ===== TESTIMONIAL SECTION (Compact Version) ===== */
/* ======================================================
   TESTIMONIAL SECTION
====================================================== */

.testimonial-section{
    background: linear-gradient(135deg, #EDEDED, #ffffff);
    padding: 55px 0;
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.testimonial-container{
    width: 90%;
    max-width: 760px;
    text-align: center;
    color: #222;
    position: relative;
    z-index: 2;
}

/* TITLE */
.testimonial-title{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #062B5A;
}

.testimonial-title::after{
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #062B5A, #1DA7B2);
    margin: 10px auto 0;
    border-radius: 10px;
}

/* SLIDER */
.testimonial-slider{
    height: 240px;
    position: relative;
    overflow: hidden;
    margin-left: 100px;
}

/* CARD */
.testimonial-card{
    position: absolute;
    background: rgba(255,255,255,0.75);
    border: 1px solid #C9D4D8;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px 20px;
    max-width: 520px;
    width: 100%;
    opacity: 0;
    transform: scale(0.93) translateY(20px);
    transition: 0.5s ease;
    box-shadow: 0 8px 24px rgba(6,43,90,0.08);
}

.testimonial-card.active{
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* TEXT */
.testimonial-text{
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #103A68;

    text-align: justify;
    text-justify: inter-word;

    hyphens: auto;

    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-card{
    text-align: center;
}

.testimonial-text{
    display: block;
}

/* AUTHOR */
.testimonial-author{
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.testimonial-author img{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #1DA7B2;
}

.testimonial-author strong{
    font-size: 0.95rem;
    color: #062B5A;
}

.testimonial-author span{
    font-size: 0.8rem;
    color: #555;
}

/* NAV BUTTONS */
.testimonial-nav{
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.testimonial-nav button{
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #062B5A, #1DA7B2);
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.testimonial-nav button:hover{
    transform: translateY(-3px);
    background: linear-gradient(135deg, #103A68, #38C4C9);
    box-shadow: 0 8px 18px rgba(29,167,178,0.35);
}

/* GLOW EFFECT */
.testimonial-section::before,
.testimonial-section::after{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(29,167,178,0.18), transparent 70%);
    z-index: 0;
}

.testimonial-section::before{
    top: 0;
    left: -60px;
}

.testimonial-section::after{
    bottom: 0;
    right: -60px;
}

/* RESPONSIVE */
@media (max-width: 768px){

    .testimonial-title{
        font-size: 1.6rem;
    }

    .testimonial-slider{
        margin-left: 0;
        height: 280px;
    }

    .testimonial-card{
        padding: 20px 18px;
        max-width: 100%;
    }

    .testimonial-text{
        font-size: 0.88rem;
         text-align: left;
    }

    .testimonial-author img{
        width: 44px;
        height: 44px;
    }
}
/* ===== SUCCESS STORIES SECTION (Compact) ===== */
/* ===== STORIES SECTION (Compact) ===== */
/* ======================================================
   SUCCESS STORIES SECTION
====================================================== */

.stories{
    padding: 45px 0;
    background: #EDEDED;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.container-stories{
    width: min(1100px, 92%);
    margin: 0 auto;
}

/* TITLE */
.section-title-1{
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #062B5A;
    margin-bottom: 35px;
    position: relative;
}

.section-title-1::after{
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #062B5A, #1DA7B2);
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* ===== GRID ===== */

.story-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* ===== CARD ===== */

.story-card{
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid #C9D4D8;
    transition: 0.35s ease;
    box-shadow: 0 5px 18px rgba(6,43,90,0.08);
}
.story-card p{
    font-size: 0.9rem;
    color: #555;

    line-height: 1.8;

    text-align: justify;
    text-justify: inter-word;

    hyphens: auto;

    transition: 0.3s ease;

    max-width: 95%;
    margin: 0 auto;
}

.story-card:hover{
    background: linear-gradient(135deg, #062B5A, #103A68);
    color: #fff;
    transform: translateY(-7px);
    box-shadow: 0 10px 28px rgba(6,43,90,0.18);
}

/* ===== IMAGE ===== */

.story-img{
    width: 100%;
    height: 170px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}

.story-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ICON ===== */

.story-icon{
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #062B5A, #1DA7B2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.story-icon img{
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* HOVER ICON */

.story-card:hover .story-icon{
    background: linear-gradient(135deg, #1DA7B2, #38C4C9);
    transform: scale(1.08);
}

/* ===== TEXT ===== */

.story-card h3{
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #062B5A;
    font-weight: 700;
    transition: 0.3s ease;
}

.story-card p{
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    transition: 0.3s ease;
}

/* HOVER TEXT */

.story-card:hover h3,
.story-card:hover p{
    color: #ffffff;
}

/* ===== HIGHLIGHT CARD ===== */

.story-card.highlight{
    background: linear-gradient(135deg, #062B5A, #103A68);
    color: #ffffff;
    transform: scale(1.02);
}

.story-card.highlight .story-icon{
    background: linear-gradient(135deg, #1DA7B2, #38C4C9);
}

.story-card.highlight h3,
.story-card.highlight p{
    color: #ffffff;
}

/* ===== MOBILE ===== */

@media (max-width: 600px){

    .stories{
        padding: 40px 0;
    }

    .story-img{
        height: 150px;
    }

    .story-card{
        padding: 20px 16px;
    }

    .story-card h3{
        font-size: 1rem;
    }

    .story-card p{
        font-size: 0.85rem;
    }

    .section-title-1{
        font-size: 1.6rem;
    }
}
  /* Responsive Grid Adjustments */
  @media (max-width: 992px) {
    .wwd-features {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
    .testimonial-slider{
      margin-top: -29px;
    }
  }

  @media (max-width: 600px) {
    .wwd-features {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .section-title h2 {
      font-size: 1.8rem;
      margin-top: 77px;
    }
  }

    /* ---------- RESPONSIVE DESIGN ---------- */
  @media (max-width: 992px) {
    .solutions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .solutions-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ===== RESPONSIVENESS ===== */
  @media (max-width: 992px) {
    .penham-header h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 768px) {
    .penham-header h2 {
      font-size: 28px;
    }

    .penham-subtext {
      font-size: 15px;
    }

    .penham-card {
      padding: 30px 20px;
    }
  }

  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 992px) {
    .blogs h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 768px) {
    .blogs h2 {
      font-size: 28px;
    }

    .blog-card img {
      height: 200px;
    }

    .blog-card .blog-content {
      padding: 20px;
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .testimonial-card {
      padding: 0px 17px;
    }

    .testimonial-text {
      font-size: 1rem;
    }

    .testimonial-author img {
      width: 50px;
      height: 50px;
    }
  }

  /* --- Responsive Layout --- */
@media (max-width: 1100px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .intro-text {
    flex: 1;
    min-width: 320px;
    text-align: left;
}

@media (max-width: 650px) {
  .stories {
    padding: 60px 0;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    padding: 28px 20px;
  }

  .story-img {
    height: 180px;
  }

  .story-card h3 {
    font-size: 17px;
  }

  .story-card p {
    font-size: 14px;
  }

  .section-title{
    margin-top: -267px;
  }
  .solutions-container{
    margin-top: 260px;
  }
}

}