/* ==========================================================
   FP CONSULTING
   Enterprise SAP Solution Architect
   Version 2.0
========================================================== */

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

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

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{

    font-family:"Inter",sans-serif;

    color:#1F2937;

    background:#F8FAFC;

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
}

/* =========================
   DESIGN TOKENS
========================= */

:root{

    --primary:#0A6ED1;
    --primary-dark:#0757A6;

    --accent:#18C6FF;

    --secondary:#071C2C;

    --background:#F8FAFC;

    --surface:#ffffff;

    --text:#1F2937;

    --text-light:#6B7280;

    --border:#E5E7EB;

    --radius-sm:8px;
    --radius:18px;
    --radius-lg:28px;

    --shadow-sm:0 4px 10px rgba(0,0,0,.05);
    --shadow:0 12px 30px rgba(0,0,0,.08);
    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --transition:.35s ease;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,h2,h3,h4,h5{

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

    font-weight:700;

    color:var(--secondary);

}

h1{

    font-size:4rem;

    line-height:1.1;

}

h2{

    font-size:3rem;

}

h3{

    font-size:2rem;

}

p{

    color:var(--text-light);

    margin-bottom:1rem;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    max-width:100%;

    display:block;

}

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

.container{

    max-width:1240px;

}

/* =========================
   NAVBAR
========================= */

.navbar{

    padding:18px 0;

    background:rgba(7,28,44,.85);

    backdrop-filter:blur(18px);

    transition:all .4s ease;

}

.navbar-scrolled{

    background:#071C2C;

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

}

.nav-link{

    color:#ffffff;

    font-weight:500;

    margin-left:18px;

}

.nav-link:hover{

    color:var(--accent);

}

.header-actions{

    display:flex;

    gap:10px;

    align-items:center;

}

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

.btn{

    border-radius:999px;

    padding:14px 28px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    border:none;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.5);

}

.btn-outline-light:hover{

    background:#ffffff;

    color:var(--secondary);

}

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
        radial-gradient(circle at top right,
        rgba(24,198,255,.25),
        transparent 40%),
        linear-gradient(
            135deg,
            #071C2C,
            #0A6ED1
        );

    color:#ffffff;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.04) 1px,
            transparent 1px),
        linear-gradient(
            90deg,
            rgba(255,255,255,.04) 1px,
            transparent 1px);

    background-size:40px 40px;

    opacity:.3;

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

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

    backdrop-filter:blur(12px);

    margin-bottom:28px;

    color:#ffffff;

    font-size:.9rem;

}

.hero h1{

    color:#ffffff;

    margin-bottom:12px;

}

.hero h2{

    color:#BDEBFF;

    font-size:2rem;

    margin-bottom:24px;

}

.hero p{

    color:#E2E8F0;

    max-width:640px;

    font-size:1.15rem;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:36px;

    flex-wrap:wrap;

}

.hero-technologies{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:48px;

}

.hero-technologies span{

    padding:10px 18px;

    border-radius:999px;

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

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

    color:#ffffff;

    font-size:.9rem;

}

.hero-photo{

    position:relative;

    max-width:420px;

    margin:0 auto;

}

.hero-photo img{

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}
		
/* ==========================================================
   SECTIONS
========================================================== */

.section{

    padding:110px 0;

    position:relative;

}

.section-light{

    background:#ffffff;

}

