/* General Body Reset */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e9e9ef;
    color: #1f1f1f;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');

body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
}

/* Welcome Screen */
#welcome-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #e9e9ef; /* Soft background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 1s ease 3.5s forwards;
}

/* UGEball Brand Title */
.ugeball-brand {
  font-size: 74px;
  font-weight: 900;
  color: #F5DEB3; /* Light Sandal */
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

/* Tagline Text */
.welcome-content p {
  font-size: 26px;
  color: #0d6efd; /* Royal Blue */
  margin-bottom: 35px;
  font-weight: 600;
}

/* Dots Loader */
.dots-loader {
  font-size: 54px;
  color: #0d6efd;
}

.dots-loader span {
  animation: blink 1.2s infinite;
}

.dots-loader span:nth-child(2) {
  animation-delay: 0.2s;
}
.dots-loader span:nth-child(3) {
  animation-delay: 0.4s;
}

/* Blink Animation */
@keyframes blink {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* Fade Out Welcome Screen */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Header Styling */
header {
    background-color: #0d6efd; /* Light Sandal background */
    padding: 15px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

nav .logo a {
    color: #FFa500; /* Dark Gray text for the logo */
    font-size: 28px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav .nav-links {
    list-style-type: none;
    display: flex;
    gap: 30px;
}

nav .nav-links li {
    position: relative;
}

nav .nav-links li a {
    color: #fff; /* Medium Gray text for tabs */
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover Effect with Smooth Border */
nav .nav-links li a:hover {
    color: #FFa500; /* Highlight color on hover */
    border-bottom: 2px solid #FFa500; /* Underline effect */
    padding-bottom: 5px; /* Adds space below text for the underline effect */
}

/* Active Tab Indicator */
nav .nav-links li a.active {
    color: #FFa500;
    border-bottom: 2px solid #FFa500; /* Keep active tab highlighted */
}

/* Mobile Navigation: Stack tabs vertically */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav .nav-links {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    nav .nav-links li a {
        font-size: 20px;
    }
}


#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #e9e9ef 100%, #ffffff 0%);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  color: #222;
  margin-bottom: 30px;
}

.hero-content p {
  font-size: 24px;
  color: #555;
  margin-bottom: 50px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trusted {
  margin-top: 30px;
  font-size: 16px;
  color: #777;
}

.trusted img {
  height: 40px;
  margin: 0 12px;
  opacity: 0.8;
}


------
   body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      background-color: #e9e9ef;
      color: #1a1a1a;
    }

    .section {
      max-width: 1140px;
      margin: 0 auto;
      padding: 64px 24px;
    }

    .section h2 {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: #111;
    }

    .section p.subtitle {
      text-align: center;
      font-size: 1rem;
      color: #555;
      margin-bottom: 48px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .service-box {
      background: #fff;
      padding: 24px;
      border-top: 5px solid #0d6efd;
      border-radius: 8px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .service-box:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px);
    }

    .service-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0d6efd;
      margin-bottom: 8px;
    }

    .service-description {
      font-size: 0.92rem;
      line-height: 1.5;
      color: #444;
    }

    @media (max-width: 600px) {
      .section h2 {
        font-size: 1.5rem;
      }
    }


  body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      background-color: #ffffff;
      color: #111;
    }

    .section {
      background-color: #e9e9ef;
      padding: 100px 24px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section h2 {
      text-align: center;
      font-size: 2.4rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #111;
    }

    .subtitle {
      text-align: center;
      font-size: 1rem;
      color: #555;
      margin-bottom: 64px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      padding: 32px 24px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
      position: relative;
      overflow: hidden;
      transform: translateY(30px);
      opacity: 0;
      transition: all 0.7s ease;
    }

    .card.show {
      transform: translateY(0);
      opacity: 1;
    }

    .icon-wrapper {
      width: 60px;
      height: 60px;
      background-color: #0d6efd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 16px;
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    }

    .card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin: 0 0 8px;
      color: #0d6efd;
    }

    .card p {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .grid {
        gap: 24px;
      }

      .card {
        padding: 24px 20px;
      }
    }


 body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      background-color: #fff;
    }

    .industries-section {
      padding: 100px 40px;
      background-color: #e9e9ef;
    }

    .industries-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .industries-header h2 {
      color: #0d6efd;
      font-size: 2.4rem;
      font-weight: 800;
      margin: 0;
      animation: fadeUp 1s ease-out forwards;
      opacity: 0;
    }

    .industries-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .industry-card {
      background: #fff;
      border-radius: 16px;
      padding: 32px;
      border: 1px solid #d6d6d6;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      transform: translateY(20px);
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
      animation-delay: calc(var(--i) * 0.15s);
    }

    .industry-icon svg {
      width: 40px;
      height: 40px;
      fill: #0d6efd;
      margin-bottom: 20px;
    }

    .industry-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 10px;
    }

    .industry-desc {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.6;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .industries-header h2 {
        font-size: 2rem;
      }
    }
.footer-link {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .footer-link:hover {
    color: #0d6efd;
    transform: translateX(4px);
  }

  footer div, footer p, footer a, footer h4 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
  }

  footer h4 { animation-delay: 0.2s; }
  footer p, footer li { animation-delay: 0.4s; }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }