/* ================= HOME SECTION ================= */

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  background: linear-gradient(135deg, #0f172a, #020617);
}

/* MAIN HERO WRAPPER */
.home-content {
  width: 100%;
  max-width: 1300px;
  padding: 60px;
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(72, 202, 228, 0.15);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* FLEX CONTAINER */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ================= LEFT TEXT ================= */

.hero-text {
  flex: 1.2;
}

.hero-text h1 {
  font-size: 3rem;
  color: #f8fafc;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #48cae4;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 520px;
}

/* ================= BUTTONS ================= */
/* BUTTON CONTAINER */
.home-buttons {
  margin-top: 35px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* COMMON BUTTON STYLE */
.btn {
  position: relative;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 35px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.35s ease;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(72,202,228,0.25);
}

/* PRIMARY BUTTON */
.btn.primary {
  background: linear-gradient(135deg, #48cae4, #00b4d8);
  color: #020617;
  box-shadow: 0 10px 25px rgba(72,202,228,0.35);
}

/* PRIMARY HOVER */
.btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(72,202,228,0.6);
}

/* SECONDARY BUTTON */
.btn.secondary {
  background: rgba(255,255,255,0.04);
  color: #48cae4;
}

/* SECONDARY HOVER */
.btn.secondary:hover {
  background: #48cae4;
  color: #020617;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(72,202,228,0.35);
}

/* DOWNLOAD BUTTON SPECIAL EFFECT */
.btn.download-btn {
  background: linear-gradient(135deg, #00b4d8, #48cae4);
  color: #020617;
  position: relative;
}

/* Subtle Shine Animation */
.btn.download-btn::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 200%;
  top: -50%;
  left: -60%;
  background: rgba(255,255,255,0.3);
  transform: rotate(25deg);
  transition: 0.6s;
}

.btn.download-btn:hover::before {
  left: 120%;
}


/* ================= IMAGE SIDE ================= */
.hero-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* COMMON IMAGE STYLE */
.hero-images img {
  width: 190px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;

  border: 2px solid rgba(72,202,228,0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);

  transition: 0.4s ease;
}

/* CENTER IMAGE BIGGER */
.img2 {
  width: 230px;
  height: 280px;
  border: 2px solid #48cae4;
}

/* Hover Effect */
.hero-images img:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 45px rgba(72,202,228,0.35);
}


/* ===== Hover Animation ===== */

.hero-images:hover .img1 {
  transform: rotate(-4deg) translateY(-12px);
  opacity: 1;
}

.hero-images:hover .img2 {
  transform: scale(1.1);
}

.hero-images:hover .img3 {
  transform: rotate(4deg) translateY(-12px);
  opacity: 1;
}

.hero-images::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(72,202,228,0.25);
  filter: blur(110px);
  border-radius: 50%;
  z-index: 0;
}
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.img2 {
  animation: floatImage 4s ease-in-out infinite;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .intro-text {
    margin: auto;
  }

  .hero-images {
    margin-top: 40px;
  }

  .hero-images img {
    width: 180px;
    height: 220px;
  }
}
.highlight {
  background: linear-gradient(135deg, #48cae4, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}
