/* about.css */

.about-container { max-width: 1140px; margin: 0 auto; padding: 0 36px; }
.about-section   { padding: 72px 0; }

.journey-section       { background: var(--off-white); }
.profile-section       { background: var(--white); }
.why-section           { background: var(--navy); }
.infra-quality-section { background: var(--off-white); }
.team-section          { background: var(--white); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.gap-lg { gap: 64px; }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 700; color: var(--navy);
  letter-spacing: -0.01em; line-height: 1.22; margin-bottom: 14px;
}
.about-text p {
  color: var(--slate-light); font-size: 0.84rem; line-height: 1.75; margin-bottom: 12px;
}
.about-cta { margin-top: 20px; }

.journey-buttons{
display:flex;
gap:14px;
margin-top:20px;
flex-wrap:wrap;
align-items:center;
}
.milestone-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.milestone-card {
  background: var(--white); border: 1px solid var(--light-grey);
  border-radius: var(--radius); padding: 20px 18px; box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.milestone-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-amber); }
.milestone-card.highlight { background: var(--amber); border-color: var(--amber); }
.milestone-card.highlight .m-year,
.milestone-card.highlight .m-label { color: var(--navy); }
.m-year  { display: block; font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--amber); line-height: 1; margin-bottom: 5px; }
.m-label { display: block; font-size: 0.76rem; color: var(--slate-light); font-weight: 500; }

.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.profile-card { background: var(--off-white); border: 1px solid var(--light-grey); border-radius: var(--radius); overflow: hidden; }
.profile-card-header {
  background: var(--navy); color: var(--amber);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 12px 18px; display: flex; align-items: center; gap: 7px;
}
.profile-table { width: 100%; border-collapse: collapse; }
.profile-table tr { border-bottom: 1px solid var(--light-grey); }
.profile-table tr:last-child { border-bottom: none; }
.profile-table td { padding: 10px 18px; font-size: 0.80rem; }
.profile-table td:first-child { color: var(--slate-light); font-weight: 500; width: 46%; }
.profile-table td:last-child  { color: var(--navy); font-weight: 500; }

.why-section .about-container .section-header h2 { color: var(--white); }
.why-section .about-container .section-header p  { color: var(--muted); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 12px; }
.why-card {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); padding: 14px 16px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(245,158,11,0.07); border-color: rgba(245,158,11,0.22); transform: translateX(4px); }
.why-card i { color: var(--amber); margin-top: 2px; font-size: 0.9rem; flex-shrink: 0; }
.why-card span { color: rgba(255,255,255,0.72); font-size: 0.82rem; line-height: 1.55; }

.iq-block { padding: 0; }
.iq-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(245,158,11,0.09); border: 1px solid var(--border-amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--amber); margin-bottom: 14px;
}
.iq-icon.gold { background: var(--amber); color: var(--navy); }
.iq-block h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; }
.iq-block p  { color: var(--slate-light); font-size: 0.84rem; line-height: 1.72; margin-bottom: 16px; }
.qa-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.qa-list li { display: flex; align-items: center; gap: 8px; color: var(--slate); font-size: 0.82rem; font-weight: 500; }
.qa-list li i { color: var(--success); font-size: 0.82rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 13px; }
.team-dept {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--off-white); border: 1px solid var(--light-grey);
  border-radius: var(--radius); padding: 22px 14px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-dept:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-amber); }
.dept-icon {
  width: 42px; height: 42px; border-radius: 9px;
  background: var(--amber-glow); border: 1px solid var(--border-amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--amber);
}
.team-dept span { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.4; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .profile-grid { grid-template-columns: 1fr; }
  .about-container { padding: 0 24px; }
}
@media (max-width: 600px) {
  .about-section { padding: 52px 0; }
  .about-container { padding: 0 18px; }
}

/* ── FOUNDER MODAL ───────────────── */

.journey-buttons{
display:flex;
gap:12px;
margin-top:18px;
flex-wrap:wrap;
}

.founder-btn{
background:transparent;
border:1px solid var(--border-amber);
color:var(--amber);
padding:10px 16px;
border-radius:var(--radius-sm);
font-size:0.82rem;
cursor:pointer;
transition:all var(--transition);
}

