/* ===================================
   IRC INFOSPARKS LLP
   Global Stylesheet
=================================== */

:root{
    --primary:#00D8FF;
    --secondary:#6C63FF;
    --dark:#081828;
    --dark-light:#0F2B4C;
    --text:#5f6b7a;
    --light:#f8fafc;
    --white:#ffffff;
}

/* ===================================
   GENERAL
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    overflow-x:hidden;
    background:#fff;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.section-padding{
    padding:100px 0;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    color:var(--dark);
}

.section-tag{
    display:inline-block;
    background:rgba(0,216,255,.08);
    color:var(--primary);
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:1px;
}

/* ===================================
   NAVBAR
=================================== */

#mainNav{
    transition:.4s ease;
    padding:18px 0;
    z-index:999;
}

#mainNav .navbar-brand{
    color:#fff;
}

#mainNav .navbar-brand small{
    font-size:12px;
    opacity:.8;
}

#mainNav .nav-link{
    color:#fff;
    font-weight:500;
    margin-left:10px;
    transition:.3s;
}

#mainNav .nav-link:hover{
    color:var(--primary);
}

#mainNav.scrolled{
    background:rgba(8,24,40,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 5px 25px rgba(0,0,0,.2);
    padding:12px 0;
}

/* ===================================
   HERO SECTION
=================================== */

.hero-section{
    min-height:100vh;
    padding-top:20px;
    background:linear-gradient(
        135deg,
        #081828,
        #102c4e,
        #17385f
    );
    position:relative;
    overflow:hidden;
}

@media (max-width: 991px){

    .hero-section{
        padding-top:100px;
    }

}

.hero-section::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(0,216,255,.12);
    border-radius:50%;
    filter:blur(120px);
    top:-200px;
    right:-100px;
}

.hero-section::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(108,99,255,.15);
    border-radius:50%;
    filter:blur(120px);
    bottom:-150px;
    left:-150px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    padding:10px 22px;
    border-radius:40px;
    color:#fff;
    margin-bottom:25px;
}

.hero-title{
    font-size:55px;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-desc{
    color:#d9d9d9;
    font-size:18px;
    line-height:1.8;
}

.hero-logo{
    max-width:420px;
    animation:float 5s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
}

/* ===================================
   BUTTONS
=================================== */

.btn-primary-custom{
    background:var(--primary);
    color:#000;
    font-weight:600;
    padding:14px 30px;
    border-radius:50px;
    display:inline-block;
    transition:.3s;
}

.btn-primary-custom:hover{
    transform:translateY(-3px);
    color:#000;
    box-shadow:0 15px 25px rgba(0,216,255,.25);
}

.btn-outline-custom{
    border:2px solid #fff;
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    display:inline-block;
    transition:.3s;
}

.btn-outline-custom:hover{
    background:#fff;
    color:#081828;
}

/* ===================================
   STATS
=================================== */

.stats-section{
    padding:80px 0;
    background:#fff;
}

.stats-section h2{
    font-size:52px;
    color:var(--primary);
    font-weight:700;
}

.stats-section p{
    color:var(--text);
    margin-top:10px;
}

/* ===================================
   ABOUT SECTION
=================================== */

.glass-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.glass-card:hover{
    transform:translateY(-8px);
}

.feature-list{
    padding-left:18px;
}

.feature-list li{
    margin-bottom:12px;
    color:var(--text);
}

/* ===================================
   SERVICES
=================================== */

.services-section{
    background:#f7f9fc;
    padding:100px 0;
}

.service-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.service-card i{
    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card h4{
    font-weight:600;
    margin-bottom:15px;
}

.service-card p{
    color:var(--text);
}

/* ===================================
   CTA SECTION
=================================== */

.cta-section{
    padding:120px 0;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
}

.cta-section h2{
    font-weight:700;
    font-size:48px;
}

/* ===================================
   FOOTER
=================================== */

.footer{
    background:#081828;
    color:#fff;
    padding:80px 0 20px;
}

.footer h5{
    margin-bottom:20px;
    font-weight:600;
    color:#fff;
}

.footer p{
    color:#c7d0db;
    line-height:1.8;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    list-style:none;
    margin-bottom:12px;
}

.footer-links a{
    color:#c7d0db;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--primary);
    padding-left:5px;
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.social-links a:hover{
    background:var(--primary);
    color:#000;
    transform:translateY(-5px);
}

.footer hr{
    border-color:rgba(255,255,255,.08);
    margin:40px 0 20px;
}

/* ===================================
   SCROLLBAR
=================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .hero-title{
        font-size:48px;
    }

    .hero-logo{
        max-width:280px;
        margin-top:50px;
    }

    .section-title{
        font-size:34px;
    }
}

@media(max-width:767px){

    .hero-title{
        font-size:38px;
    }

    .hero-desc{
        font-size:16px;
    }

    .section-padding{
        padding:70px 0;
    }

    .section-title{
        font-size:28px;
    }

    .stats-section h2{
        font-size:40px;
    }

    .cta-section h2{
        font-size:34px;
    }

    .service-card,
    .glass-card{
        padding:30px;
    }
}