/*GOOGLE FONT (Montserrat)*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");




.about-img
{
  width: 600px !important;
  height: 600px;
  margin: auto;
  display: flex;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* HERO */
.hero-about {
  background: #161e32;
  color: #fff;
  padding: 80px 0;
  text-align: justify;
}
.hero-about h1 { font-size: 50px; }
.hero-about p { font-size: 18px; color: #cbd5f5; }

/* SECTIONS */
.section { padding: 40px 0; }
.story h2 { font-size: 32px; margin-bottom: 20px; }
.story p { font-size: 16px; line-height: 1.6; }

/* CEO LAYOUT DESKTOP */
.ceo-wrapper {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.ceo-left { flex: 0 0 300px; }

.ceo-image-card {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.ceo-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-right { flex: 1; }

.ceo-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.ceo-card h3 { font-size: 25px; }
.ceo-card p { font-size: 18px; }

.highlight {
  background: #f8faff;
  border: 1px solid rgba(0,73,235,0.2);
}

/* TECH LIST */
.tech-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.tech-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}
.tech-icon img { width: 100%; }

/* CORE VALUES */
.values-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
}
.value-card { text-align: center; flex: 1; }
.icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin: auto 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon.lucide { background: #dbeafe; }
.icon.famicons { background: #dbfce7; }
.icon.streamline { background: #f3e8ff; }

.center { text-align: center; }
.subtitle { font-size: 23px; color: #6b7280; margin-bottom: 50px; }

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {


.about-img
{
  width: 100% !important;
  height: auto;
  margin: auto;
  display: flex;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

  .hero-about h1 { font-size: 36px; }
  .hero-about p { font-size: 18px; }

  .ceo-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: justify;
  }

  .ceo-left {
    flex: unset;
    width: 100%;
    max-width: 320px;
  }

  .ceo-image-card {
    height: 380px;
  }

  .ceo-right {
    width: 100%;
  }

  .values-flex {
    flex-direction: column;
    align-items: center;
  }

  .value-card {
    max-width: 400px;
  }
}



/* ================= Expertise Section ================= */



.ceo-section {
  padding: 60px 15px;
  background: linear-gradient(135deg, #f4f7fb, #e8eef6);
  font-family: "Segoe UI", sans-serif;
}

.ceo-container {
  max-width: 1100px;
  margin: auto;
}

.ceo-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.ceo-name {
  font-size: 32px;
  color: #0a2540;
  margin-bottom: 5px;
}

.ceo-title {
  font-size: 18px;
  color: #3a6ea5;
  margin-bottom: 25px;
}

.ceo-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.ceo-intro {
  font-size: 17px;
  font-weight: 500;
}

.ceo-highlight,
.ceo-projects,
.ceo-patents {
  margin-top: 30px;
  padding: 25px;
  border-radius: 12px;
  background: #f8fbff;
  border-left: 5px solid #3a6ea5;
}

.ceo-highlight h3,
.ceo-projects h3,
.ceo-patents h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0a2540;
}

.ceo-projects ul,
.ceo-patents ul {
  padding-left: 18px;
}

.ceo-projects li,
.ceo-patents li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

/* =====================
   RESPONSIVE DESIGN
===================== */

@media (max-width: 992px) {
  .ceo-card {
    padding: 30px;
  }

  .ceo-name {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .ceo-card {
    padding: 22px;
  }

  .ceo-name {
    font-size: 24px;
  }

  .ceo-title {
    font-size: 16px;
  }

  .ceo-card p {
    font-size: 15px;
  }

  .ceo-highlight,
  .ceo-projects,
  .ceo-patents {
    padding: 18px;
  }
}



