@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  
}

body {
  min-height: 100vh;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  background: #07041b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: 0.5s ease;
}

.logo {
  font-family: "Dela Gothic One", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  color: #ffffff;
  text-decoration: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.navbar a,
.dropdown {
  position: relative;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.navbar a {
  position: relative;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  margin-left: 40px;
}

.navbar a:hover {
  background: linear-gradient(70deg, #c33bff, #5a81f9, #13b0f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(70deg, #c33bff, #5a81f9, #13b0f6);
  transition: 0.5s;
}

.navbar a:hover::before {
  width: 100%;
}

.hidden {
  transform: translateY(-100%);
}

.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
  background: #07041b;
  position: relative;
  overflow: hidden;
}


.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  transition: all 0.5s ease;
}

.glow-1 {
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(195, 59, 255, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
  animation: pulse 8s ease-in-out infinite alternate, float-slow 20s ease-in-out infinite;
}



.glow-3 {
  top: 40%;
  right: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(90, 129, 249, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  animation: pulse 7s ease-in-out infinite alternate, float-slow 18s ease-in-out infinite 1s;
}

@keyframes pulse {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-20px, 20px); }
  50% { transform: translate(10px, -15px); }
  75% { transform: translate(15px, 10px); }
}

/* Particles */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.particle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: particle-pulse 3s ease-in-out infinite;
}

.p1 { top: 20%; left: 10%; animation: float 20s ease-in-out infinite; }
.p2 { top: 70%; left: 20%; animation: float 25s ease-in-out infinite 2s; }
.p3 { top: 40%; left: 80%; animation: float 18s ease-in-out infinite 1s; }
.p4 { top: 10%; left: 60%; animation: float 22s ease-in-out infinite 3s; }
.p5 { top: 80%; left: 85%; animation: float 19s ease-in-out infinite 2s; }
.p6 { top: 60%; left: 40%; animation: float 21s ease-in-out infinite 1s; }
.p7 { top: 30%; left: 30%; animation: float 24s ease-in-out infinite 3s; }
.p8 { top: 90%; left: 70%; animation: float 17s ease-in-out infinite; }

@keyframes particle-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(2); opacity: 0.7; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(40px, -40px); }
  50% { transform: translate(-30px, 30px); }
  75% { transform: translate(20px, 20px); }
}


.home-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 2;
}


.home-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.badge-container {
  margin-bottom: 24px;
  overflow: hidden;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(136, 44, 255, 0.2);
  color: #a67dff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  border: 1px solid rgba(136, 44, 255, 0.3);
  box-shadow: 0 4px 15px rgba(136, 44, 255, 0.15);
  animation: slide-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.home-content h1 {
  text-transform: capitalize;
  line-height: 1.2;
  font-size: clamp(40px, 7vw, 70px);
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.home-content h1 .highlight {
  background: linear-gradient(90deg, #c33bff, #5a81f9, #13b0f6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.home-content h3 {
  text-transform: capitalize;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.home-content p {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  margin: 20px 0 40px;
  color: rgba(255, 255, 255, 0.7);
}



.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  animation: float-image 6s ease-in-out infinite;
}

@keyframes float-image {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-image img {
  width: 110%;
  max-width: 850px;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 0 60px rgba(136, 44, 255, 0.5));
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

 .hero-image:hover img {
    transform: scale(1.1);
    box-shadow: 0 40px 80px rgba(136, 44, 255, 0.4);
  }

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(19, 176, 246, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  animation: pulse 5s ease-in-out infinite alternate;
}


.element-1 {
  top: 20%;
  right: 10%;
  animation: float 10s ease-in-out infinite;
}

.element-2 {
  bottom: 30%;
  right: 20%;
  animation: float 12s ease-in-out infinite 1s;
}

.element-3 {
  top: 60%;
  right: 5%;
  animation: float 9s ease-in-out infinite 2s;
}


.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  animation: fade-in 1s ease 1.5s both;
  z-index: 10;
}

.new-btn {
  display: flex;
  gap: 15px; 
  flex-wrap: wrap; 
}


.primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  background: linear-gradient(90deg, #c33bff, #5a81f9, #13b0f6);
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  color: #07041b;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(19, 176, 246, 0.3);
}

.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #07041b;
  z-index: -1;
  transition: width 0.5s ease;
  border-radius: 12px;
}

.primary-btn:hover {
  color: #ffffff;
}

.primary-btn:hover::before {
  width: 100%;
}

.secondary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  background: transparent;
  border: 3px solid #13b0f6;
  border-radius: 12px;
  font-size: 1.125rem;
  color: #13b0f6;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(19, 176, 246, 0.3);
}

.secondary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #07041b;
  z-index: -1;
  transition: width 0.5s ease;
  border-radius: 12px;
}

