:root {
  --royal-blue: #00274d;
  --white: #ffffff;
  --shine: rgba(255, 255, 255, 0.5);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: var(--royal-blue);
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* Hero Section */
.hero {
  background: var(--royal-blue);
  color: var(--white);
  padding: 5vw 2rem;
  text-align: center;
}
.hero h1 {
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.05;
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    margin-bottom: 1.2rem;
    background: linear-gradient(180deg, #fff6bf 0%, #ffd700 35%, #e6b800 70%, #fff6bf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 4px rgba(255,255,255,0.35),
                             0 8px 24px rgba(0,0,0,0.55),
                             0 18px 36px rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    word-break: break-word;
}

.hero .desc {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 0;
  line-height: 1.6;
  text-align: justify;
}

.company-card {
  background: #f0f4f8;
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Profiles */
.profiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
}

.profile {
  flex: 1 1 320px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  min-width: 260px;
  max-width: 400px;
  transition: box-shadow 0.3s;
}

.profile:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.profile-pic-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
}

.profile-pic-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile:hover .profile-pic-wrapper img {
  transform: scale(1.05);
}

.tag {
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  font-size: 0.85rem;
  color: var(--royal-blue);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--shine);
  transition: left 0.5s ease;
}

.tag:hover::after {
  left: 100%;
}

/* Footer */
footer {
  margin-top: auto;
  background: var(--royal-blue);
  color: var(--white);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  header nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }

  #nav-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 0.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    display: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 1rem 0;
  }

  nav ul.show {
    display: flex;
  }

  .profile-pic-wrapper {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .profile-pic-wrapper {
    width: 90px;
    height: 90px;
  }
}
/* Social Media Links */
.social-links2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links2 a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  color: #f4d35e;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
  transition: color 0.2s;
}
.social-links2 a2:hover i,
.social-links2 a2:focus i {
  color: #e99a26;
  transform: scale(1.2) rotate(-8deg);
}