    body {
      font-family: 'Segoe UI', sans-serif;
    }
    .top-bar {
      background: #3c5677;
      color: #fff;
      font-size: 14px;
      padding: 5px 0;
    }
    .top-bar a {
      color: #fff;
      text-decoration: none;
      margin-left: 10px;
    }
    .navbar-brand {
      font-weight: bold;
      font-size: 22px;
      color: #3c5677 !important;
    }
    .hero {
      
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .hero h1 {
      font-size: 48px;
      font-weight: bold;
    }
    .hero p {
      font-size: 20px;
      margin-top: 15px;
    }
    .btn-custom {
      margin-top: 20px;
      padding: 10px 25px;
      font-size: 18px;
      border-radius: 50px;
    }

    .unique-tit{
        
        font-weight: 100!important;
    }
    .unique-stit
    {
        font-weight: 100!important;
    }

   .text-edu
   {
    font-weight: 100;
    color: rgb(165, 255, 9);
   }

   .text-web
   {
font-weight: 100;
color: #212529;
   }

 .hero {
  position: relative;
  height: 100vh;
  min-height: 500px; /* fallback for small devices */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 20px;
}

/* Background Image */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../img/uniquecti-hongasandra.jpg') 
              center/cover no-repeat;
  z-index: -2;
}

/* Animated Gradient Overlay */
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(270deg, rgba(34,110,225,0.7), rgba(255,87,34,0.7), rgba(103,58,183,0.7), rgba(0,150,136,0.7));
  background-size: 600% 600%;
  animation: gradientMove 15s ease infinite;
  z-index: -1;
}




@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}
.hero h2 {
  font-size: 28px;
  margin-top: 10px;
}
.hero p {
  font-size: 20px;
  margin-top: 15px;
}
.btn-custom {
  margin: 10px;
  padding: 10px 25px;
  font-size: 18px;
  border-radius: 50px;
}

/* ✅ Responsive Adjustments */
@media (max-width: 992px) { /* Tablet */
  .hero h1 { font-size: 36px; }
  .hero h2 { font-size: 24px; }
  .hero p { font-size: 18px; }
}

@media (max-width: 576px) { /* Mobile */
  .hero {
    height: auto;
    padding: 80px 20px;
  }
  .hero h1 { font-size: 28px; }
  .hero h2 { font-size: 20px; }
  .hero p { font-size: 16px; }
  .btn-custom {
    display: block;
    width: 100%;
    margin: 10px 0;
    font-size: 16px;
  }
}

