/* ================= GLOBAL ================= */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #1a1a1a;
}

/* ================= HERO SECTION ================= */

.service-hero {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, #0a1f44, #123d7a);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

/* Soft glowing abstract lights */

.service-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(30,144,255,0.25);
    filter: blur(140px);
    top: -150px;
    right: -150px;
}

.service-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0,198,255,0.2);
    filter: blur(120px);
    bottom: -120px;
    left: -120px;
}

.service-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge-custom {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.service-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Buttons */

.hero-buttons {
    margin-top: 35px;
}

.btn-primary-custom {
    background: linear-gradient(90deg,#1e90ff,#00c6ff);
    padding: 14px 34px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.btn-outline-custom {
    padding: 14px 34px;
    border-radius: 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s ease;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #0a1f44;
}

/* ================= MOBILE 576px ================= */



/* Buttons */

.hero-buttons {
    margin-top: 30px;
}

.btn-primary-custom {
    background: linear-gradient(90deg,#1e90ff,#00c6ff);
    padding: 14px 30px;
    border-radius: 40px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.btn-outline-custom {
    padding: 14px 30px;
    border-radius: 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #0a1f44;
}

/* Hero Image */

.hero-img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

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

/* ================= MOBILE 576px ================= */


/* ================= INFO SECTION ================= */

.service-info {
    padding: 100px 0;
    background: #f4f7fc;
}

.service-info img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.service-info img:hover {
    transform: scale(1.03);
}

.info-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #0a1f44;
}

.info-list li i {
    color: #1e90ff;
    margin-right: 10px;
}

/* ================= RESPONSIVE ================= */



/* ================= VIDEO BOX ================= */

.video-box {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.video-box video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.video-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 60px rgba(0,0,0,0.25);
}

/* Optional subtle overlay for premium look */
.video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,31,68,0.2),
        rgba(10,31,68,0.05)
    );
    pointer-events: none;
}

/* ================= MOBILE 576px ================= */

@media (max-width:576px){

.video-box {
    border-radius: 15px;
}

}

/* ================= MOBILE ≤576px ================= */
@media (max-width:576px){

  /* HERO SECTION */
 

  /* INFO SECTION */
  .service-info{
    padding: 60px 15px;
  }

  .info-content h2{
    font-size: 22px;
    margin-bottom: 15px;
  }

  .info-content p{
    font-size: 14px;
    line-height: 1.6;
  }

  /* VIDEO */
  .video-box video{
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* LIST */
  .info-list{
    padding-left: 0;
  }

  .info-list li{
    font-size: 14px;
    margin-bottom: 8px;
  }

  .info-list i{
    margin-right: 6px;
  }

}

@media (max-width:576px){

  .service-hero{
    padding: 70px 15px 60px 15px;
    height: auto;          /* IMPORTANT */
    min-height: auto;      /* Prevent forced height */
  }

  .service-hero h1{
    font-size: 26px;
    line-height: 1.3;
  }

  .service-hero p{
    font-size: 14px;
    margin-top: 10px;
  }

}