.secondary-btn:hover {
  color: #ffffff;
  border: 3px solid #ffffff;
}

.secondary-btn:hover::before {
  width: 100%;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scroll 2s ease infinite;
}

@keyframes scroll {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

.arrow {
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}


@media (max-width: 1200px) {
  .home-wrapper {
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
    .hero-image img {
      width: 90%;
      max-width: 500px;
      display: none;
    }
  }

@media (max-width: 992px) {
  .home {
    padding: 100px 5% 60px;
  }
  
  .home-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .home-content {
    max-width: 100%;
    margin-bottom: 60px;
  }
  
  .btn-box {
    justify-content: center;
  }
  
  .hero-image img {
      width: 90%;
      max-width: 480px;
      display: none;
  }
  
  .floating-elements {
    display: none;
  }
}

@media (max-width: 576px) {
  .home {
    padding: 80px 5% 40px;
  }
  
  .home-content h1 {
    font-size: 36px;
  }
  
  .home-content h3 {
    font-size: 20px;
  }
  
  .home-content p {
    font-size: 16px;
  }
  
  .btn-box {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-box a {
    width: 100%;
  }
  
  .scroll-indicator {
    display: none;
  }
}











.img-background {
  background-image: url('./assets/_MG_9320.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  position: relative;
  font-family: 'Poppins', sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gradient {
  background: linear-gradient(90deg, #c33bff, #5a81f9, #13b0f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.img-overlay {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(10, 10, 10, 0.6));
  width: 100%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-content {
  max-width: 700px;
  z-index: 2;
  padding: 0 1rem;
}

.img-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: inherit;
}

.img-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ddd;
}

.cta-button,
.hero-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  width: auto;
  background: linear-gradient(90deg, #c33bff, #5a81f9, #13b0f6);
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  color: #07041b;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(19, 176, 246, 0.3);
}

.cta-button::before,
.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #07041b;
  z-index: -1;
  transition: width 0.5s ease;
  border-radius: 12px;
}

.cta-button:hover,
.hero-btn:hover {
  background: linear-gradient(90deg, #13b0f6, #8b5cf6);
  transform: translateY(-3px);
}


@media (max-width: 1024px) {
  .img-content h1 {
    font-size: 3rem;
  }

  .img-content p {
    font-size: 1.25rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.65rem 1.8rem;
  }

  .img-background {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .img-content h1 {
    font-size: 2.2rem;
  }

  .img-content p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }

  .img-background {
    height: auto;
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .img-content h1 {
    font-size: 1.8rem;
  }

  .img-content p {
    font-size: 0.95rem;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    font-size: 0.9rem;
  }
}









.section-2 {
  min-height: 100vh;
  padding: 80px 5% 100px 5%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.section-2Content {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.section-2Content h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #c33bff, #5a81f9, #13b0f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.5rem;
  color: #7464ae;
  margin: 0 auto;
  line-height: 1.6;
}

.info-content h2 {
  color: rgb(0, 153, 255);
  margin: 30px 0px;
  font-size: 42px;
}

.pees {
  margin: 30px 0px 30px 0px;
  color: rgba(255, 255, 255, 0.671);
}

.blob-box {
  display: flex;
}

body,
h2,
p {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

.image-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doted-box-1 {
  position: absolute;
  top: -30px;
  left: -30px;
  height: 120px;
  width: 120px;
  background-image: radial-gradient(#8b5cf6 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: -1;
}

.triangle {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 0;
  height: 0;
  border-left: 30px solid #3b82f6;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  opacity: 0.6;
  z-index: -1;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.icons-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.icon-box {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.icon-box:hover::before {
  transform: scaleX(1);
}

.icon-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(139, 92, 246, 0.2);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.icon-box:hover .icon-wrapper {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  transform: scale(1.1);
}

.icon-wrapper img {
  width: 32px;
  height: 32px;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.icon-box:hover .icon-wrapper img {
  filter: brightness(0) invert(1);
}

.icon-box h2 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.icon-box p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}


@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .image-container {
    transform: none;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-2 {
    padding: 60px 5% 80px 5%;
  }
  
  .icons-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .icon-box {
    padding: 24px 20px;
  }
}











.upcoming-events {
  padding: 80px 10%;
  background: #ffffff;
  color: #333;
  text-align: center;
}

.upcoming-events h1 {
  font-size: 48px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #c33bff, #5a81f9, #13b0f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.event-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.event-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.event-card {
  background: #f9f9f9;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  max-width: 520px;
  flex: 1;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
}

.event-video video,
.event-flyer img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(14, 11, 17, 0.2);
  transition: transform 0.3s ease;
}

.event-video video:hover,
.event-flyer img:hover {
  transform: scale(1.02);
}

.event-details {
  text-align: left;
  margin-top: 16px;
}

.event-details h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #222;
}

.event-details p {
  margin: 4px 0;
  color: #555;
  font-size: 16px;
}

@media (max-width: 768px) {
  .upcoming-events h1 {
    font-size: 32px;
  }

  .event-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }

  .event-content {
    flex-direction: column;
  }

  .event-card {
    width: 100%;
  }
}


.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  animation: fadeIn 0.4s ease;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}





















.section-3 {
  height: 65vh;
  padding: 100px 10% 0 10%;
  background: #ffffff;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

.executive-section {
  padding: 4rem 5%;
  background: #ffffff;
}

.rectangle {
  display: flex;
  background: #07041b;
  border-radius: 1.5rem;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 20px 40px rgba(7, 4, 27, 0.3);
  margin-bottom: 100px;
}

.rectangle-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.text-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  max-width: 550px;
  position: relative;
  z-index: 3;
  text-align: left;
}

.text-content > * {
  position: relative;
  z-index: 4;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #fff, #d4c9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.executive-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #7464ae;
  line-height: 1.3;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 100%;
  color: #e0d9ff;
}

.btn-box-2 {
  margin-top: 1.5rem;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  background: linear-gradient(90deg, #c33bff, #5a81f9, #13b0f6);
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  color: #07041b;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(19, 176, 246, 0.3);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #07041b;
  z-index: -1;
  transition: width 0.5s ease;
  border-radius: 12px;
}

.cta-button:hover {
  color: #ffffff;
}

.cta-button:hover::before {
  width: 100%;
}

.business-img {
  flex: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 535px;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  transition: transform 0.5s ease;
}

.rectangle:hover .business-img {
  transform: scale(1.02);
}

.outlineCircle-1,
.outlineCircle-2 {
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  border: 35px solid rgba(42, 0, 78, 0.7);
  z-index: 1;
}

.outlineCircle-1 {
  top: -40px;
  left: -40px;
}

.outlineCircle-2 {
  bottom: -150px;
  right: -2px;
}

.doted-box {
  position: absolute;
  top: 30px;
  right: 50px;
  height: 100px;
  width: 140px;
  background-color: rgba(128, 114, 219, 0.2);
  background-image: radial-gradient(rgba(7, 4, 27, 0.6) 6px, transparent 6px);
  background-size: 11px 10px;
  z-index: 1;
}


@media (max-width: 1024px) {
  .rectangle-content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .text-content {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .text-content {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .business-img {
    border-radius: 0 0 1.5rem 1.5rem;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .cta-button {
    width: 160px;
    height: 48px;
    font-size: 1rem;
    margin: 0 auto;
  }
}





















.section-5 {
  min-height: 100vh;
  background: #07041b;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 120px 0 80px;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wave-lines-1,
.wave-lines-2 {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wave-lines-1 {
  left: 0;
  width: 600px;
}

.wave-lines-2 {
  right: 0;
  width: 600px;
}

.wave-lines-1 svg,
.wave-lines-2 svg {
  height: 100%;
  width: auto;
  display: block;
  position: absolute;
  top: 0;
}

.wave-lines-1 svg {
  left: 0;
}

.wave-lines-2 svg {
  right: 0;
}

.wave-path {
  stroke: #c33bff;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 12s ease-in-out infinite, shimmer 4s ease-in-out infinite, floatPath 16s ease-in-out infinite;
}

.wave-path:nth-child(even) {
  animation-delay: 1s;
}

.wave-path:nth-child(odd) {
  animation-delay: 0.5s;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1500;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1500;
  }
}

@keyframes shimmer {
  0%, 100% {
    stroke-opacity: 0.8;
    filter: drop-shadow(0 0 5px #c33bff);
  }
  50% {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 15px #c33bff);
  }
}

@keyframes floatPath {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.section-5-content {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-5-header {
  margin-bottom: 60px;
  max-width: 900px;
}

.section-5-tag {
  display: inline-block;
  background: rgba(136, 44, 255, 0.2);
  color: #a67dff;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(136, 44, 255, 0.3);
  box-shadow: 0 4px 15px rgba(136, 44, 255, 0.15);
}

.section-5-title {
  font-size: clamp(36px, 5vw, 55px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #c33bff, #5a81f9, #13b0f6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text 8s linear infinite;
}

@keyframes gradient-text {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.section-5-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin-bottom: 40px;
}

.card-slider {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.card-container {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 100px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  transition: all 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
  transition: height 0.6s ease;
}

.card:hover::before {
  height: 70%;
}

.card-content {
  color: white;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.card-icon {
  background: linear-gradient(135deg, #c33bff, #5a81f9);
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(136, 44, 255, 0.3);
  flex-shrink: 0;
}

.card-description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  transition-delay: 0.2s;
}

.card-description h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-description p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 5px;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + label {
  flex: 3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-10px);
  border: 1px solid rgba(136, 44, 255, 0.3);
}

input[type="radio"]:checked + label .card-description {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1024px) {
  .section-5 {
    padding: 100px 0 60px;
  }
  .card-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .section-5-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .card-container {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }
  .card {
    height: 200px;
    margin: 0;
    width: 100%;
  }
  input[type="radio"]:checked + label {
    height: 300px;
  }
  .card-description {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .section-5-tag {
    font-size: 12px;
    padding: 6px 16px;
  }
  .section-5-title {
    font-size: 32px;
  }
  .section-5-description {
    font-size: 16px;
  }
}





























.professional-growth {
  padding: 100px 5%;
  background: #07041b;
  position: relative;
  overflow: hidden;
}

.content-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
}

.professional-growth .text-content {
  flex: 1;
  max-width: 600px;
  color: #ffffff;
  padding: 0;
}

.professional-growth .text-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
  background: linear-gradient(70deg, #c33bff, #5a81f9, #13b0f6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.professional-growth .text-content p,
.professional-growth .text-content ul li {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
}

.professional-growth .text-content ul {
  padding-left: 0;
  list-style-type: none;
}

.professional-growth .image-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.professional-growth .main-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.professional-growth .main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.professional-growth .main-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(195, 59, 255, 0.1), rgba(19, 176, 246, 0.1));
  pointer-events: none;
}

.professional-growth .sub-image {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 45%;
  height: auto;
  border-radius: 20px;
  background: #07041b;
  padding: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.professional-growth .sub-image img {
  width: 100%;
  border-radius: 15px;
}


@media (max-width: 1024px) {
  .content-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .professional-growth {
    padding: 70px 5%;
  }
  
  .content-container {
    flex-direction: column-reverse;
  }
  
  .professional-growth .text-content {
    max-width: 100%;
  }
  
  .professional-growth .image-content {
    margin-bottom: 40px;
    width: 100%;
  }
  
  .professional-growth .sub-image {
    bottom: -15px;
    right: -15px;
  }
}

@media (max-width: 480px) {
  .professional-growth {
    padding: 50px 5%;
  }
  
  .professional-growth .text-content h1 {
    font-size: 28px;
  }
  
  .professional-growth .sub-image {
    bottom: -10px;
    right: -10px;
    width: 40%;
  }
}










.about {
  position: relative;
  background: #07041b;
  padding: 9rem 2rem;
  text-align: center;
  overflow: hidden;
  height: 85vh;
  z-index: 1;
}

.wave-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 0;
  opacity: 1;                  
  pointer-events: none;
}

.wavy-lines path {
  stroke: #882cff;
  stroke-width: 1;
  filter: drop-shadow(0 0 3px #882cff) drop-shadow(0 0 6px #882cff)
          drop-shadow(0 0 12px #882cff);
  animation: waveFloat 10s linear infinite;
}
.wavy-lines path:nth-child(2)  { animation-delay: 1s;  }
.wavy-lines path:nth-child(3)  { animation-delay: 2s;  }
.wavy-lines path:nth-child(4)  { animation-delay: 3s;  }
.wavy-lines path:nth-child(5)  { animation-delay: 4s;  }
.wavy-lines path:nth-child(6)  { animation-delay: 5s;  }
.wavy-lines path:nth-child(7)  { animation-delay: 6s;  }
.wavy-lines path:nth-child(8)  { animation-delay: 7s;  }
.wavy-lines path:nth-child(9)  { animation-delay: 8s;  }
.wavy-lines path:nth-child(10) { animation-delay: 9s;  }
.wavy-lines path:nth-child(11) { animation-delay: 10s; }

@keyframes waveFloat {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(15px); }
  100% { transform: translateX(0); }
}


.about-content h1 {
  font-size: 3rem;
  background: linear-gradient(10deg, #c33bff, #5a81f9, #13b0f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 2rem;
  z-index: 2;
  position: relative;
  line-height: 1.2;
}

.about h2 {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.5rem;
  color: #ffffff;
  z-index: 2;
  position: relative;
  line-height: 1.6;
}

.btn-box-3 {
  margin-top: 2rem;
  z-index: 2;
  position: relative;
}

.btn-box-3 .cta-button,
.btn-box-3 .word {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #882cff;
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(136, 44, 255, 0.3);
}

.btn-box-3 .cta-button:hover,
.btn-box-3 .word:hover {
  background-color: #5c1aaf;
  transform: translateY(-3px);
}


@media (max-width: 1024px) {
  .about {
    padding: 7rem 2rem;
    height: auto;               
  }
  .about-content h1 {
    font-size: 2.6rem;
  }
  .about h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 6rem 1.5rem;
  }
  .wave-lines {
    height: 220px;              
  }
  .about-content h1 {
    font-size: 2.2rem;
  }
  .about h2 {
    font-size: 1.2rem;
  }
  .btn-box-3 .cta-button {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 5rem 1rem;
  }
  .about-content h1 {
    font-size: 1.8rem;
  }
  .about h2 {
    font-size: 1rem;
  }
  .btn-box-3 .cta-button {
    width: 100%;
    max-width: 280px;
    font-size: 0.9rem;
  }
}



.ceo {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem 9rem 0;
  background-color: #f9f9f9;
  gap: 2rem;
  position: relative;
  flex-direction: row;
}

.ceo-word {
  flex: 1 1 400px;
  max-width: 600px;
}

.ceo-word h2 {
  font-size: 1.75rem;
  color: #4a0072;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ceo-word h2 .effects {
  color: #882cff;
  font-weight: 700;
  transition: color 0.3s ease;
}

.ceo-word h2 .effects:hover {
  color: #5c1aaf;
}

.ceo-word p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

.ceo-img {
  flex: 1 1 300px;
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  align-self: flex-end;
  margin-bottom: -0.2px;
}



@media (max-width: 1024px) {
  .ceo {
    padding: 3rem 4rem 2rem;
  }

  .ceo-word h2 {
    font-size: 1.6rem;
  }

  .ceo-word p {
    font-size: 1rem;
  }

  .ceo-img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .ceo {
    flex-direction: column;
    padding: 3rem 2rem;
  }

  .ceo-word {
    max-width: 100%;
    text-align: center;
  }

  .ceo-img {
    align-self: center;
    max-width: 80%;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .ceo {
    padding: 2rem 1rem;
  }

  .ceo-word h2 {
    font-size: 1.4rem;
  }

  .ceo-word p {
    font-size: 0.95rem;
  }

  .ceo-img {
    max-width: 100%;
  }
}

