/* ===========================
     GEC HERO
=========================== */
.gec-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.gec-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
}

.gec-subtitle {
  max-width: 650px;
  margin: 0.6rem auto;
  color: var(--muted);
  font-size: 1.1rem;
}

/* ===========================
     ABOUT SECTION
=========================== */
.gec-about-section {
  padding: 3rem 0 4rem;
}

.gec-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.gec-about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gec-text {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.gec-list li {
  list-style: none;
  font-size: 1rem;
  margin-bottom: .6rem;
  color: var(--text);
}

.gec-list i {
  color: var(--gold);
  margin-right: .5rem;
}

/* ===========================
     SERVICE CARDS
=========================== */
.gec-services-section {
  padding: 4rem 0;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 1.6rem;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.20);
}

.service-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-title {
  font-weight: 600;
  margin-bottom: .6rem;
}

.service-text {
  color: var(--muted);
}

/* ===========================
     PROJECTS
=========================== */
.gec-project-section {
  padding: 4rem 0;
}

.project-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  text-align: left;
  transition: .3s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.20);
}

.project-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.project-title {
  padding: 1rem;
  color: var(--text);
  font-weight: 600;
}

/* ===========================
     CTA SECTION
=========================== */
.gec-cta {
  padding: 4rem 0;
  text-align: center;
}

.gec-cta h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.gec-cta p {
  max-width: 540px;
  margin: 0 auto 1.6rem;
  color: var(--muted);
}

/* ===========================
    RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .gec-title { font-size: 2rem; }
  .gec-about-img { height: 260px; object-fit: cover; }
  .project-img { height: 190px; }
}
.gec-text{
    text-align: center;
}

@media (max-width: 576px) {
  .gec-title { font-size: 1.8rem; }
}
