/* ============================================================
   IT SOLUTIONS — PREMIUM FUTURISTIC THEME (Sixmoons)
   Hybrid: Dark Tech Hero + White Sections + Neon Blue Accents
============================================================ */

/* --------------------------------------------
   HERO — DARK FUTURISTIC
-------------------------------------------- */
.it-hero {
    height: 70vh;
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.it-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/its.png'); /* put your image */
    background-size: cover;
    background-position: center;
    transform: scale(1.18);
    filter: brightness(0.65) saturate(1.1);
    z-index: -2;
}

.it-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,20,60,0.85),
        rgba(0,86,209,0.78)
    );
    z-index: -1;
}

.it-hero-content h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    text-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.it-hero-content p {
    color: #dfe9ff;
    font-size: 18px;
    margin-top: 10px;
}



/* --------------------------------------------
   INTRO SECTION — MODERN TECH LOOK
-------------------------------------------- */
.it-intro {
    padding: 90px 0;
}

.tech-title {
    color: #003c99;
    font-weight: 800;
    font-size: 34px;
}

.text-tech {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.it-intro-image {
    height: 340px;
    background-image: url('../images/its.png');
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



/* --------------------------------------------
   PARALLAX BANNER — TECH FUTURE
-------------------------------------------- */
.it-parallax {
    height: 42vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.it-parallax-overlay {
    background: rgba(0,25,80,0.70);
    width: 100%;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.it-parallax-overlay h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    text-shadow: 0 8px 20px rgba(0,0,0,0.45);
}



/* --------------------------------------------
   TECH GRID — NEON CARD SYSTEM
-------------------------------------------- */
.tech-grid {
    padding: 100px 0;
}

.tech-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
    border-top: 4px solid #0056d1;
    transition: 0.35s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 55px rgba(0,0,0,0.16);
    border-top-color: #003c99;
}

.tech-card .tech-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
    color: #003c99;
}

.tech-card h4 {
    font-size: 20px;
    color: #003c99;
    font-weight: 700;
    margin-bottom: 8px;
}

.tech-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
}



/* --------------------------------------------
   FEATURES — PRO LOOK
-------------------------------------------- */
.it-features {
    padding: 90px 0;
}

.feature-box {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e6eaf5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.25s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.10);
}

.feature-box h4 {
    color: #003c99;
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-box p {
    color: #555;
    font-size: 14px;
}



/* --------------------------------------------
   CTA — DEMO
-------------------------------------------- */
.tech-cta {
    background: linear-gradient(135deg, #003c99, #0056d1);
}

.tech-cta .sm-cta-title {
    color: #fff !important;
}

.tech-cta .sm-cta-text {
    color: #e9f1ff !important;
}

.tech-cta .btn-cta {
    background: #ffcc00 !important;
    color: #003c99 !important;
    font-weight: 700;
}

.tech-cta .btn-cta:hover {
    background: #ffe680 !important;
}



/* --------------------------------------------
   RESPONSIVENESS
-------------------------------------------- */

@media(max-width: 768px) {
    .it-hero-content h1 { font-size: 34px; }
    .it-parallax-overlay h2 { font-size: 28px; }
}

@media(max-width: 575px) {
    .tech-card { padding: 22px; }
    .it-intro-image { height: 220px; }
    .it-hero { height: 55vh; }
}
    /* ============================================
   WEBSITE & APP DEVELOPMENT SECTION
============================================ */
.webapp-section {
    padding: 100px 0;
}

.webapp-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
    transition: 0.35s ease;
    border-top: 4px solid #0056d1;
}

.webapp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 55px rgba(0,0,0,0.16);
}

.webapp-img {
    height: 24rem;
    background-size: cover;
    background-position: center;
}

.webapp-content {
    padding: 26px;
    text-align: center;
}

.webapp-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #003c99;
    margin-bottom: 10px;
}

.webapp-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 18px;
}

.btn-webapp {
    padding: 10px 22px;
    background: #003c99;
    color: #fff;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-webapp:hover {
    background: #0056d1;
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 575px) {
    .webapp-img {
        height: 200px;
    }
}
