/* ================= ROOT ================= */
:root{
  --brand:#04647b;
  --accent:#09982c;
  --soft:#f4f7fb;
  --dark:hsl(197, 99%, 34%);
  

}

/* ================= RESET ================= */

.din{
    font-family:  "Nunito Sans", sans-serif;
}
/* ================= SECTION ================= */
.founder-a1{
  width:100%;
  padding:80px 16px;
  background:linear-gradient(135deg,#f8fafc,#eef3f9);
}

.founder-a2{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:420px 1fr;
  gap:50px;
  align-items:flex-start; /* ✅ TOP ALIGNMENT */
}

/* ================= PROFILE PANEL ================= */
.founder-a3{
  background:#fff;
  border-radius:26px;
  padding:40px 30px;
  text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,0.08);
  animation:fadeUp 0.8s ease forwards;
  align-self:flex-start; /* EXTRA SAFETY */
}

.founder-a4{
  width:190px;
  height:190px;
  border-radius:50%;
  object-fit:cover;
  border:7px solid var(--accent);
  margin-bottom:12px;
  
}

.founder-a5{
  font-size:26px;
  font-weight:800;
  color:var(--brand);
}

.founder-a6{
  font-size:14px;
  margin-top:8px;
  letter-spacing:0.5px;
  color:var(--dark);
  text-transform:uppercase;
}

.founder-a7{
  font-size:14px;
  line-height:1.7;
  color:#475569;
  margin-top:18px;
}

/* ================= CONTENT ================= */
.founder-a8{
  animation:fadeUp 1s ease forwards;
}

.founder-a9{
  font-size:34px;
  font-weight:900;
  color:var(--dark);
  margin-bottom:14px;
  font-family: "Nunito Sans", sans-serif;
}



/* ================= EXPERIENCE STRIP ================= */
.founder-a11{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:12px;
}

