
/* ===================================================
   BRAND TOKENS
   Primary:  #79afd8  (Static IQ Blue)
   Dark:     #5a96c5  (Blue hover / pressed)
   Black:    #111111
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    overflow-x:hidden;
    color:#111;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

img{
    max-width:100%;
    display:block;
}

/* ===================================================
   PRELOADER
=================================================== */

#preloader{
    position:fixed;
    width:100%;
    height:100vh;
    background:#fff;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
}

.loader{
    width:60px;
    height:60px;
    border:6px solid #eee;
    border-top:6px solid #79afd8;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* ===================================================
   HEADER
=================================================== */

header{
    width:100%;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    position:fixed;
    top:0;
    left:0;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:60px;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:#79afd8;
}

.call-btn{
    background:#79afd8;
    color:#fff;
    padding:12px 20px;
    border-radius:40px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.call-btn:hover{
    background:#111;
}

.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ===================================================
   HERO
=================================================== */

.hero{
    height:100vh;
    background:url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2070') center/cover;
    display:flex;
    align-items:center;
    position:relative;
    padding-top:100px;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:850px;
}

.hero-content h1{
    font-size:62px;
    line-height:82px;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content span{
    color:#79afd8;
}

.hero-content p{
    font-size:20px;
    line-height:34px;
    color:#eee;
}

.hero-btn{
    margin-top:40px;
    display:inline-block;
    padding:16px 42px;
    background:#79afd8;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.hero-btn:hover{
    background:#111;
}

/* ===================================================
   COMMON SECTION
=================================================== */

section{
    position:relative;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    color:#111;
    margin-bottom:20px;
}

.border{
    width:90px;
    height:4px;
    background:#79afd8;
    margin:0 auto 25px;
    border-radius:30px;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:32px;
    font-size:17px;
}

/* ===================================================
   OVERVIEW
=================================================== */

.overview{
    padding:120px 0;
    background:#fff;
}

.overview-content{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.overview-content p{
    font-size:18px;
    line-height:34px;
    color:#555;
    margin-bottom:30px;
}

.explore-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 38px;
    border-radius:40px;
    text-decoration:none;
    background:#111;
    color:#fff;
    font-weight:600;
    transition:0.3s;
}

.explore-btn:hover{
    background:#79afd8;
}

/* ===================================================
   SERVICES
=================================================== */

.services{
    padding:120px 0;
    background:#111;
    color:#fff;
}

.services .section-title h2,
.services .section-title p{
    color:#fff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#1d1d1d;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.service-card:hover{
    transform:translateY(-10px);
    background:#181818;
}

.service-card img{
    width:90px;
    margin:0 auto 25px;
}

.service-card h3{
    font-size:22px;
}

/* ===================================================
   INDUSTRIES
=================================================== */

.industries{
    padding:120px 0;
    background:#fff;
}

.industry-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.industry-card{
    width:180px;
    height:180px;
    transform:rotate(45deg);
    border-radius:35px;
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.industry-card:hover{
    transform:rotate(45deg) translateY(-10px);
}

.industry-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:50%;
    background:rgba(255,255,255,0.12);
}

.industry-content{
    position:absolute;
    inset:0;
    transform:rotate(-45deg);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.industry-content img{
    width:48px;
    margin-bottom:15px;
}

.industry-content h3{
    font-size:15px;
    line-height:22px;
    color:#fff;
    font-weight:700;
}

.blue{background:#145b8a;}
.orange{background:#d8861d;}
.red{background:#d72d2d;}
.green{background:#1c9c74;}
.purple{background:#6a49d8;}
.dark{background:#2d2d2d;}
.sky{background:#1a9ec7;}
.gold{background:#b88a11;}
.pink{background:#d2437f;}

/* ===================================================
   OPPORTUNITY
=================================================== */

.opportunity{
    padding:120px 0;
    background:url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2071') center/cover;
    position:relative;
    text-align:center;
    color:#fff;
}

.opportunity::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.7);
}

.opportunity .container{
    position:relative;
    z-index:2;
}

.opportunity h2{
    font-size:48px;
    margin-bottom:20px;
}

.opportunity p{
    font-size:20px;
    line-height:34px;
    margin-bottom:15px;
}

.opportunity span{
    color:#79afd8;
}

.apply-btn{
    display:inline-block;
    margin-top:25px;
    padding:16px 40px;
    background:#79afd8;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.apply-btn:hover{
    background:#111;
}

/* ===================================================
   CLIENTS
=================================================== */

.clients{
    padding:120px 0;
    background:#f8f8f8;
}

/* ===================================================
   CLIENTS  —  styles live in index.html inline block
=================================================== */

/* ===================================================
   CTA
=================================================== */

.cta{
    padding:100px 20px;
    background:#111;
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:48px;
    margin-bottom:25px;
}

.cta p{
    max-width:760px;
    margin:auto;
    line-height:34px;
    color:#ddd;
    font-size:18px;
}

.cta a{
    display:inline-block;
    margin-top:35px;
    padding:15px 40px;
    background:#79afd8;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.cta a:hover{
    background:#fff;
    color:#111;
}

/* ===================================================
   FOOTER
=================================================== */

footer{
    background:#000;
    color:#fff;
}

.footer-top{
    padding:80px 0 50px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3{
    margin-bottom:25px;
    font-size:22px;
}

.footer-col p,
.footer-col a,
.footer-col li{
    color:#ccc;
    text-decoration:none;
    list-style:none;
    line-height:32px;
    transition:0.3s;
}

.footer-col a:hover{
    color:#79afd8;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:#1a1a1a;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:0.3s;
}

.social-icons a:hover{
    background:#79afd8;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:25px 0;
    text-align:center;
}

.footer-logo{
    width:180px;
    margin-top:15px;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:1100px){

    .service-grid,
    .client-slider,
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:991px){

    .hero-content h1{
        font-size:46px;
        line-height:64px;
    }

    .industry-card{
        width:160px;
        height:160px;
    }

    .nav-links{
        gap:18px;
    }

}

@media(max-width:768px){

    .navbar{
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    .nav-right{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        display:none;
        margin-top:20px;
    }

    .nav-right.active{
        display:flex;
    }

    .nav-links{
        flex-direction:column;
        width:100%;
    }

    .hero{
        text-align:center;
    }

    .hero-content h1{
        font-size:34px;
        line-height:50px;
    }

    .hero-content p{
        font-size:16px;
        line-height:28px;
    }

    .section-title h2,
    .cta h2,
    .opportunity h2{
        font-size:36px;
    }

    .service-grid,
    .client-slider,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .industry-row{
        gap:40px;
    }

    .industry-card{
        width:140px;
        height:140px;
    }

    .industry-content h3{
        font-size:13px;
        line-height:18px;
    }

}


/* ===================================================
   CAREERS PAGE
=================================================== */

.single-page-header{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:220px 0 80px;
    text-align:center;
    color:#fff;
    position:relative;
}

.single-page-header::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.52);
}

.single-page-header .container{
    position:relative;
    z-index:2;
}

.banner_h2{
    font-size:48px;
    font-weight:300;
    color:#fff;
    letter-spacing:1px;
}

.banner_h2 span{
    color:#79afd8;
    font-weight:700;
}

.careers-jobs{
    padding:80px 0 100px;
    background:#f7f7f7;
}

/* ===================================================
   CONTACT PAGE
=================================================== */

.contact-hero{
    position:relative;
    background:
        linear-gradient(rgba(0,0,0,0.70),rgba(0,0,0,0.70)),
        url('../images/about/about-header.png');
    background-size:cover;
    background-position:center;
    padding:220px 0 130px;
}

.contact-hero h1{
    color:#fff;
    font-size:64px;
    font-weight:800;
    margin-bottom:18px;
}

.contact-hero h1 span{
    color:#79afd8;
}

.contact-hero p{
    color:#ddd;
    font-size:20px;
    line-height:36px;
    max-width:600px;
}

.contact-tag{
    color:#79afd8;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.contact-section{
    padding:120px 0;
    background:#f7f8fc;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1.6fr;
    gap:60px;
    align-items:start;
}

.contact-info-card{
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    display:flex;
    align-items:flex-start;
    gap:22px;
    box-shadow:0 8px 28px rgba(0,0,0,0.07);
    margin-bottom:24px;
    transition:transform 0.3s;
}

.contact-info-card:hover{
    transform:translateY(-6px);
}

.ci-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:#e8f2fa;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#79afd8;
    flex-shrink:0;
}

.ci-text h4{
    font-size:17px;
    font-weight:700;
    margin-bottom:6px;
    color:#111;
}

.ci-text p,
.ci-text a{
    font-size:15px;
    color:#666;
    line-height:26px;
    text-decoration:none;
}

.ci-text a:hover{
    color:#79afd8;
}

.contact-form-box{
    background:#fff;
    border-radius:28px;
    padding:50px 45px;
    box-shadow:0 12px 40px rgba(0,0,0,0.08);
}

.contact-form-box h2{
    font-size:36px;
    font-weight:800;
    margin-bottom:8px;
    color:#111;
}

.contact-form-box > p{
    color:#888;
    font-size:15px;
    margin-bottom:35px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#444;
    margin-bottom:8px;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:14px 18px;
    border:2px solid #eee;
    border-radius:12px;
    font-size:15px;
    color:#111;
    background:#fafafa;
    outline:none;
    transition:border 0.3s;
    font-family:inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#79afd8;
    background:#fff;
}

.form-group textarea{
    resize:vertical;
    min-height:140px;
}

.submit-btn{
    display:inline-block;
    background:#79afd8;
    color:#fff;
    padding:16px 44px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    border:none;
    cursor:pointer;
    transition:0.3s;
    width:100%;
    text-align:center;
}

.submit-btn:hover{
    background:#111;
}

@media(max-width:991px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .banner_h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .contact-hero h1{
        font-size:40px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:35px 25px;
    }

    .single-page-header{
        padding:180px 0 60px;
    }

    .banner_h2{
        font-size:28px;
    }

}
