.vision-wrapper {
    /* background: #ffffff; */
    /* border-radius: 24px; */
    /* box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06); */
    /* overflow: hidden; */
  }

  .vision-card {
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
  }

  .vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #2072B9;
  }

  .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(33, 92, 92, 0.1);
    color: #2072B9;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.35s ease;
  }

  .vision-card:hover .icon-box {
    background: #2072B9;
    color: #fff;
    transform: rotateY(180deg);
  }

  .vision-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
  }

  .statement-box {
    background: linear-gradient(135deg, #2072B9, #2f7878);
    border-radius: 20px;
    padding: 40px 35px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .statement-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -80px;
    right: -60px;
  }

  .statement-box p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
  }

  .statement-box h4 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
  }

  @media (max-width: 991px) {
    .statement-box h4 {
      font-size: 24px;
    }
  }

  @media (max-width: 767px) {
    .vision-card {
      padding: 30px 20px;
    }

    .statement-box {
      padding: 30px 20px;
    }

    .statement-box h4 {
      font-size: 22px;
    }

    .statement-box p {
      font-size: 15px;
    }
  }

  /* how we think section */

  .think-wrapper {
    /* background: #fff; */
    /* border-radius: 30px; */
    /* padding: 60px; */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); */
    /* position: relative; */
  }

  .mini-title {
    display: inline-block;
    background: rgba(33, 92, 92, 0.08) !important;
    color: #2072B9 !important;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .section-heading h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin-bottom: 0;
  }

  .think-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
  }

  .highlight-box {
    background: linear-gradient(135deg, #2072B9, #2f7878);
    padding: 35px;
    border-radius: 24px;
    margin: 35px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }

  .highlight-box::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -90px;
    right: -70px;
  }

  .highlight-box h5 {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }

  .highlight-box ul {
    margin: 0;
    padding-left: 20px;
    position: relative;
    z-index: 2;
  }

  .highlight-box ul li {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
  }

  .quote-box {
    /* border-left: 5px solid #2072B9; */
    /* background: #f8fbfb; */
    padding: 30px;
    border-radius: 18px;
    margin-top: 35px;
  }

  .quote-box h4 {
    font-size: 22px;
    line-height: 1.7;
    color: #111;
    margin: 0;
    /* font-weight: 700; */
  }

  .image-wrapper {
    position: relative;
  }

  .image-wrapper img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    min-height: 650px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .floating-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 18px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    animation: floatCard 3s ease-in-out infinite;
  }

  .floating-card i {
    width: 55px;
    height: 55px;
    background: rgba(33, 92, 92, 0.1);
    color: #2072B9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }

  .floating-card span {
    font-size: 16px;
    font-weight: 600;
    color: #222;
  }

  @keyframes floatCard {
    0% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }

    100% {
      transform: translateY(0);
    }
  }

  @media (max-width: 1199px) {
    .think-wrapper {
      padding: 45px;
    }

    .section-heading h2 {
      font-size: 42px;
    }

    .quote-box h4 {
      font-size: 24px;
    }
  }

  @media (max-width: 991px) {
    .image-wrapper img {
      min-height: auto;
    }

    .floating-card {
      left: 20px;
      bottom: 20px;
    }
  }

  @media (max-width: 767px) {
    .think-wrapper {
      padding: 30px 20px;
      border-radius: 20px;
    }

    .section-heading h2 {
      font-size: 34px;
    }

    .highlight-box {
      padding: 25px;
    }

    .quote-box {
      padding: 22px;
    }

    .quote-box h4 {
      font-size: 22px;
      line-height: 1.6;
    }

    .think-content p {
      font-size: 15px;
    }

    .floating-card {
      position: relative;
      left: 0;
      bottom: 0;
      margin-top: 20px;
      width: fit-content;
    }
  }

  /* Our Culture section */

  .culture-box {
    /* background: #fff; */
    /* border-radius: 20px; */
    /* padding: 60px; */
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.05); */
  }

  .small-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2072B9;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .left-content h2 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
  }

  .left-content p,
  .future-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
  }

  .quote-text {
    background: #f3f6f6;
    border-left: 4px solid #2072B9;
    padding: 22px;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    margin: 30px 0;
  }

  .value-list {
    background: #2072B9;
    border-radius: 18px;
    padding: 35px;
    color: #fff;
    margin-bottom: 30px;
  }

  .value-list h5 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .value-list ul {
    margin: 0;
    padding-left: 20px;
  }

  .value-list ul li {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
  }

  .future-text {
    padding-left: 20px;
    border-left: 3px solid #2072B9;
  }

  @media (max-width: 991px) {
    .culture-box {
      padding: 40px;
    }

    .left-content h2 {
      font-size: 34px;
    }
  }

  @media (max-width: 767px) {
    .culture-box {
      padding: 30px 20px;
    }

    .left-content h2 {
      font-size: 28px;
    }

    .quote-text {
      font-size: 16px;
      padding: 18px;
    }

    .value-list {
      padding: 25px;
    }
  }

  /* ----------------------> */
  /* Founder Section */
  /* <---------------------- */

  .section-label,
.voice-tag {
 display: inline-block;
 font-size: 13px;
 font-weight: 600;
 letter-spacing: 1px;
 text-transform: uppercase;
 color: #2072B9;
 margin-bottom: 20px;
}

