/* ======================
   ROOT VARIABLES
====================== */
:root {
  --cam-red: #121fb1;
  --dark: #0f172a;
  --muted: #475569;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --radius: 18px;
}

/* ======================
   GLOBAL
====================== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
}

.site-header img,
.header-logo img {
  width: auto !important;
  height: auto;
  max-height: 70px;
  border-radius: 0 !important;
  display: inline-block;
}
.team-section img,
.team-card img,
.ceo-image img,
.avatar img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}
.about-media img,
.cta-clean img {
  width: auto;          /* KEY FIX */
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



section {
  width: 100%;
}

/* ======================
   ABOUT HERO
====================== */
.about-hero {
  position: relative;
  height: 300px;
  background: url("../img/image6.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
   margin-top: 110px; 
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.about-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.about-hero h1 {
  font-size: 46px;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 14px;
  color: #e5e7eb;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

/* ======================
   ABOUT SECTION
====================== */
.about-sec {
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* MEDIA */
.about-media {
  position: relative;
}

.media-big {
  position: relative;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  background: var(--cam-red);
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(177,18,38,0.4);
}

.media-small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
}

.exp-badge {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: var(--cam-red);
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
}

.exp-badge .num {
  font-size: 26px;
  font-weight: 700;
}

/* TEXT */
.about-text .tag {
  color: blue;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text h1 {
  font-size: 38px;
  margin: 15px 0;
}

.desc {
  color: var(--muted);
  margin-bottom: 25px;
}

.points {
  padding-left: 18px;
  margin-bottom: 30px;
}

.points li {
  margin-bottom: 10px;
}

/* QUOTE */
.quote-box {
  position: relative;
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--radius);
}

.quote-box p {
  font-style: italic;
}

.quote-icon {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 60px;
  color: var(--cam-red);
  opacity: 0.15;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;          /* important */
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* keeps face centered */
}

/* ======================
   TEAM SECTION
====================== */
.team-section {
  padding: 100px 8%;
  background: var(--light-bg);
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-badge {
  color: var(--cam-red);
  font-weight: 600;
  letter-spacing: 1px;
}

.team-header h2 {
  font-size: 38px;
  margin-top: 10px;
}

/* CEO */
.ceo-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.ceo-title {
  color: var(--cam-red);
  font-weight: 600;
  text-transform: uppercase;
}

.ceo-content p {
  color: var(--muted);
  margin: 20px 0;
}

.ceo-name strong {
  font-size: 18px;
}
/* CEO IMAGE SIZE CONTROL */
.ceo-image img {
  max-width: 320px;      /* 🔽 reduce size here */
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin: 0 auto;       
}


/* TEAM GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card h4 {
  margin-top: 15px;
}

.team-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ======================
   CTA
====================== */
.cta-clean {
  padding: 90px 8%;
background: linear-gradient(135deg, #075e0d, #1e2a8a);

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  color: #fff;
  margin-bottom: 20px;
}

.cta-clean h2 {
  font-size: 40px;
}

.cta-clean p {
  opacity: 0.9;
  margin: 20px 0 30px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--cam-red);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 900px) {
  .about-sec,
  .ceo-section,
  .cta-clean {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-small {
    display: none;
  }
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 32px;
  }
}
