/* ================= HOME HERO ================= */
.home-hero{
    padding:90px 0;
    background:linear-gradient(135deg,#020617,#0f172a);
    color:#fff;
    overflow:hidden;
}

.hero-content h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:16px;
}

.hero-content p{
    font-size:17px;
    color:#cbd5e1;
    margin-bottom:26px;
    max-width:520px;
}

.hero-actions{
    display:flex;
    gap:16px;
    margin-bottom:32px;
}

.hero-stats{
    display:flex;
    gap:32px;
}

.hero-stats div strong{
    font-size:28px;
    color:#00e5ff;
}

.hero-stats div span{
    display:block;
    font-size:13px;
    color:#94a3b8;
}

.hero-image img{
    width:100%;
    max-width:520px;
    border-radius:22px;
    box-shadow:0 30px 60px rgba(0,0,0,.45);
}

/* MOBILE */
@media(max-width:991px){
    .home-hero{
        padding:70px 0;
        text-align:center;
    }
    .hero-content h1{
        font-size:34px;
    }
    .hero-actions{
        justify-content:center;
        flex-wrap:wrap;
    }
    .hero-stats{
        justify-content:center;
    }
    .hero-image{
        margin-top:40px;
    }
}
/* ================= HOME HERO ================= */
.home-hero{
    padding:90px 0;
    background:linear-gradient(135deg,#020617,#0f172a);
    color:#fff;
    overflow:hidden;
}

.hero-content h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:16px;
}

.hero-content p{
    font-size:17px;
    color:#cbd5e1;
    margin-bottom:26px;
    max-width:520px;
}

.hero-actions{
    display:flex;
    gap:16px;
    margin-bottom:32px;
}

.hero-stats{
    display:flex;
    gap:32px;
}

.hero-stats div strong{
    font-size:28px;
    color:#00e5ff;
}

.hero-stats div span{
    display:block;
    font-size:13px;
    color:#94a3b8;
}

/* ================= HERO IMAGE ================= */
.hero-image-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
}

.main-hero-img{
    width:100%;
    max-width:520px;
    border-radius:22px;
    box-shadow:0 30px 60px rgba(0,0,0,.45);
}

/* ================= FLOATING CARDS ================= */
.floating-card{
    position:absolute;
    background:#0f172a;
    color:#fff;
    padding:10px 14px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.4);
    animation: floatY 4s ease-in-out infinite;
}

.floating-card i{
    font-size:18px;
    color:#00e5ff;
}

/* CARD POSITIONS */
.card-ui{
    top:18%;
    left:-40px;
    animation-delay:0s;
}
@media screen {
  .card-ui{ top: 18%;
    left: -5px;
    animation-delay: 0s;
}
}
.card-web{
    top:45%;
    right:-50px;
    animation-delay:1.2s;
}

@media screen {
  .card-web{
    top: 45%;
    right: -5px;
    animation-delay: 1.2s;
}}

.card-photo{
    bottom:18%;
    left:-20px;
    animation-delay:2.4s;
}

@media screen {
  .card-photo{
    bottom: 18%;
    left: -7px;
    animation-delay: 2.4s;
}}

/* FLOAT ANIMATION */
@keyframes floatY{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-14px); }
}

/* ================= MOBILE ==========*
/* ================= HOME SERVICES SECTION ================= */
.home-services{
    padding:90px 0;
    background:#020617;
    color:#fff;
}

.section-head h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.section-head p{
    font-size:16px;
    color:#94a3b8;
    max-width:600px;
    margin:0 auto;
}

/* SERVICE CARD */
.service-box{
    background:#0f172a;
    border-radius:18px;
    padding:34px 26px;
    height:100%;
    transition:.35s ease;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(0,0,0,.55);
}

