body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #0d1013;
  line-height: 1.6;
  background: white;
  margin: 0;
  padding: 0;
  padding-top: 0px;
}

header {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

header .logo img {
  max-width: 140px;
  height: auto;
  display: block;
}

header nav {
  display: flex;
  justify-content: flex-end;
}

header nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

header nav a {
  text-decoration: none;
  color: #012333;
  font-weight: 600;
  transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #01b1c8;
}

@media (max-width: 768px) {
  header .logo img {
    max-width: 120px;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 80vh;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-text {
  color: white;
  max-width: 600px;
  width: 90%;
  text-align: center;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .hero-buttons a {
    flex: 0 1 auto;
    min-width: 120px;
    max-width: 180px;
  }
}

.hero-text h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
}


.hero-buttons a {
  flex: 1 1 100px;
  min-width: 100px;
  max-width: 130px;
  text-align: center;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.hero-buttons a:hover {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.hero-buttons a:nth-child(1).visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-buttons a:nth-child(2).visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
  
@media (max-width: 576px) {
  .hero-buttons a {
    flex: 1 1 100%;
  }
}

.roles {
  padding: 0rem 2rem;
  text-align: center;
  background-color: white;
}

.roles h2 {
  margin-bottom: 2rem;
  color: #0d1013;
  font-size: 35px;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

@media (max-width: 992px) {
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }
}

.role-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.role-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.role-card i {
  font-size: 2.5rem;
  color: #43868F;
  margin-bottom: 1rem;
}

.role-card h3 {
  margin: 0.5rem 0;
  color: #2F2C3D;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1400px;
  margin: auto;
}

.about-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 250px;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    max-width: 300px;
    margin-bottom: 1.5rem;
  }
}

.branch-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
}

.branch-section.reverse {
  flex-direction: row-reverse;
}

.branch-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.branch-text {
  flex: 1;
  min-width: 250px;
}

.branch-section.reverse .branch-text {
  text-align: right;
}

.branch-section, .about {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.branch-section.visible, .about.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .branch-section,
  .branch-section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .branch-text {
    text-align: center !important;
  }

  .branch-img img {
    max-width: 300px;
    margin-bottom: 1.5rem;
  }
}

.button {
  display: inline-block;
  background-color: #012333;
  color: white;
  padding: 0.8rem 1.5rem;
  margin: 1rem 0.5rem;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.button:hover {
  background-color: #01b1c8;
  transform: scale(1.05);
}

.contact-img {
  margin-top: 2rem;
  text-align: center;
}

.contact-img img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
}

footer {
  width: 100vw;
  background-color: #012333;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  box-sizing: border-box;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 0.3rem;
}

footer a:hover {
  color: #01B1C8;
}

.footer-container {
  max-width: none;
  margin: 0 auto;
}