/* ==========================
   GOOGLE FONT
========================== */


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#1d2433;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   HEADER
========================== */

.header{
    position:absolute;
    top:20px;
    left:0;
    width:100%;
    z-index:100;
}

.nav-container{
    background:#ffffff;
    border-radius:22px;
    padding:18px 28px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    box-shadow:
    0 2px 12px rgba(0,0,0,0.04);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;

    font-weight:700;
    font-size:18px;
}

.logo-icon{
    width:36px;
    height:36px;

    border-radius:50%;
    background:linear-gradient(
    135deg,
    #1678ff,
    #00d4ff
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
}

.blue{
    color:#247BFF;
}

.nav{
    display:flex;
    gap:28px;
}

.nav a{
    text-decoration:none;
    color:#4b5563;
    font-size:14px;
    font-weight:500;
}

.nav a:hover{
    color:#000;
}

.project-btn{
    text-decoration:none;

    background:#07132b;
    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;
}

/* ==========================
   HERO
========================== */

.hero{
    padding:100px 20px;
    text-align:center;

    background:
    linear-gradient(
    135deg,
    #d9fbf4 0%,
    #ffffff 40%,
    #d7f4ff 100%);
}

.badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:40px;
    background:#ffffff;
    border:1px solid #e8edf4;
    font-size:13px;
    color:#64748b;
    margin-bottom:25px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    max-width:900px;
    margin:auto;
}

.hero h1 span{
    color:#3878ff;
}

.hero p{
    margin-top:30px;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
    font-size:18px;
    color:#64748b;
}

/* ==========================
   STATS
========================== */

.stats{
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#f8fafc;
    border:1px solid #edf2f7;
    border-radius:20px;
    padding:35px;
}

.stat-card h2{
    font-size:42px;
    color:#1e3a8a;
}

.stat-card p{
    color:#64748b;
}

/* ==========================
   PHILOSOPHY
========================== */

.philosophy{
    padding:100px 0;
}

.philosophy-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
}

.section-tag{
    color:#5b7cff;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.philosophy h2{
    margin-top:15px;
    font-size:52px;
    line-height:1.2;
}

.philosophy p{
    margin-bottom:20px;
    color:#64748b;
}

/* ==========================
   TIMELINE
========================== */

.timeline{
    background:#f7fafe;
    padding:120px 0;
}

.timeline h2{
    font-size:52px;
    margin-bottom:70px;
}

.timeline-wrapper{
    position:relative;
    padding-left:50px;
}

.timeline-wrapper::before{
    content:"";
    position:absolute;
    left:12px;
    top:0;
    width:3px;
    height:100%;
    background:#d9e4ff;
}

.timeline-item{
    position:relative;
    margin-bottom:60px;
}

.timeline-item::before{
    content:"";
    position:absolute;
    left:-47px;
    top:8px;
    width:25px;
    height:25px;
    border-radius:50%;
    border:3px solid #4f7cff;
    background:#fff;
}

.timeline-item h4{
    color:#4f7cff;
    margin-bottom:8px;
}

.timeline-item h3{
    margin-bottom:10px;
    font-size:28px;
}

.timeline-item p{
    color:#64748b;
}

/* ==========================
   VALUES
========================== */

.values{
    padding:110px 0;
}

