/* ==========================================
   THE INCREMENTAL LLC
   Professional Corporate Website
   style.css
========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f5f7fb;

    color:#333;

    overflow-x:hidden;

    line-height:1.7;

}

/* ==========================================
   CONTAINER
========================================== */

.container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

/* ==========================================
   LINKS
========================================== */

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

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

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#0d6efd;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:46px;

    color:#061B42;

    margin-top:10px;

}

.section-title p{

    margin-top:20px;

    color:#666;

    font-size:18px;

    max-width:850px;

    margin-left:auto;

    margin-right:auto;

}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary{

    display:inline-block;

    padding:15px 36px;

    background:#1565C0;

    color:#fff;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:#0A2A66;

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-block;

    padding:15px 36px;

    border:2px solid #fff;

    color:#fff;

    border-radius:8px;

    margin-left:15px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#0A2A66;

}

/* ==========================================
   HEADER
========================================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(6,27,66,.95);

    backdrop-filter:blur(10px);

    z-index:9999;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

/* ==========================================
   LOGO
========================================== */

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:70px;

    height:70px;

    object-fit:contain;

    margin-right:15px;

}

.logo-text h2{

    color:#fff;

    font-size:26px;

}

.logo-text span{

    color:#FFC107;

    font-size:14px;

}

/* ==========================================
   NAVIGATION
========================================== */

nav ul{

    display:flex;

    align-items:center;

}

nav ul li{

    margin-left:35px;

}

nav ul li a{

    color:#fff;

    font-weight:500;

    transition:.3s;

}

nav ul li a:hover{

    color:#FFC107;

}

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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:linear-gradient(135deg,#061B42,#0D47A1);

}

/* Watermark Logo */

.hero-watermark{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:750px;

    opacity:.06;

    z-index:1;

}

.hero-watermark img{

    width:100%;

}

/* Hero Content */

.hero-content{

    position:relative;

    z-index:10;

    display:grid;

    grid-template-columns:1fr 420px;

    gap:80px;

    align-items:center;

}

.hero-left h1{

    font-size:72px;

    line-height:1.15;

    color:#fff;

}

.hero-left h1 span{

    color:#FFC107;

}

.subtitle{

    color:#FFD54F;

    font-size:18px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.hero-left p{

    margin:35px 0;

    color:#E5E5E5;

    font-size:20px;

    max-width:700px;

}

.hero-buttons{

    margin-top:40px;

}

/* ==========================================
   HERO RIGHT CARD
========================================== */

.hero-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:40px;

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.30);

    transition:.35s;

}

.hero-card:hover{

    transform:translateY(-8px);

}

.hero-card h3{

    font-size:30px;

    margin-bottom:20px;

    color:#FFC107;

}

.hero-card p{

    color:#F2F2F2;

    margin-bottom:25px;

    line-height:1.8;

}

.hero-card ul{

    padding-left:20px;

}

.hero-card ul li{

    margin-bottom:15px;

    color:#fff;

}

/* Hero Services List */

.hero-services{
    list-style:none;
    margin-top:30px;
}

.hero-services li{
    position:relative;
    padding-left:35px;
    margin:18px 0;
    font-size:22px;
    color:#ffffff;
}

.hero-services li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#FFC107;
    font-size:20px;
    font-weight:bold;
}


/* ==========================================
   ABOUT SECTION
========================================== */

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

    margin-top:60px;

}

.about-card{

    background:#fff;

    padding:40px;

    border-radius:16px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    border-top:5px solid #1565C0;

}

.about-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.about-card h3{

    color:#061B42;

    margin-bottom:20px;

    font-size:26px;

}

.about-card p{

    color:#666;

    line-height:1.9;

}

/* ==========================================
   SERVICES
========================================== */

.services{

    background:#F7F9FC;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.service-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#1565C0;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.service-card .icon{

    width:85px;

    height:85px;

    border-radius:50%;

    background:#EAF2FF;

    color:#1565C0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin:0 auto 25px;

}

