
:root {
  --bg: #24406a;
  --bg-dark: #233145;
  --panel: #50678d;
  --muted: #bfc2c9;
  --accent: #f1b735;
  --glass: rgba(88, 123, 163, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-dark) 100%);
  color: #fff;
  overflow-x: hidden;
}

/* HEADER */
header.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: rgba(25,32,42,0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #fff;
}
nav.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
nav.navbar a {
  color: #c1c6cc;
  margin-right: 25px;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s, transform 0.25s;
}
nav.navbar a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}
.right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.icon-box img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: 0.25s;
}
.icon-box img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* HERO */
.hero {
  padding: 160px 8% 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 90vh;
  flex-wrap: wrap;
}
.big-circle {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241,183,53,0.06), rgba(255,255,255,0));
  border-radius: 50%;
  z-index: 1;
  filter: blur(4px);
}
.intro-section {
  flex: 1;
  z-index: 10;
  min-width: 300px;
}
.intro {
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 6px;
}
.name {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
}
.underline {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 70%;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
}
.desc {
  max-width: 380px;
  color: #d1d5db;
  line-height: 1.6;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin-top: 18px;
  font-size: 15px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), transparent);
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 6px;
}
.profile-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 12;
}
.profile {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: none;
  background: none;
}
.services-card {
  flex: 1;
  background: var(--glass);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.03);
  max-width: 320px;
  text-align: left;
  z-index: 10;
  color: #e6e9ee;
}
.services-card h4 {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.services-card p {
  margin-top: 10px;
  color: #dcdfe4;
  font-size: 16px;
  line-height: 1.5;
}
.show-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.social-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(56, 93, 130, 0.04);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s;
}
.social-row a:hover {
  background: var(--accent);
  color: #222;
  transform: translateY(-3px);
}

/* BRANDS */
.brands {
  margin: 50px;
  background: #6483a9;
  padding: 18px 34px;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  border: 1px solid rgba(255,255,255,0.02);
}
.brand img {
  height: 28px;
  display: block;
  margin: 0 auto 8px;
  opacity: 0.95;
  transition: 0.3s;
}
.brand img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* SERVICES SECTION */
.services-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 10%;
  background: #364557;
  color: #fff;
  flex-wrap: wrap;
  gap: 40px;
}
.services-left {
  flex: 1;
  min-width: 300px;
}
.services-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}
.services-desc {
  color: #c7c9cc;
  margin: 18px 0 40px;
  max-width: 400px;
  line-height: 1.6;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.stats div h3 {
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 6px;
}
.stats div p {
  color: #c0c3c8;
  font-size: 14px;
}
.services-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(42, 56, 96, 0.04);
  padding: 18px 24px;
  border-radius: 14px;
  transition: 0.3s; 
  border: 1px solid rgba(255,255,255,0.05);
}
.service-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.service-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
  transition: transform 0.3s;
}
.service-item:hover img {
  transform: scale(1.05);
}
.service-item .info {
  flex: 1;
}
.service-item .info h4 {
  font-size: 18px;
  font-weight: 600;
}
.service-item .info p {
  color: #aab0b8;
  font-size: 14px;
}
.service-item i {
  color: var(--accent);
  font-size: 18px;
}

/* ========================= */
/* RESPONSIVE MEDIA QUERIES */
/* ========================= */

/* Large screens (max-width 1200px) */
@media (max-width: 1200px) {
  .hero {
    padding: 140px 5% 80px;
    gap: 40px;
  }
  .name {
    font-size: 36px;
  }
  .profile {
    width: 280px;
    height: 280px;
  }
}

/* Tablets (max-width 992px) */
@media (max-width: 992px) {
  header.header {
    padding: 15px 6%;
  }
  nav.navbar a {
    margin-right: 15px;
    font-size: 14px;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .intro-section, .services-card {
    text-align: center;
    align-items: center;
  }
  .desc {
    margin: 15px auto;
  }
  .profile-wrap {
    order: -1;
    margin-bottom: 20px;
  }
  .services-card {
    max-width: 100%;
  }
  .brands {
    flex-direction: column;
  }
  .services-section {
    flex-direction: column;
    padding: 80px 6%;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile (max-width 768px) */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  nav.navbar {
    flex-basis: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  .hero {
    padding: 120px 6% 60px;
  }
  .name {
    font-size: 30px;
  }
  .profile {
    width: 240px;
    height: 240px;
  }
  .brands {
    margin: 30px 6%;
  }
  .services-left h2 {
    font-size: 28px;
  }
}

/* Small Mobile (max-width 576px) */
@media (max-width: 576px) {
  header.header {
    padding: 10px 5%;
  }
  nav.navbar a {
    margin: 8px;
    font-size: 13px;
  }
  .hero {
    padding: 110px 5% 60px;
  }
  .name {
    font-size: 26px;
  }
  .desc {
    font-size: 14px;
  }
  .services-card, .service-item {
    padding: 16px;
  }
  .service-item img {
    width: 60px;
    height: 45px;
  }
  .stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
