.u-section-1 {
  background-image: none;
  min-height: 100vh;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
}

.u-section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.u-section-1 .u-shape-1 {
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  background-image: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a855f7 100%);
  opacity: 0.85;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a855f7 100%);
  }
  50% {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #7c3aed 100%);
  }
}

.u-section-1 .u-image-1 {
  width: 350px;
  height: 350px;
  background-image: url("images/logo.png");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  --animation-custom_in-translate_x: 50px;
  --animation-custom_in-translate_y: 0px;
  --animation-custom_in-opacity: 0;
  --animation-custom_in-rotate: 180deg;
  --animation-custom_in-scale: 0.3;
  margin: 0 auto 50px;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(255, 255, 255, 0.15),
      inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  }
}

.u-section-1 .u-image-1:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.u-section-1 .u-list-1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.u-section-1 .u-repeater-1 {
  min-height: auto;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-gap: 40px;
  align-items: start;
}

.u-section-1 .u-container-layout-1 {
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.u-section-1 .u-container-layout-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.u-section-1 .u-container-layout-1:hover::before {
  left: 100%;
}

.u-section-1 .u-container-layout-1:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.u-section-1 .u-text-1 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(124, 58, 237, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.6));
  }
}

.u-section-1 .u-text-1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #8b5cf6, #a855f7);
  border-radius: 2px;
  animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
  0%,
  100% {
    width: 80px;
  }
  50% {
    width: 120px;
  }
}

.u-section-1 .u-text-2 {
  letter-spacing: 0.8px;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.9;
  color: #2c3e50;
  margin: 0;
  text-align: justify;
  position: relative;
  z-index: 1;
}

.u-section-1 .u-container-layout-2 {
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.u-section-1 .u-container-layout-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.u-section-1 .u-container-layout-2:hover::before {
  left: 100%;
}

.u-section-1 .u-container-layout-2:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.u-section-1 .u-text-3 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite 1s;
}

.u-section-1 .u-text-3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #8b5cf6, #a855f7);
  border-radius: 2px;
  animation: underlineExpand 2s ease-in-out infinite 1s;
}