.founder-btn:hover{
background:var(--amber);
color:var(--navy);
}

.founder-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
align-items:center;
justify-content:center;
z-index:1200;
padding:20px;
}

.founder-modal-content{
background:var(--white);
border-radius:var(--radius);
max-width:900px;
width:100%;
padding:36px;
position:relative;
box-shadow:var(--shadow-md);
max-height:90vh;
overflow-y:auto;
}

.founder-close{
position:absolute;
top:16px;
right:16px;
width:32px;
height:32px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(0,0,0,0.06);
cursor:pointer;
color:var(--navy);
transition:var(--transition);
}

.founder-close:hover{
background:var(--amber);
color:var(--navy);
}

.founder-modal-grid{
display:grid;
grid-template-columns:260px 1fr;
gap:36px;
align-items:center;
}

.founder-photo img{
width:100%;
border-radius:var(--radius);
border:1px solid var(--light-grey);
}

.founder-info h2{
font-family:var(--font-display);
font-size:1.35rem;
color:var(--navy);
margin-bottom:10px;
}

.founder-info p{
font-size:0.82rem;
line-height:1.7;
color:var(--slate-light);
margin-bottom:12px;
}

@media(max-width:768px){

.founder-modal-grid{
grid-template-columns:1fr;
text-align:center;
}

.founder-photo{
max-width:220px;
margin:auto;
}

}


/* ── CHATBOT TOGGLE ICON ─────────────────── */
.toggle-svg {
  width: 34px; height: 34px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  overflow: visible;
}

/* Bubble + tail float together */
.svg-bubble, .svg-tail {
  animation: bubbleFloat 3s ease-in-out infinite;
  transform-origin: 25px 22px;
}
@keyframes bubbleFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* Eyes blink naturally */
.svg-eye-left, .svg-eye-right {
  animation: eyeBlink 4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.svg-eye-right { animation-delay: 0.1s; }
@keyframes eyeBlink {
  0%,90%,100% { transform: scaleY(1); }
  95%          { transform: scaleY(0.1); }
}

/* Mouth dots wave like typing */
.svg-mouth1 {
  animation: mouthWave 1.4s ease-in-out infinite 0s;
  transform-box: fill-box; transform-origin: center;
}
.svg-mouth2 {
  animation: mouthWave 1.4s ease-in-out infinite 0.2s;
  transform-box: fill-box; transform-origin: center;
}
.svg-mouth3 {
  animation: mouthWave 1.4s ease-in-out infinite 0.4s;
  transform-box: fill-box; transform-origin: center;
}
@keyframes mouthWave {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50%      { transform: translateY(-3px) scale(1.2); opacity: 1; }
}

/* Antenna dot pulses */
.svg-antenna-dot {
  animation: antennaPulse 2s ease-in-out infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes antennaPulse {
  0%,100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1; transform: scale(1.4); }
}

/* Hover — speed everything up */
.chatbot-toggle:hover .svg-bubble,
.chatbot-toggle:hover .svg-tail {
  animation-duration: 0.8s;
}
.chatbot-toggle:hover .svg-mouth1,
.chatbot-toggle:hover .svg-mouth2,
.chatbot-toggle:hover .svg-mouth3 {
  animation-duration: 0.4s;
}
.chatbot-toggle:hover .svg-eye-left,
.chatbot-toggle:hover .svg-eye-right {
  animation: none;
}
.chatbot-toggle:hover .svg-antenna-dot {
  animation: none;
  opacity: 1;
}

/* MAP CARD */
.map-card a {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 14px;
  border-radius: 12px;

  background: rgba(255,178,0,0.08);
  text-decoration: none;
  color: white;

  transition: 0.3s;
}

.map-card a:hover {
  background: rgba(255,178,0,0.15);
  transform: translateY(-2px);
}

/* ICON */
.map-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #ffb200, #ff8c00);
  color: black;
  font-size: 18px;
}

/* TEXT */
.map-content h5 {
  margin: 0;
  font-size: 15px;
}

.map-content p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
}

.map-content span {
  font-size: 12px;
  color: #ffb200;
}