.founder-a12{
  background:#fff;
  border-radius:18px;
  padding:22px 16px;
  text-align:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.founder-a13{
  font-size:26px;
  font-weight:900;
  color:var(--accent);
  font-family: "Nunito Sans", sans-serif;
}

.founder-a14{
  font-size:13px;
  margin-top:6px;
  color:#475569;
  font-family: "Nunito Sans", sans-serif;
}

/* ================= VISION ================= */
.founder-a15{
  background:#fff;
  border-radius:20px;
  padding:15px;
  box-shadow:0 20px 40px rgba(0,0,0,0.07);
  margin-bottom:12px;
}

.founder-a16{
  font-size:20px;
  font-weight:800;
  color:var(--brand);
  margin-bottom:12px;
}



/* ================= QUOTE ================= */
.founder-a18{
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:#fff;
  padding:28px 30px;
  border-radius:18px;
}

.founder-a19{
  font-size:16px;
  line-height:1.8;
  font-style:italic;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(35px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:1100px){
  .founder-a2{
    grid-template-columns:1fr;
  }
  .founder-a3{
    max-width:460px;
    margin:auto;
  }
}

@media(max-width:768px){
  .founder-a9{
    font-size:26px;
  }
  .founder-a11{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:480px){
  .founder-a11{
    grid-template-columns:1fr;
  }
}





/* ================= ROOT ================= */


/* ================= RESET ================= */


/* ================= SECTION ================= */
.gcs-team-a1{
  width:100%;
  padding:90px 16px;
  /* background:linear-gradient(135deg,#f8fafc,#eef3f9); */
}

.gcs-team-a2{
  max-width:1300px;
  margin:auto;
}

/* ================= HEADER ================= */
.gcs-team-a3{
  text-align:center;
  margin-bottom:60px;
}

.gcs-team-a4{
  font-size:34px;
  font-weight:900;
  color:var(--dark);
}

.gcs-team-a5{
  font-size:16px;
  margin-top:10px;
  color:#475569;
}

/* ================= GRID ================= */
.gcs-team-a6{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* ================= CARD ================= */
.gcs-team-a7{
  background:#fff;
  border-radius:26px;
  padding:42px 32px;
  text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,0.08);
  animation:fadeUp 0.8s ease forwards;
}

.gcs-team-a8{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
  border:6px solid var(--accent);
  margin-bottom:22px;
}

.gcs-team-a9{
  font-size:24px;
  font-weight:800;
  color:var(--brand);
}

.gcs-team-a10{
  font-size:13px;
  margin-top:8px;
  letter-spacing:0.6px;
  color:var(--dark);
  text-transform:uppercase;
}

.gcs-team-a11{
  font-size:14px;
  line-height:1.7;
  color:#475569;
  margin-top:18px;
}

/* ================= HIGHLIGHT CEO ================= */
.gcs-team-a7.ceo{
  border-top:6px solid var(--brand);
}

/* ================= ANIMATION ================= */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(35px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
  .gcs-team-a6{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .gcs-team-a6{
    grid-template-columns:1fr;
  }
  .gcs-team-a4{
    font-size:26px;
  }
}

 .white-space-preserve {
    white-space: pre-wrap;
}

.founder-a10 {
  max-width: 100%;
  margin: 0 auto;
  line-height: 1;
  color: #333;
  font-size: 16px;
  padding: 20px 20px;
}

.founder-a10 li::marker {
  color: #000000 !important;
  font-size: 1em;
}

/* ===== TYPOGRAPHY ===== */
.founder-a10 h1,
.founder-a10 h2,
.founder-a10 h3,
.founder-a10 h4,
.founder-a10 h5,
.founder-a10 h6 {
  margin-top: 1em;
  margin-bottom: 0.8em;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

.founder-a10 h1 { font-size: 2.2em; }
.founder-a10 h2 { font-size: 1.8em; }
.founder-a10 h3 { font-size: 1.5em; }
.founder-a10 h4 { font-size: 1.3em; }
.founder-a10 h5 { font-size: 1.1em; }
.founder-a10 h6 { font-size: 1em; }

.founder-a10 p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ===== LINKS ===== */
.founder-a10 a {
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.founder-a10 a:hover {
  color: #0052a3;
  border-bottom: 1px solid #0052a3;
}

.founder-a10 a:visited {
  color: #551a8b;
}

/* ===== LISTS ===== */
.founder-a10 ul,
.founder-a10 ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

.founder-a10 ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding-left: 1.8em !important;
}

.founder-a10 ul li {
  display: list-item !important;
}

.founder-a10 ul ul {
  list-style-type: circle;
  margin: 0.5em 0;
}

.founder-a10 ul ul ul {
  list-style-type: square;
}

.founder-a10 ol {
  list-style: decimal !important;
  padding-left: 2em !important;
}

.founder-a10 ol ol {
  list-style-type: lower-alpha;
  margin: 0.5em 0;
}

.founder-a10 ol ol ol {
  list-style-type: lower-roman;
}

.founder-a10 li {
  margin-bottom: 0.3em;
  line-height: 1.6;
}

.founder-a10 li p {
  margin: 0;
}

/* ===== BLOCKQUOTES ===== */
.founder-a10 blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #0066cc;
  background-color: #f8f9fa;
  font-style: italic;
  color: #555;
}

.founder-a10 blockquote p:last-child {
  margin-bottom: 0;
}

/* ===== CODE ===== */
.founder-a10 code {
  background-color: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  color: #c7254e;
}

.founder-a10 pre {
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1em;
  overflow-x: auto;
  margin: 1.5em 0;
}

.founder-a10 pre code {
  background-color: transparent;
  padding: 0;
  color: #333;
}

/* ===== TABLES ===== */
.founder-a10 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  overflow-x: auto;
  display: block;
}

.founder-a10 table thead {
  background-color: #f8f9fa;
}

.founder-a10 table th,
.founder-a10 table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
}

.founder-a10 table th {
  font-weight: 700;
  color: #1a1a1a;
}

.founder-a10 table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.founder-a10 table tr:hover {
  background-color: #f5f5f5;
}

/* ===== IMAGES ===== */
.founder-a10 img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 8px;
  display: block;
}

.founder-a10 figure {
  margin: 2em 0;
  text-align: center;
}

.founder-a10 figure img {
  margin: 0 auto;
}

.founder-a10 figcaption {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #666;
  font-style: italic;
}

/* Image alignment classes from CKEditor */
.founder-a10 .image-style-align-left,
.founder-a10 img[style*="float:left"],
.founder-a10 img[style*="float: left"] {
  float: left;
  margin: 0.5em 1.5em 1em 0;
}

.founder-a10 .image-style-align-right,
.founder-a10 img[style*="float:right"],
.founder-a10 img[style*="float: right"] {
  float: right;
  margin: 0.5em 0 1em 1.5em;
}

.founder-a10 .image-style-align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HORIZONTAL RULE ===== */
.founder-a10 hr {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 2em 0;
}

/* ===== TEXT FORMATTING ===== */
.founder-a10 strong,
.founder-a10 b {
  font-weight: 700;
}

.founder-a10 em,
.founder-a10 i {
  font-style: italic;
}

.founder-a10 u {
  text-decoration: underline;
}

.founder-a10 s,
.founder-a10 strike {
  text-decoration: line-through;
}

.founder-a10 sub {
  vertical-align: sub;
  font-size: 0.8em;
}

.founder-a10 sup {
  vertical-align: super;
  font-size: 0.8em;
}

/* ===== SPECIAL ELEMENTS ===== */
.founder-a10 mark {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 2px;
}

.founder-a10 kbd {
  background-color: #333;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .founder-a10 {
    font-size: 15px;
    padding: 0 15px;
  }

  .founder-a10 ul,
  .founder-a10 ol {
    padding-left: 1.5em;
  }

  .founder-a10 table {
    font-size: 14px;
  }

  .founder-a10 table th,
  .founder-a10 table td {
    padding: 8px 10px;
  }

  .founder-a10 blockquote {
    padding: 0.8em 1em;
    margin: 1.5em 0;
  }

  .founder-a10 .image-style-align-left,
  .founder-a10 .image-style-align-right,
  .founder-a10 img[style*="float"] {
    float: none;
    margin: 1em auto;
    display: block;
  }
}