.values h2{
    font-size:50px;
    margin-bottom:50px;
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.value-card{
    background:#fff;
    border:1px solid #e7edf6;
    border-radius:18px;
    padding:30px;
}

.value-card h3{
    margin-bottom:15px;
}

.value-card p{
    color:#64748b;
}

/* ==========================
   INDUSTRIES
========================== */

.industries{
    background:#f7fafe;
    padding:120px 0;
}

.industries h2{
    font-size:52px;
    margin-bottom:50px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    border:1px solid #e9eef6;
}

.industry-card h3{
    margin-bottom:15px;
}

.industry-card p{
    color:#64748b;
}

/* ==========================
   CTA
========================== */

.cta-section{

padding:120px 0;

background:#ffffff;
}

.cta-box{

border-radius:32px;

padding:70px;

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

background:
linear-gradient(
90deg,
#3b82f6 0%,
#0ea5e9 50%,
#14b8a6 100%
);

color:#fff;
}

.cta-left h2{

font-size:64px;

line-height:1.05;

margin-bottom:20px;

font-weight:800;
}

.cta-left p{

max-width:550px;

line-height:1.8;

opacity:.95;
}

.cta-right{

display:flex;

gap:15px;
}

.cta-btn-primary{

background:#fff;

color:#111827;

padding:16px 28px;

border-radius:999px;

text-decoration:none;

font-weight:700;
}

.cta-btn-secondary{

padding:16px 28px;

border-radius:999px;

border:1px solid rgba(255,255,255,.4);

color:white;

text-decoration:none;
}

/* ==========================
   FOOTER
========================== */

.footer{

    background:#F7F9FC;

    border-top:1px solid #E6EDF5;

    padding-top:90px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:60px;
}

.footer-logo{

    display:flex;
    align-items:center;

    gap:10px;

    margin-bottom:25px;
}

.footer-logo-icon{

    width:34px;
    height:34px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #0A84FF,
    #18D2D7
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;
    font-weight:700;
}

.footer-logo span{

    font-size:22px;
    font-weight:700;
}

.footer-about p{

    color:#667085;

    line-height:1.8;

    margin-bottom:30px;
}

.newsletter{

    display:flex;

    background:white;

    border:1px solid #E7EDF5;

    border-radius:999px;

    overflow:hidden;

    max-width:340px;
}

.newsletter input{

    flex:1;

    border:none;

    outline:none;

    padding:14px 18px;
}

.newsletter button{

    border:none;

    background:#0A84FF;

    color:white;

    padding:0 20px;

    cursor:pointer;
}

.socials{

    display:flex;
    gap:12px;

    margin-top:25px;
}

.socials a{

    width:36px;
    height:36px;

    border-radius:50%;

    background:white;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#08142B;

    font-size:13px;

    border:1px solid #E7EDF5;
}

.footer-column{

    display:flex;
    flex-direction:column;
}

.footer-column h4{

    margin-bottom:24px;

    font-size:18px;
}

.footer-column a{

    margin-bottom:14px;

    color:#667085;

    line-height:1.6;
}

.footer-bottom{

    border-top:1px solid #E6EDF5;

    margin-top:70px;

    padding:30px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#667085;
}

.footer-links-bottom{

    display:flex;
    gap:18px;
}

.footer-links-bottom a{
    color:#667085;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

    .footer-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

    .cta-banner{
        flex-direction:column;
        text-align:center;
    }

}

@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-banner{
        padding:40px 25px;
    }

}
.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

/* Center Line */
.timeline-wrapper::after {
    content: "";
    position: absolute;
    width: 4px;
    background: #2563eb;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 45%;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 50px;
}

/* Left Side */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Right Side */
.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

/* Circle */
.timeline-item::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #2563eb;
    border: 4px solid #fff;
    border-radius: 50%;
    top: 30px;
    z-index: 2;
}

/* Left Circle */
.timeline-item:nth-child(odd)::before {
    right: -48px;
}

/* Right Circle */
.timeline-item:nth-child(even)::before {
    left: -48px;
}

.timeline-item h4 {
    color: #2563eb;
    font-size: 1rem;
    margin-bottom: 8px;
}

.timeline-item h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.timeline-item p {
    color: #666;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {

    .timeline-wrapper::after {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 60px);
        left: 50px !important;
        text-align: left;
    }

    .timeline-item::before {
        left: -39px !important;
        right: auto;
    }
}
.footer-column a{
    text-decoration: none;
}

@media (max-width:768px){

/* Navbar */
.nav,
.project-btn{
    display:none;
}

.nav-container{
    justify-content:center;
}

.logo img{
    width:10rem !important;
    height:auto !important;
}
}