/* ICON */
.service-box .icon{
    width:56px;
    height:56px;
    border-radius:14px;
    background:rgba(0,229,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.service-box .icon i{
    font-size:26px;
    color:#00e5ff;
}

/* TEXT */
.service-box h4{
    font-size:20px;
    margin-bottom:10px;
}

.service-box p{
    font-size:14px;
    color:#cbd5e1;
    line-height:1.6;
}

/* MOBILE */
@media(max-width:991px){
    .section-head h2{
        font-size:30px;
    }
    .home-services{
        padding:70px 0;
        text-align:center;
    }
}

.home-services{
    padding:90px 0;
    background:#020617;
    color:#fff;
}

/* SECTION HEAD */
.section-head h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}
.section-head p{
    font-size:16px;
    color:#94a3b8;
    max-width:600px;
    margin:0 auto;
}

/* SERVICE CARD */
.service-box{
    background:#0f172a;
    border-radius:20px;
    overflow:hidden;
    padding:0 26px 34px;
    height:100%;
    transition:.35s ease;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
    position:relative;
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(0,0,0,.55);
}

/* IMAGE */
.service-img{
    width:100%;
    height:190px;
    overflow:hidden;
    border-radius:0 0 20px 20px;
}
.service-img img{
  margin-top: 10px;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}
.service-box:hover .service-img img{
    transform:scale(1.08);
}

/* ICON (FLOATING OVER IMAGE) */
.service-icon{
    width: 56px;
    height: 56px;
    background: #020617;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 18px;
    box-shadow: 0 10px 25px rgba(0, 229, 255, .35);
}
.service-icon i{
    font-size:26px;
    color:#00e5ff;
}

/* TEXT */
.service-box h4{
    font-size:20px;
    margin-bottom:10px;
    text-align:center;
}
.service-box p{
    font-size:14px;
    color:#cbd5e1;
    line-height:1.6;
    text-align:center;
}

/* MOBILE */
@media(max-width:991px){
    .home-services{
        padding:70px 0;
    }
    .section-head h2{
        font-size:30px;
    }
    .service-img{
        height:160px;
    }
}
/* ================= ABOUT COMPANY ================= */
.about-company{
    padding:100px 0;
    background:#020617;
    color:#fff;
}

/* IMAGE */
.company-image {
    background: #32809085;
    padding: 6px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgb(39 21 41 / 45%);
}

.company-image img{
    width:100%;
    border-radius:18px;
    object-fit:cover;
}

/* CONTENT */
.company-content h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.company-content .tagline{
    font-size:16px;
    color:#00e5ff;
    margin-bottom:22px;
}

.company-content p{
    font-size:16px;
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:18px;
    max-width:680px;
}

/* HIGHLIGHTS */
.company-highlights{
    margin-top:26px;
}

.company-highlights .highlight{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
    font-size:15px;
    color:#e5e7eb;
}

.company-highlights .highlight i{
    color:#22e7a1;
    font-size:18px;
}

/* MOBILE */
@media(max-width:991px){
    .about-company{
        padding:70px 0;
        text-align:center;
    }

    .company-content h2{
        font-size:32px;
    }

    .company-highlights{
        align-items:center;
    }

    .company-highlights .highlight{
        justify-content:center;
    }
}
/* ================= HOME SERVICES ================= */

.home-services{
    padding:80px 0;
    background:#020617;
}

.service-box{
    background:#0f172a;
    border-radius:18px;
    padding:22px;
    height:100%;
    position:relative;
    transition:.35s ease;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-img img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:14px;
}

.service-icon{
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(109, 40, 217, .35);
}

.service-box h4{
    margin:16px 0 6px;
    font-weight:700;
}

.service-sub{
    font-size:14px;
    color:#6b7280;
    margin-bottom:6px;
}

.service-desc{
    font-size:15px;
    color:#444;
}

.service-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:10px;
    font-weight:600;
    color:#6d28d9;
    text-decoration:none;
}

.service-link:hover{
    text-decoration:underline;
}
.service-icon{
    width:52px;
    height:52px;
    background:linear-gradient(135deg,#6d28d9,#9333ea);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-size:22px;
    margin:16px auto 0;
    box-shadow:0 8px 20px rgba(109,40,217,.35);
}
/* ================= BLOG SECTION ================= */
.home-blog{
  padding:80px 0;
  background:#0b1220;
}

.blog-card{
  background:#111827;
  border-radius:16px;
  overflow:hidden;
  height:100%;
  transition:all .3s ease;
}

.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.blog-img img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.blog-content{
  padding:22px;
}

.blog-date{
  font-size:13px;
  color:#9ca3af;
  display:inline-block;
  margin-bottom:8px;
}

.blog-content h4{
  color:#fff;
  font-size:18px;
  margin-bottom:10px;
  line-height:1.4;
}

.blog-content p{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.6;
}

.blog-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:10px;
  color:#38bdf8;
  font-weight:500;
  text-decoration:none;
}

.blog-link:hover{
  color:#22d3ee;
}
