 .celebration {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none; /* allow clicks through */
      overflow: hidden;
      display: none; /* show only when triggered */
      z-index: 9999;
    }

    .balloon, .confetti {
      position: absolute;
      will-change: transform, opacity;
      animation-fill-mode: forwards;
    }

    /* simple balloon look */
    /* .balloon {
      width: 36px;
      height: 48px;
      border-radius: 40% 40% 45% 45%;
      background: linear-gradient(135deg,#ff6b6b,#ffb86b);
      opacity: 0.95;
      transform-origin: center bottom;
      animation: floatUp 5s linear forwards;
    } */
    /* confetti small rectangles */
    .confetti {
      width: 10px;
      height: 18px;
      background: #ffd700;
      transform-origin: center;
      animation: fall 3s linear forwards;
    }

    @keyframes floatUp {
      0% { transform: translateY(80vh) rotate(-10deg) scale(0.8); opacity: 0; }
      10% { opacity: 1; }
      100% { transform: translateY(-15vh) rotate(10deg) scale(1); opacity: 0.95; }
    }
    @keyframes fall {
      0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
      100% { transform: translateY(100vh) rotate(600deg); opacity: 0; }
    }
    .content-image-split {
  padding: 34px 15px;
  /* background: #0f172a; */
  color: white;
}

.split-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.split-content p {
  /* color: #e2e8f0; */
  line-height: 1.6;
}

.gradient-title {
  font-size: 25px;
  /* background: linear-gradient(90deg, #8b5cf6, #ec4899, #f59e0b); */
  background:linear-gradient(90deg, #0d4569, #ec4899, #12416a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  color: #0f172a;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.grid-box i {
  font-size: 24px;
  margin-bottom: 8px;
}

.grid-box:hover {
  transform: translateY(-4px) scale(1.03);
}

@media(max-width: 992px) {
  .split-inner {
    grid-template-columns: 1fr;
  }
  .split-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}
/* Gradient Text */
.title2 {
   
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff6a00, #ee0979, #00c6ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 8s linear infinite;
}

/* Gradient Movement */
@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Smooth word fade */
.word {
    opacity: 0;
    transition: opacity 0.3s ease;
    display: inline-block;
}
.word.show {
    opacity: 1;
}
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s forwards;
}

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.left-slide-animation {
  animation: slideInFromLeft 1s ease-out forwards;
}
.split-grid1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 600px;
}
.grid-box1 {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.grid-box1:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Popup Styling */
.popup-overlay {
  display: none; /* default hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
}
.popup-box {
  background: white;
  color: #0f172a;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  border: 2px solid #a9225a;
}
.popup-box h2 {
  margin-bottom: 10px;
}
.popup-box .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}
/*---------------------technologies----------*/


    .section {
        text-align: center;
        padding: 40px 20px;
    }

    .section h2 {
        font-size: 28px;
        color: #00bfff;
        margin-bottom: 10px;
    }

    .section p {
        max-width: 800px;
        margin: 0 auto 30px;
        font-size: 16px;
        line-height: 1.5;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 29px;
        max-width: 1221px;
        margin: 0 auto;
    }

    .card {
		height: 219px;
        background: linear-gradient(45deg, #062241, #d94795);
        border-radius: 8px;
        padding: 20px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 15px rgba(0, 191, 255, 0.5);
    }

    .card img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .card h3 {
        color: #00bfff;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 14px;
        color: #fff;
        line-height: 1.4;
    }
    
    
    
    
  @media(max-width: 480px) {  
    .page-area {
    margin-top: 246px;
    }
}