/* ===== CKEDITOR SPECIFIC CLASSES ===== */
.founder-a10 .text-huge { font-size: 1.8em; }
.founder-a10 .text-big { font-size: 1.4em; }
.founder-a10 .text-small { font-size: 0.85em; }
.founder-a10 .text-tiny { font-size: 0.7em; }

/* Text alignment */
.founder-a10 .text-left { text-align: left; }
.founder-a10 .text-center { text-align: center; }
.founder-a10 .text-right { text-align: right; }
.founder-a10 .text-justify { text-align: justify; }

/* ===== EMBEDDED CONTENT ===== */
.founder-a10 iframe,
.founder-a10 video {
  max-width: 100%;
  margin: 2em 0;
  border-radius: 8px;
}

/* Responsive embed wrapper */
.founder-a10 .embed-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  margin: 2em 0;
}

.founder-a10 .embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/* ===== DEFINITION LISTS ===== */
.founder-a10 dl {
  margin: 1.5em 0;
}

.founder-a10 dt {
  font-weight: 700;
  margin-top: 1em;
}

.founder-a10 dd {
  margin-left: 2em;
  margin-bottom: 0.5em;
}





 .founder-a17 {
  max-width: 100%;
  margin: 0 auto;
  line-height: 0.4;
  color: #333;
  font-size: 16px;
  padding: 20px 20px;
}

.founder-a17 li::marker {
  color: #000000 !important;
  font-size: 1em;
}

/* ===== TYPOGRAPHY ===== */
.founder-a17 h1,
.founder-a17 h2,
.founder-a17 h3,
.founder-a17 h4,
.founder-a17 h5,
.founder-a17 h6 {
  margin-top: 1em;
  margin-bottom: 0.8em;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
}

.founder-a17 h1 { font-size: 2.2em; }
.founder-a17 h2 { font-size: 1.8em; }
.founder-a17 h3 { font-size: 1.5em; }
.founder-a17 h4 { font-size: 1.3em; }
.founder-a17 h5 { font-size: 1.1em; }
.founder-a17 h6 { font-size: 1em; }

.founder-a17 p {
  margin-bottom: 0.8em;
  line-height: 1.6;
}

/* ===== LINKS ===== */
.founder-a17 a {
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.founder-a17 a:hover {
  color: #0052a3;
  border-bottom: 1px solid #0052a3;
}

.founder-a17 a:visited {
  color: #551a8b;
}

/* ===== LISTS ===== */
.founder-a17 ul,
.founder-a17 ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

.founder-a17 ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
  padding-left: 1.8em !important;
}

.founder-a17 ul li {
  display: list-item !important;
}

.founder-a17 ul ul {
  list-style-type: circle;
  margin: 0.5em 0;
}

.founder-a17 ul ul ul {
  list-style-type: square;
}

.founder-a17 ol {
  list-style: decimal !important;
  padding-left: 2em !important;
}

.founder-a17 ol ol {
  list-style-type: lower-alpha;
  margin: 0.5em 0;
}

.founder-a17 ol ol ol {
  list-style-type: lower-roman;
}

.founder-a17 li {
  margin-bottom: 0.3em;
  line-height: 1.6;
}

.founder-a17 li p {
  margin: 0;
}