.u-section-1 .u-text-4 {
  letter-spacing: 0.8px;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.9;
  color: #2c3e50;
  margin: 0;
  text-align: justify;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .u-section-1 {
    min-height: auto;
    padding: 60px 0;
  }

  .u-section-1 .u-image-1 {
    width: 300px;
    height: 300px;
    margin-bottom: 40px;
  }

  .u-section-1 .u-list-1 {
    max-width: 1000px;
  }

  .u-section-1 .u-repeater-1 {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    grid-gap: 30px;
  }

  .u-section-1 .u-container-layout-1,
  .u-section-1 .u-container-layout-2 {
    padding: 40px 30px;
  }

  .u-section-1 .u-text-1,
  .u-section-1 .u-text-3 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }

  .u-section-1 .u-text-2,
  .u-section-1 .u-text-4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 991px) {
  .u-section-1 {
    padding: 50px 0;
  }

  .u-section-1 .u-image-1 {
    width: 250px;
    height: 250px;
    margin-bottom: 30px;
  }

  .u-section-1 .u-list-1 {
    max-width: 800px;
  }

  .u-section-1 .u-repeater-1 {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .u-section-1 .u-container-layout-1,
  .u-section-1 .u-container-layout-2 {
    padding: 35px 25px;
  }

  .u-section-1 .u-text-1,
  .u-section-1 .u-text-3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .u-section-1 .u-text-2,
  .u-section-1 .u-text-4 {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .u-section-1 {
    padding: 40px 0;
  }

  .u-section-1 .u-image-1 {
    width: 200px;
    height: 200px;
    margin-bottom: 25px;
  }

  .u-section-1 .u-list-1 {
    max-width: 100%;
    padding: 0 20px;
  }

  .u-section-1 .u-repeater-1 {
    grid-gap: 20px;
  }

  .u-section-1 .u-container-layout-1,
  .u-section-1 .u-container-layout-2 {
    padding: 30px 20px;
  }

  .u-section-1 .u-text-1,
  .u-section-1 .u-text-3 {
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .u-section-1 .u-text-2,
  .u-section-1 .u-text-4 {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {
  .u-section-1 {
    padding: 30px 0;
  }

  .u-section-1 .u-image-1 {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
  }

  .u-section-1 .u-list-1 {
    padding: 0 15px;
  }

  .u-section-1 .u-repeater-1 {
    grid-gap: 15px;
  }

  .u-section-1 .u-container-layout-1,
  .u-section-1 .u-container-layout-2 {
    padding: 25px 15px;
  }

  .u-section-1 .u-text-1,
  .u-section-1 .u-text-3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .u-section-1 .u-text-2,
  .u-section-1 .u-text-4 {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.u-section-2 {
  background-image: none;
}

.u-section-2 .u-sheet-1 {
  min-height: 942px;
}

.u-section-2 .u-text-1 {
  font-size: 3.75rem;
  margin: 53px 105px 0;
}

.u-section-2 .u-list-1 {
  margin-top: 68px;
  margin-bottom: 0;
}

.u-section-2 .u-repeater-1 {
  grid-template-columns: repeat(2, calc(50% - 15px));
  min-height: 582px;
  grid-gap: 30px;
}

.u-section-2 .u-list-item-1 {
  background-image: none;
}

.u-section-2 .u-container-layout-1 {
  padding: 30px;
}

.u-section-2 .u-image-1 {
  width: 160px;
  height: 160px;
  background-image: url("images/26ad3ed2-3d8c-4eb0-9ed2-35095c7be833.jpg");
  background-position: 50% 50%;
  margin: 0 auto 0 0;
}

.u-section-2 .u-text-2 {
  font-style: normal;
  margin: -160px 0 0 193px;
}

.u-section-2 .u-text-3 {
  font-weight: 700;
  margin: 15px 76px 0 193px;
}

.u-section-2 .u-text-4 {
  font-weight: 300;
  font-size: 1rem;
  margin: 15px 92px 0 193px;
}

.u-section-2 .u-list-item-2 {
  background-image: none;
}

.u-section-2 .u-container-layout-2 {
  padding: 30px;
}

.u-section-2 .u-image-2 {
  width: 160px;
  height: 160px;
  background-image: url("images/ghghhg.jpg");
  background-position: 50% 50%;
  margin: 0 auto 0 0;
}

.u-section-2 .u-text-5 {
  font-style: normal;
  margin: -160px 0 0 193px;
}

.u-section-2 .u-text-6 {
  font-weight: 700;
  margin: 15px 76px 0 193px;
}

.u-section-2 .u-text-7 {
  font-weight: 300;
  font-size: 1rem;
  margin: 15px 92px 0 193px;
}

.u-section-2 .u-list-item-3 {
  background-image: none;
}

.u-section-2 .u-container-layout-3 {
  padding: 30px;
}

.u-section-2 .u-image-3 {
  width: 160px;
  height: 160px;
  background-image: url("images/jj.jpg");
  background-position: 50% 50%;
  margin: 0 auto 0 0;
}

.u-section-2 .u-text-8 {
  font-style: normal;
  margin: -160px 0 0 193px;
}

.u-section-2 .u-text-9 {
  font-weight: 700;
  margin: 15px 76px 0 193px;
}

.u-section-2 .u-text-10 {
  font-weight: 300;
  font-size: 1rem;
  margin: 15px 92px 0 193px;
}

.u-section-2 .u-list-item-4 {
  background-image: none;
}

.u-section-2 .u-container-layout-4 {
  padding: 30px;
}

.u-section-2 .u-image-4 {
  width: 160px;
  height: 160px;
  background-image: url("images/ghh3-min.jpg");
  background-position: 50% 50%;
  margin: 0 auto 0 0;
}

.u-section-2 .u-text-11 {
  font-style: normal;
  margin: -160px 0 0 193px;
}

.u-section-2 .u-text-12 {
  font-weight: 700;
  margin: 15px 76px 0 193px;
}

.u-section-2 .u-text-13 {
  font-weight: 300;
  font-size: 1rem;
  margin: 15px 92px 0 193px;
}

.u-section-2 .u-social-icons-1 {
  /* height: 80px; */
  min-height: 16px;
  width: 326px;
  min-width: 134px;
  margin: 43px auto 0 115px;
}

.u-section-2 .u-icon-1 {
  height: 100%;
}

.u-section-2 .u-icon-2 {
  height: 100%;
}

.u-section-2 .u-icon-3 {
  height: 100%;
}

.u-section-2 .u-btn-1 {
  border-style: none;
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: 1px;
  margin: -65px 120px 60px auto;
  padding: 0;
}

@media (max-width: 1199px) {
  .u-section-2 .u-sheet-1 {
    min-height: 1023px;
  }

  .u-section-2 .u-text-1 {
    margin-top: 58px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .u-section-2 .u-repeater-1 {
    min-height: 480px;
  }

  .u-section-2 .u-image-1 {
    width: 141px;
    height: 141px;
  }

  .u-section-2 .u-text-2 {
    width: auto;
    margin-top: -141px;
    margin-left: 176px;
  }

  .u-section-2 .u-text-3 {
    width: auto;
    margin-top: 22px;
    margin-right: 0;
    margin-left: 176px;
  }

  .u-section-2 .u-text-4 {
    width: auto;
    margin-top: 14px;
    margin-right: 0;
    margin-left: 176px;
  }

  .u-section-2 .u-image-2 {
    width: 141px;
    height: 141px;
  }

  .u-section-2 .u-text-5 {
    width: auto;
    margin-top: -141px;
    margin-left: 176px;
  }

  .u-section-2 .u-text-6 {
    width: auto;
    margin-top: 22px;
    margin-right: 0;
    margin-left: 176px;
  }

  .u-section-2 .u-text-7 {
    width: auto;
    margin-top: 14px;
    margin-right: 0;
    margin-left: 176px;
  }

  .u-section-2 .u-image-3 {
    width: 141px;
    height: 141px;
  }

  .u-section-2 .u-text-8 {
    width: auto;
    margin-top: -141px;
    margin-left: 176px;
  }

  .u-section-2 .u-text-9 {
    width: auto;
    margin-top: 22px;
    margin-right: 0;
    margin-left: 176px;
  }

  .u-section-2 .u-text-10 {
    width: auto;
    margin-top: 14px;
    margin-right: 0;
    margin-left: 176px;
  }

  .u-section-2 .u-image-4 {
    width: 141px;
    height: 141px;
  }

  .u-section-2 .u-text-11 {
    width: auto;
    margin-top: -141px;
    margin-left: 176px;
  }

  .u-section-2 .u-text-12 {
    width: auto;
    margin-top: 22px;
    margin-right: 0;
    margin-left: 176px;
  }

  .u-section-2 .u-text-13 {
    width: auto;
    margin-top: 14px;
    margin-right: 0;
    margin-left: 176px;
  }

  .u-section-2 .u-social-icons-1 {
    /* height: 54px; */
    width: 248px;
    margin-top: 45px;
    margin-left: 104px;
  }

  .u-section-2 .u-btn-1 {
    margin-top: -51px;
    margin-right: 74px;
    margin-bottom: 58px;
  }
}

@media (max-width: 991px) {
  .u-section-2 .u-sheet-1 {
    min-height: 1274px;
  }

  .u-section-2 .u-text-1 {
    font-size: 3rem;
    margin-left: 0;
    margin-right: 0;
  }

  .u-section-2 .u-text-2 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-2 .u-text-3 {
    margin-left: 0;
  }

  .u-section-2 .u-text-4 {
    margin-left: 0;
  }

  .u-section-2 .u-text-5 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-2 .u-text-6 {
    margin-left: 0;
  }

  .u-section-2 .u-text-7 {
    margin-left: 0;
  }

  .u-section-2 .u-text-8 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-2 .u-text-9 {
    margin-left: 0;
  }

  .u-section-2 .u-text-10 {
    margin-left: 0;
  }

  .u-section-2 .u-text-11 {
    margin-top: 20px;
    margin-left: 0;
  }

  .u-section-2 .u-text-12 {
    margin-left: 0;
  }

  .u-section-2 .u-text-13 {
    margin-left: 0;
  }

  .u-section-2 .u-social-icons-1 {
    /* height: 45px; */
    width: 221px;
    margin-left: 47px;
  }

  .u-section-2 .u-btn-1 {
    margin-right: 19px;
  }
}

@media (max-width: 767px) {
  .u-section-2 .u-sheet-1 {
    min-height: 1369px;
  }

  .u-section-2 .u-container-layout-1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-2 .u-container-layout-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-2 .u-container-layout-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-2 .u-container-layout-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .u-section-2 .u-social-icons-1 {
    /* height: 57px; */
    width: 256px;
    margin-left: auto;
  }

  .u-section-2 .u-btn-1 {
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .u-section-2 .u-sheet-1 {
    min-height: 2109px;
  }

  .u-section-2 .u-text-1 {
    font-size: 1.875rem;
  }

  .u-section-2 .u-repeater-1 {
    grid-template-columns: 100%;
    min-height: 1690px;
    grid-gap: 30px 30px;
  }

  .u-section-2 .u-image-1 {
    margin-left: auto;
  }

  .u-section-2 .u-image-2 {
    margin-left: auto;
  }

  .u-section-2 .u-image-3 {
    margin-left: auto;
  }

  .u-section-2 .u-image-4 {
    margin-left: auto;
  }

  .u-section-2 .u-social-icons-1 {
    /* height: 52px; */
    width: 242px;
    margin-left: 36px;
  }
}
