* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Poppins', sans-serif;
  background: #00221d;
  overflow-y: auto;
  color: #fff;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #00221d;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  height: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-logo {
  height: 50px;
}

/* Hero Section */
.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.parallax-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: -10px;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover; /* Fill screen normally */
  background-position: center bottom; /* Anchor from center bottom */
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: transform;
  z-index: 1; /* Behind header */
}


.about {
  padding: 80px 20px;
  background: #00221d;
  color: #fff;
  text-align: center;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;        /* makes it look professional */
  line-height: 1.8;           /* better readability */
}

.about-text p {
  margin-bottom: 20px;        /* space between paragraphs */
}

.what-we-do {
  padding: 60px 20px;
  background: #00221d;
  color: white;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 30px 20px;
  width: 260px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.85;
}


/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background: #00221d;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}

.testimonial p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.testimonial span {
  font-size: 0.95rem;
  opacity: 0.8;
}

.carousel-controls {
  margin-top: 20px;
}

.carousel-controls button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 8px 12px;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.carousel-controls button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.carousel-controls button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}


/* Footer */
.site-footer {
  background: #00221d;
  color: #999;
  padding: 20px;
  text-align: center;
}

.cephacon-brand {
   position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;

  background: rgba(00, 34, 29, 0.1); /* translucent white */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  z-index: 5;
  pointer-events: none;
}

.brand-logo {
  width: 102px;
  height: auto;
}

.brand-name {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 4.25rem; /* was 2.5rem → 2.5 * 1.7 */
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.team-section {
  padding: 60px 20px;
  background: #00221d;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 80px;
  font-weight: bold;
}

/* Team Section */
.team-section {
  padding: 60px 20px;
  background: #00221d;
  color: white;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 80px;
  font-weight: bold;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Card */
.team-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 80px 24px 24px;
  width: 320px;              /* a bit wider for desc + stats */
  position: relative;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}

/* Photo */
.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;        /* round frame */
  border: 3px solid #ffffff55;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: #cad3d1;
}

/* Name + Position + Link Row */
.team-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.team-id { /* wrapper for name+position */
  display: flex;
  flex-direction: column;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.team-position {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 4px;
}

.profile-link img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.profile-link img:hover { opacity: 1; }

/* Description + Funny Stats */
.team-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 12px 0 14px;
  opacity: 0.92;
}

.team-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Title spacing tweak */
.team-title { margin-bottom: 150px; }

/* Mobile tweaks */
@media (max-width: 600px) {
  .team-card {
    width: 90%;
    padding: 60px 18px 20px;
    margin-bottom: 40px;
  }
  .team-photo {
    width: 120px;
    height: 120px;
    top: -60px;
  }
  .team-name { font-size: 1.15rem; }
  .team-position { font-size: 0.85rem; }
}


@media (max-width: 600px) {
  .cephacon-brand {
    padding: 12px 18px;
    gap: 16px;
    border-radius: 12px;
  }

  .brand-logo {
    width: 72px; /* previously 102px */
  }

  .brand-name {
    font-size: 2.2rem; /* previously 4.25rem */
  }

   .team-card {
    width: 90%;
    padding: 60px 18px 20px;
    margin-bottom: 40px;
  }

  .team-photo {
    width: 120px;
    height: 120px;
    top: -60px;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .service-card {
    width: 90%;
  }
}