.service-card h3{

    color:#061B42;

    margin-bottom:18px;

    font-size:26px;

}

.service-card p{

    color:#666;

    line-height:1.9;

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us{

    background:#fff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:60px;

}

.why-box{

    background:#fff;

    border-left:6px solid #FFC107;

    padding:35px;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.why-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.why-box h3{

    color:#061B42;

    margin-bottom:18px;

    font-size:24px;

}

.why-box p{

    color:#666;

    line-height:1.8;

}

/* ==========================================
   COMPANY HIGHLIGHTS
========================================== */

.stats{

    background:linear-gradient(135deg,#061B42,#0D47A1);

    color:#fff;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    text-align:center;

    background:rgba(255,255,255,.08);

    padding:45px 25px;

    border-radius:18px;

    backdrop-filter:blur(12px);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.stat-card h2{

    font-size:46px;

    color:#FFC107;

    margin-bottom:10px;

}

.stat-card span{

    font-size:18px;

    color:#F4F4F4;

}
/* ==========================================
   TECHNOLOGY SECTION
========================================== */

.technology{

    background:#ffffff;

}

.tech-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;

    margin-top:60px;

}

.tech-grid span{

    background:#f5f7fb;

    padding:18px 20px;

    text-align:center;

    border-radius:10px;

    font-weight:600;

    color:#061B42;

    border:1px solid #dce4ef;

    transition:.35s;

}

.tech-grid span:hover{

    background:#1565C0;

    color:#fff;

    transform:translateY(-6px);

    box-shadow:0 12px 25px rgba(21,101,192,.30);

}

/* ==========================================
   CAREERS PREVIEW
========================================== */

.careers-preview{

    background:#f7f9fc;

}

.career-box{

    max-width:850px;

    margin:auto;

    text-align:center;

    background:#fff;

    padding:60px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.career-box h3{

    font-size:34px;

    color:#061B42;

    margin-bottom:20px;

}

.career-box p{

    font-size:18px;

    color:#666;

    margin-bottom:20px;

}

/* ==========================================
   CALL TO ACTION
========================================== */

.cta{

    background:linear-gradient(135deg,#061B42,#1565C0);

    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:48px;

    margin-bottom:25px;

}

.cta p{

    font-size:20px;

    max-width:850px;

    margin:0 auto 40px;

    color:#f2f2f2;

}

/* ==========================================
   CONTACT PREVIEW
========================================== */

.contact-preview{

    background:#ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;

}

.contact-card{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card h3{

    color:#1565C0;

    margin-bottom:15px;

    font-size:24px;

}

.contact-card p{

    color:#666;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#061B42;

    color:#fff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer-about h3{

    margin-bottom:15px;

    color:#FFC107;

}

.footer-about p{

    color:#d9d9d9;

    line-height:1.8;

}

.footer-links h4,
.footer-services h4,
.footer-contact h4{

    color:#FFC107;

    margin-bottom:20px;

}

.footer-links ul li,
.footer-services ul li{

    margin-bottom:12px;

}

.footer-links a{

    color:#fff;

    transition:.3s;

}

.footer-links a:hover{

    color:#FFC107;

    padding-left:6px;

}

.footer-services ul li{

    color:#d9d9d9;

}

.footer-contact p{

    color:#d9d9d9;

    margin-bottom:15px;

}

.copyright{

    text-align:center;

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.15);

}

.copyright p{

    color:#cfd8dc;

    font-size:15px;

}

/* ==========================================
   SIMPLE FADE-IN ANIMATION
========================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================
   CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#e9edf4;

}

::-webkit-scrollbar-thumb{

    background:#1565C0;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0A2A66;

}

/* ==========================================
   IMAGE STYLING
========================================== */

img{

    max-width:100%;

    display:block;

}

/* ==========================================
   CARD TRANSITIONS
========================================== */

.about-card,
.service-card,
.why-box,
.contact-card,
.stat-card,
.tech-grid span{

    transition:all .35s ease;

}

/* ==========================================
   END OF STYLE.CSS
========================================== */