.founder-content h2 {
 font-size: 42px;
 font-weight: 700;
 color: #111;
 margin-bottom: 10px;
}

.designation {
 display: inline-block;
 font-size: 16px;
 color: #777;
 margin-bottom: 35px;
}

.info-text p {
 font-size: 16px;
 /* line-height: 1.9; */
 /* color: #555; */
 /* margin-bottom: 22px; */
}

/* RIGHT SIDE */
.founder-side {
 padding-left: 40px;
}

.founder-image {
 margin-bottom: 30px;
}

.founder-image img {
 width: 100%;
 border-radius: 18px;
 object-fit: cover;
}

.voice-box {
 background: #ece8e3;
 padding: 35px;
 border-radius: 18px;
}

.voice-box p {
 font-size: 22px;
 line-height: 1.8;
 color: #3b3454;
 font-style: italic;
 font-family: "Georgia", serif;
 margin-bottom: 25px;
}

.voice-author {
 font-size: 18px;
 color: #c48a72;
 font-family: cursive;
}

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

 .founder-wrapper {
   padding: 45px 35px;
 }

 .founder-side {
   padding-left: 0;
   margin-top: 40px;
 }

 .founder-content h2 {
   font-size: 34px;
 }

 .voice-box p {
   font-size: 20px;
 }
}

@media (max-width: 767px) {

 .founder-wrapper {
   padding: 30px 22px;
 }

 .founder-content h2 {
   font-size: 28px;
 }

 .info-text p {
   font-size: 15px;
 }

 .voice-box {
   padding: 25px;
 }

 .voice-box p {
   font-size: 18px;
   line-height: 1.7;
 }

 .voice-author {
   font-size: 16px;
 }
}





/* ----------------------> */
/* Thought process */
/* <--------------------- */

/* .problem-section {
    padding: 80px 0;
    background: #f7f7f5;
} */

/* .section-label {
    color: #e53935;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
    display: inline-block;
} */

.main-heading {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
    margin-bottom: 45px;
    /* max-width: 900px; */
}

/* =========================
   PROBLEM SECTION
========================= */

.problem-section{
    padding:100px 0;
    /* background:#f8f7f2; */
    overflow:hidden;
}

.problem-section .container{
    max-width:1280px;
    margin:auto;
    padding:0 15px;
}

/* TITLE */

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

/* .main-heading{
    font-size:58px;
    line-height:1.1;
    font-weight:700;
    color:#143c3c;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.section-title p{
    font-size:20px;
    color:#5e5e5e;
    margin:0;
} */

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

.problem-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* CARD */

.problem-card{
    position:relative;
    background:rgba(255,255,255,1);
    backdrop-filter:blur(10px);
    border-radius:26px;
    padding:35px 28px;
    text-align:center;
    transition:all .35s ease;
    overflow:hidden;
    min-height:310px;

    border:2px dashed #d7d7d7;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.4);
}

/* Hover */

.problem-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 22px 50px rgba(0,0,0,0.10);
}

/* CARD TOP BG */

/* .problem-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top left,
    rgba(255,255,255,0.7),
    transparent 60%);
    pointer-events:none;
} */

/* ICON */

.card-icon{
    width:92px;
    height:92px;
    margin:0 auto 22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: none !important;
}

.card-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* Divider */

.card-divider{
    width:100%;
    height:1px;
    background:#d8d8d8;
    margin-bottom:24px;
}

/* HEADING */

.problem-card h6{
    font-size:16px;
    line-height:1.3;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:16px;
    letter-spacing:.5px;
}

/* NUMBER */

.problem-card h2{
    font-size:62px;
    line-height:1;
    font-weight:700;
    margin-bottom:14px;
    font-family:Georgia, serif;
}

/* PARAGRAPH */

.problem-card p{
    font-size:18px;
    line-height:1.6;
    color:#404040;
    margin:0;
}

/* =========================
   COLORS
========================= */

.green-card{
    border-color:#8fb59a;
}

.green-card h6,
.green-card h2{
    color:#17553e;
}

/* BLUE */

.blue-card{
    border-color:#8bb4d8;
}

.blue-card h6,
.blue-card h2{
    color:#1d4f7f;
}

/* BROWN */

.brown-card{
    border-color:#d7b285;
}

.brown-card h6,
.brown-card h2{
    color:#8a5a1f;
}

/* PURPLE */

.purple-card{
    border-color:#c5b1d9;
}

.purple-card h6,
.purple-card h2{
    color:#5b4379;
}

/* RED */

.red-card{
    border-color:#e2aaaa;
}

.red-card h6,
.red-card h2{
    color:#8b2f2f;
}

/* ORANGE */

.orange-card{
    border-color:#e0b173;
}

.orange-card h6,
.orange-card h2{
    color:#9a5c13;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

    .problem-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .main-heading{
        font-size:48px;
    }
}

@media(max-width:767px){

    .problem-section{
        padding:70px 0;
    }

    .problem-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .problem-card{
        min-height:auto;
        padding:30px 22px;
    }

    .main-heading{
        font-size:38px;
    }

    .section-title p{
        font-size:17px;
    }

    .problem-card h2{
        font-size:50px;
    }

    .problem-card p{
        font-size:16px;
    }

    .card-icon{
        width:80px;
        height:80px;
    }
}