.section-dark{

    background:#071C2C;

    color:white;

}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(10,110,209,.08);

    color:var(--primary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.section-title{

    font-size:48px;

    margin-bottom:20px;

}

.section-subtitle{

    max-width:760px;

    margin:auto;

    color:var(--text-light);

    font-size:20px;

}

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

.about-highlights{

    margin-top:50px;

}

.highlight{

    display:flex;

    align-items:flex-start;

    gap:24px;

    margin-bottom:40px;

}

.highlight i{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:white;

    font-size:30px;

    flex-shrink:0;

}

.highlight h5{

    margin-bottom:8px;

    font-size:22px;

}

.highlight p{

    margin:0;

}

/* ==========================================================
   STATISTICS
========================================================== */

.stats-wrapper{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.stat-card{

    background:white;

    border-radius:22px;

    padding:45px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    border:1px solid var(--border);

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.stat-card h2{

    color:var(--primary);

    font-size:56px;

    margin-bottom:10px;

}

.stat-card span{

    color:var(--text-light);

    font-weight:500;

}

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

.service-card{

    background:white;

    border-radius:24px;

    padding:45px;

    box-shadow:var(--shadow);

    transition:all .35s ease;

    height:100%;

    border:1px solid var(--border);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.service-icon{

    width:85px;

    height:85px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:white;

    font-size:34px;

    margin-bottom:30px;

}

.service-card h4{

    margin-bottom:20px;

}

.service-card p{

    margin:0;

}

/* ==========================================================
   TECHNOLOGY CLOUD
========================================================== */

.tech-cloud{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

    margin-top:60px;

}

.tech-cloud span{

    padding:14px 24px;

    border-radius:40px;

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

    color:white;

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

    transition:all .3s;

}

.tech-cloud span:hover{

    background:var(--accent);

    color:#071C2C;

    transform:translateY(-6px);

}

/* ==========================================================
   CERTIFICATIONS
========================================================== */

.cert-card{

    background:white;

    border-radius:24px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:all .35s ease;

    height:100%;

    border:1px solid var(--border);

}

.cert-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.cert-card i{

    width:85px;

    height:85px;

    border-radius:50%;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:white;

    font-size:34px;

    margin-bottom:25px;

}

.cert-card h5{

    margin-bottom:15px;

}

/* ==========================================================
   PORTFOLIO
========================================================== */

.portfolio-card{

    overflow:hidden;

    border-radius:24px;

    background:white;

    box-shadow:var(--shadow);

    transition:.35s;

}

.portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.portfolio-image{

    overflow:hidden;

}

.portfolio-image img{

    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-content{

    padding:35px;

}
		
/* ==========================================================
   TIMELINE
========================================================== */

.timeline{

    position:relative;

    max-width:1100px;

    margin:80px auto 0;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    bottom:0;

    width:4px;

    background:linear-gradient(
        var(--primary),
        var(--accent)
    );

    transform:translateX(-50%);

}

.timeline-item{

    position:relative;

    width:46%;

    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:var(--shadow);

    margin-bottom:40px;

}

.timeline-item:nth-child(odd){

    margin-right:auto;

}

.timeline-item:nth-child(even){

    margin-left:auto;

}

.timeline-item::before{

    content:"";

    position:absolute;

    top:40px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:var(--accent);

    border:5px solid white;

    box-shadow:0 0 0 4px rgba(24,198,255,.25);

}

.timeline-item:nth-child(odd)::before{

    right:-52px;

}

.timeline-item:nth-child(even)::before{

    left:-52px;

}

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

.contact-section{

    background:linear-gradient(
        135deg,
        #071C2C,
        #0A6ED1
    );

    color:white;

    padding:120px 0;

}

.contact-section h2{

    color:white;

}

.contact-section p{

    color:#D7E4F3;

}

.contact-info{

    margin-top:40px;

}

.contact-info p{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.contact-info i{

    color:var(--accent);

    width:28px;

    font-size:20px;

}

.contact-section .form-control{

    border:none;

    border-radius:16px;

    padding:16px 20px;

    margin-bottom:20px;

    min-height:56px;

}

.contact-section textarea{

    min-height:180px;

    resize:vertical;

}

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

.footer{

    background:#050F19;

    color:#C8D4E2;

    padding:50px 0;

}

.footer h4{

    color:white;

    margin-bottom:10px;

}

.footer p{

    color:#9FB3C8;

    margin:0;

}

/* ==========================================================
   SCROLL TO TOP
========================================================== */

.scroll-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:56px;

    height:56px;

    border:none;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:white;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9999;

}

.scroll-top.visible{

    opacity:1;

    visibility:visible;

}

.scroll-top:hover{

    transform:translateY(-6px);

}

/* ==========================================================
   SCROLL ANIMATION
========================================================== */

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================================
   DARK MODE
========================================================== */

body.dark{

    background:#07131E;

    color:#F3F7FC;

}

body.dark .section-light,
body.dark .service-card,
body.dark .cert-card,
body.dark .stat-card,
body.dark .timeline-item,
body.dark .portfolio-card{

    background:#102232;

    color:white;

    border-color:#18384F;

}

body.dark p{

    color:#C7D4E2;

}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4,
body.dark h5{

    color:white;

}

body.dark .navbar{

    background:#06111B;

}

body.dark .footer{

    background:#030A12;

}

/* ==========================================================
   UTILITIES
========================================================== */

.shadow-hover{

    transition:.35s;

}

.shadow-hover:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.rounded-xl{

    border-radius:24px;

}

.bg-gradient{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

}

.text-gradient{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

.timeline::before{

left:30px;

}

.timeline-item{

width:calc(100% - 70px);

margin-left:70px !important;

}

.timeline-item::before{

left:-44px !important;

}

.hero{

text-align:center;

padding:140px 0 80px;

}

.hero-buttons{

justify-content:center;

}

.stats-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

h1{

font-size:2.8rem;

}

h2{

font-size:2.1rem;

}

.section{

padding:80px 0;

}

.hero-technologies{

justify-content:center;

}

.hero-photo{

margin-top:60px;

}

.header-actions{

margin-top:20px;

justify-content:center;

}

}

@media(max-width:576px){

.hero-buttons .btn{

width:100%;

}

.section-title{

font-size:2rem;

}

.timeline-item{

padding:25px;

}

}

/* ==========================================================
   PRINT
========================================================== */

@media print{

.navbar,
.scroll-top,
.hero-buttons,
footer{

display:none;

}

body{

background:white;

}

.section{

padding:20px 0;

}

}