/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
   background-color: #ff6600;
}

.logo {
  height: 60px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  background-color: #ff6600;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 6px;
}

.social-icon:hover {
  background-color: #ff6600;
}

.social-svg {
  width: 18px;
  height: 18px;
  filter: invert(0%) brightness(0%); /* black icon */
  transition: filter 0.3s ease;
}

.social-icon:hover .social-svg {
  filter: invert(100%) brightness(200%); /* white icon on orange */
}



/* Hero */
.hero {
  position: relative;
  height: 50vh;
  background-color: white;
}


.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: white; /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 30px;
  left: 60px;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: black;
}

.hero-content .highlight {
  color: #ff6600; /* Orange for ACT */
}

.hero-content h2 {
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: 400;
  font-family: 'Caveat', cursive;
  color: black;
}


/* Cards Section */
.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 50px 5%;
  flex-wrap: wrap;
  background-color: #fff;
}

.card {
  background-color: #f9f9f9;
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
  width: 280px;
  height: 220px;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 50px;
  height: auto;
  margin-bottom: 15px;
}


.card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6600;
}



/* Footer */
.footer {
  background-color: #f8f9fc; /* off-white */
  color: #333;
  padding: 15px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.footer .highlight {
  color: #ff6600;
  font-weight: bold;
}

.footer p {
  margin: 5px 0;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    bottom: 20px;
    left: 30px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    margin-top: 10px;
  }

  .card {
    width: 90%;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }
}
