/* ===============================
   SERVICES SECTION START 
=============================== */

.services-page main {
  font-family: 'Orbitron', sans-serif;
}

/* =========================================================
   SERVICES HERO SECTION
========================================================= */
.service-hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

/* Background Image */
.service-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/services-hero-bg.jpg"); /* replace path if needed */
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Dark / Cyber Overlay */
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 10, 20, 0.92) 0%,
    rgba(5, 10, 20, 0.85) 45%,
    rgba(5, 10, 20, 0.55) 70%,
    rgba(5, 10, 20, 0.25) 100%
  );
  z-index: 2;
}

/* Content Wrapper */
.service-hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 6%;
  color: #ffffff;
}

/* Eyebrow */
.service-hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #f8332c;
}

/* Main Title */
.service-hero-title {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 22px;
}

/* Description */
.service-hero-description {
  font-size: 15px;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 34px;
  color: #d7dce5;
}

/* CTA Wrapper */
.service-hero-cta {
  margin-top: 10px;
}

/* CTA Button */
.service-hero-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #f8332c;
  color: #ffffff;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.25s ease,
              color 0.25s ease,
              border-color 0.25s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease;
}


.service-hero-button:hover {
  background-color: #ffffff;
  color: #f8332c;
  border-color: #f8332c;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(248, 51, 44, 0.25);
}


/* ---------------------------------------- SERVICES HERO END ---------------------------------------- */





/* =========================================================
   SERVICES STATS SECTION
========================================================= */
.service-stats {
  background-color: #ffffff;
  padding: 50px 0;
}

.service-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 180px;
  text-align: center;
}

/* Stat Item */
.service-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Number */
.service-stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #f8332c;
  margin-bottom: 8px;
}

/* Label */
.service-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}


/* ---------------------------------------- SERVICES STATS END ---------------------------------------- */





/* =========================================================
   SERVICES GRID SECTION
========================================================= */
.service-grid-section {
  background: radial-gradient(circle at top, #0b1220, #05080f);
  /* padding: 100px 0; */
  padding: 100px 0 20px;
  color: #ffffff;
}

.service-grid-wrapper {
  max-width: 1350px;
  margin: 0 auto 100px;
  padding: 0 6%;
  text-align: center;
}

.service-grid-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #f8332c;
}

.service-grid-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-grid-subtitle {
  font-size: 14px;
  color: #b5bccb;
  max-width: 620px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* CARD */
.service-grid-card {
  background: linear-gradient(180deg, #0f1628, #0a0f1d);
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

/* .service-grid-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 20px;
} */

.service-grid-card-image {
  width: 100%;
  height: 220px; /* controls image height */
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 20px;
}

.service-grid-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.service-grid-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-grid-card p {
  font-size: 14px;
  color: #c9cfdb;
  line-height: 1.6;
}

/* HOMEPAGE-LIKE HOVER EFFECT */
.service-grid-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 51, 44, 0.6);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(248, 51, 44, 0.15);
}


/* ---------------------------------------- SERVICES GRID END ---------------------------------------- */



/* =========================================================
   WHY CHOOSE US SECTION
========================================================= */
.service-why-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.service-why-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGE */

.service-why-image {
  max-height: 560px;
  overflow: hidden;
  border-radius: 24px;
}

.service-why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* RIGHT CONTENT */
.service-why-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #f8332c;
}

.service-why-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0a0a0a;
}

/* CARDS */
.service-why-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-why-card {
  display: flex;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  align-items: center; /* ✅ THIS FIXES IT */
  /* transition: border-color 0.3s ease, box-shadow 0.3s ease; */
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.service-why-card img {
  width: 44px;
  height: 44px;
}

/* TEXT */
.service-why-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0a0a0a;
}

.service-why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.service-why-card:hover {
  border-color: #f8332c;
  box-shadow: 0 20px 40px rgba(248, 51, 44, 0.12);
  transform: translateY(-3px);
}



/* ---------------------------------------- WHY CHOOSE US END ---------------------------------------- */





/* =========================================================
   WHAT WE DO SECTION
========================================================= */

.service-what-section {
  background-color: #ffffff;
  /* padding: 110px 0; */
  padding: 50px 0 110px;
}

.service-what-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT VISUAL */
.service-what-visual {
  position: relative;
}

/* MAIN IMAGE WITH GRADIENT BORDER */
.service-what-main-image {
  height: 420px;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(135deg, #f8332c, #ffd1ce);
  overflow: hidden;           /* IMPORTANT */
}

.service-what-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 26px;
}

/* EXPERIENCE BADGE */
.service-what-badge {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: #f8332c;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px rgba(248, 51, 44, 0.4);
}

.service-what-badge strong {
  font-size: 34px;
  line-height: 1;
}

.service-what-badge span {
  font-size: 14px;
  margin-top: 4px;
}

/* SMALL IMAGE */
.service-what-small-image {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 220px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.service-what-small-image img {
  width: 100%;
  display: block;
}

/* RIGHT CONTENT */
.service-what-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #f8332c;
  margin-bottom: 12px;
  display: inline-block;
}

.service-what-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #0a0a0a;
}

.service-what-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin-bottom: 28px;
}

/* CHECK LIST */
.service-what-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.service-what-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #222;
}

.service-what-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f8332c;
  font-weight: 700;
}

/* FEATURES */
.service-what-features {
  display: flex;
  gap: 40px;
}

.service-what-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.service-what-feature img {
  width: 38px;
  height: 38px;
}



/* ---------------------------------------- WHAT WE DO END ---------------------------------------- */






/* ==================================================
   OUR TEAM SECTION
================================================== */

.our-team {
  padding: 120px 0;
  background: #f9fafb;
}

.our-team-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 6%;
}

/* HEADER */

.our-team-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.our-team-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #3b82f6;
  margin-bottom: 12px;
}

.our-team-title {
  font-size: 42px;
  line-height: 1.25;
  color: #0f172a;
}

/* GRID */

.our-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.team-card {
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.team-card img {
  width: 100%;
  height: 260px;            /* fixed height */
  object-fit: cover;        /* crop instead of stretch */
  border-radius: 14px;
  margin-bottom: 20px;
  display: block;
}


.team-card h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

/* SOCIAL ICONS */

.team-socials {
  margin-top: auto;   /* THIS IS THE KEY */
  display: flex;
  justify-content: center;
  gap: 10px;
}


.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  /* background: #f1f5f9; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-socials img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}



/* ---------------------------------------- OUR TEAM SECTION END ---------------------------------------- */