/* ===== BLOCKQUOTES ===== */
.founder-a17 blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #0066cc;
  background-color: #f8f9fa;
  font-style: italic;
  color: #555;
}

.founder-a17 blockquote p:last-child {
  margin-bottom: 0;
}

/* ===== CODE ===== */
.founder-a17 code {
  background-color: #f4f4f4;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  color: #c7254e;
}

.founder-a17 pre {
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1em;
  overflow-x: auto;
  margin: 1.5em 0;
}

.founder-a17 pre code {
  background-color: transparent;
  padding: 0;
  color: #333;
}

/* ===== TABLES ===== */
.founder-a17 table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  overflow-x: auto;
  display: block;
}

.founder-a17 table thead {
  background-color: #f8f9fa;
}

.founder-a17 table th,
.founder-a17 table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
}

.founder-a17 table th {
  font-weight: 700;
  color: #1a1a1a;
}

.founder-a17 table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.founder-a17 table tr:hover {
  background-color: #f5f5f5;
}

/* ===== IMAGES ===== */
.founder-a17 img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 8px;
  display: block;
}

.founder-a17 figure {
  margin: 2em 0;
  text-align: center;
}

.founder-a17 figure img {
  margin: 0 auto;
}

.founder-a17 figcaption {
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #666;
  font-style: italic;
}

/* Image alignment classes from CKEditor */
.founder-a17 .image-style-align-left,
.founder-a17 img[style*="float:left"],
.founder-a17 img[style*="float: left"] {
  float: left;
  margin: 0.5em 1.5em 1em 0;
}

.founder-a17 .image-style-align-right,
.founder-a17 img[style*="float:right"],
.founder-a17 img[style*="float: right"] {
  float: right;
  margin: 0.5em 0 1em 1.5em;
}

.founder-a17 .image-style-align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ===== HORIZONTAL RULE ===== */
.founder-a17 hr {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 2em 0;
}

/* ===== TEXT FORMATTING ===== */
.founder-a17 strong,
.founder-a17 b {
  font-weight: 700;
}

.founder-a17 em,
.founder-a17 i {
  font-style: italic;
}

.founder-a17 u {
  text-decoration: underline;
}

.founder-a17 s,
.founder-a17 strike {
  text-decoration: line-through;
}

.founder-a17 sub {
  vertical-align: sub;
  font-size: 0.8em;
}

.founder-a17 sup {
  vertical-align: super;
  font-size: 0.8em;
}

/* ===== SPECIAL ELEMENTS ===== */
.founder-a17 mark {
  background-color: #fff3cd;
  padding: 2px 4px;
  border-radius: 2px;
}

.founder-a17 kbd {
  background-color: #333;
  color: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .founder-a17 {
    font-size: 15px;
    padding: 0 15px;
    line-height: 0.2;
  }

  .founder-a17 ul,
  .founder-a17 ol {
    padding-left: 1.5em;
  }

  .founder-a17 table {
    font-size: 14px;
  }

  .founder-a17 table th,
  .founder-a17 table td {
    padding: 8px 10px;
  }

  .founder-a17 blockquote {
    padding: 0.8em 1em;
    margin: 1.5em 0;
  }

  .founder-a17 .image-style-align-left,
  .founder-a17 .image-style-align-right,
  .founder-a17 img[style*="float"] {
    float: none;
    margin: 1em auto;
    display: block;
  }
}

/* ===== CKEDITOR SPECIFIC CLASSES ===== */
.founder-a17 .text-huge { font-size: 1.8em; }
.founder-a17 .text-big { font-size: 1.4em; }
.founder-a17 .text-small { font-size: 0.85em; }
.founder-a17 .text-tiny { font-size: 0.7em; }

/* Text alignment */
.founder-a17 .text-left { text-align: left; }
.founder-a17 .text-center { text-align: center; }
.founder-a17 .text-right { text-align: right; }
.founder-a17 .text-justify { text-align: justify; }

/* ===== EMBEDDED CONTENT ===== */
.founder-a17 iframe,
.founder-a17 video {
  max-width: 100%;
  margin: 2em 0;
  border-radius: 8px;
}

/* Responsive embed wrapper */
.founder-a17 .embed-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  margin: 2em 0;
}

.founder-a17 .embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/* ===== DEFINITION LISTS ===== */
.founder-a17 dl {
  margin: 1.5em 0;
}

.founder-a17 dt {
  font-weight: 700;
  margin-top: 1em;
}

.founder-a17 dd {
  margin-left: 2em;
  margin-bottom: 0.5em;
}