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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
    }
    
    html{
    scroll-behavior:smooth;
    }
    
    body{
    font-family:'Poppins',sans-serif;
    background:#f8fbff;
    color:#0f172a;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    }
    
    /* =========================================
    CONTAINER
    ========================================= */
    
    .container{
    width:90%;
    max-width:1350px;
    margin:auto;
    }
    
    /* =========================================
    TOPBAR
    ========================================= */
    
    .topbar{
    background:
    linear-gradient(90deg,#2563eb,#38bdf8);
    
    padding:12px 0;
    color:white;
    font-size:14px;
    }
    
    .topbar-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    }
    
    .top-contact{
    display:flex;
    gap:30px;
    }
    
    .top-contact span{
    display:flex;
    align-items:center;
    gap:10px;
    }
    
    .top-socials{
    display:flex;
    gap:18px;
    }
    
    .top-socials a{
    color:white;
    transition:0.3s;
    }
    
    .top-socials a:hover{
    opacity:0.8;
    }
    
    /* =========================================
    NAVBAR
    ========================================= */
    
    .navbar{
    position:sticky;
    top:0;
    z-index:999;
    background:
    rgba(255,255,255,0.82);
    backdrop-filter:blur(18px);
    padding:22px 0;
    border-bottom:none;
    box-shadow:
    0 8px 30px rgba(0,0,0,0.04);
    }
    
    .nav-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    }
    
    /* LOGO */
    
    .logo-wrap{
    display:flex;
    align-items:center;
    gap:18px;
    }
    
    .logo{
    width:88px;
    }
    
    .logo-text{
    max-width:260px;
    }
    
    .logo-text h2{
    font-size:28px;
    font-weight:700;
    color:#0f172a;
    line-height:1.15;
    }
    
    .logo-text p{
    font-size:13px;
    color:#64748b;
    margin-top:4px;
    }
    
    /* NAV LINKS */
    
    .nav-links{
    display:flex;
    gap:34px;
    }
    
    .nav-links a{
    font-size:15px;
    font-weight:500;
    color:#0f172a;
    transition:0.3s;
    position:relative;
    }
    
    .nav-links a:hover{
    color:#2563eb;
    }

    
    
    /* BUTTON */
    
    .primary-btn{
    display:inline-block;
    background:
    linear-gradient(135deg,#38bdf8,#2563eb);
    color:white;
    padding:15px 30px;
    border-radius:16px;
    font-weight:600;
    transition:0.4s;
    box-shadow:
    0 15px 35px rgba(37,99,235,0.25);
    }
    
    .primary-btn:hover{
    transform:translateY(-3px);
    box-shadow:
    0 25px 45px rgba(37,99,235,0.35);
    }
    
    .secondary-btn{
    display:inline-block;
    padding:15px 30px;
    border-radius:16px;
    border:1.5px solid rgba(37,99,235,0.2);
    background:white;
    color:#2563eb;
    font-weight:600;
    transition:0.4s;
    }
    
    .secondary-btn:hover{
    background:#2563eb;
    color:white;
    }
    
    /* =========================================
    HERO
    ========================================= */
    
    .hero-section{
        position:relative;
        padding:120px 0 100px;
        overflow:hidden;
        background:
        linear-gradient(
        rgba(248,251,255,0.72),
        rgba(237,246,255,0.76)
        ),
        
        url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=1600&auto=format&fit=crop');
        
        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;
        border-bottom:none;
        }

    .hero-section::before{
        content:'';
        position:absolute;
        inset:0;
        background:
        linear-gradient(
        90deg,
        rgba(255,255,255,0.25) 1px,
        transparent 1px
        );
        background-size:120px 120px;
        opacity:0.35;
        pointer-events:none;
        }
            
    .hero-section .container{
        position:relative;
        z-index:2;
    }
                
    /* BLURS */
    
    .hero-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.5;
    }
    
    .blur-one{
    width:300px;
    height:300px;
    background:#38bdf8;
    top:-100px;
    left:-100px;
    }
    
    .blur-two{
    width:320px;
    height:320px;
    background:#2563eb;
    right:-120px;
    bottom:-120px;
    }
    
    /* GRID */
    
    .hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:70px;
    align-items:center;
    }
    
    /* HERO CONTENT */

.hero-content{

    max-width:620px;
    }
    
    /* BADGE */
    
    .hero-badge{ 
    display:inline-flex;  
    align-items:center;  
    gap:10px;   
    padding:12px 18px;   
    border-radius:999px;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(10px);
    font-size:14px;  
    font-weight:500; 
    color:#2563eb; 
    margin-bottom:30px;
    }
    
    /* HEADING */
    
    .hero-content h1{  
    font-size:30px;   
    font-weight:600;   
    line-height:1.6;    
    letter-spacing:2px;  
    color:#393e46;
    margin-bottom:34px;
    max-width:620px;
    }
    
    /* PARAGRAPH */
    
    .hero-para{
    font-size:17px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:22px;
    max-width:590px;
    }
    /* POINTS */
    
    .hero-points{
    margin:35px 0;
    display:flex;
    flex-direction:column;
    gap:18px;
    }
    
    .hero-point{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:500;
    color:#0f172a;
    }
    
    .hero-point i{
    color:#2563eb;
    }
    
    /* BUTTONS */
    
    .hero-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
    }
    
    /* STATS */
    
    .hero-stats{
    display:flex;
    gap:20px;
    margin-top:50px;
    }
    
    .hero-stat-card{
    background:
    rgba(255,255,255,0.7);
    
    backdrop-filter:blur(18px);
    padding:24px;
    border-radius:24px;
    box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
    }
    
    .hero-stat-card h3{
    font-size:34px;
    color:#2563eb;
    margin-bottom:8px;
    }
    
    .hero-stat-card p{
    font-size:14px;
    color:#64748b;
    }
    
    /* IMAGE */
    
    .hero-image-wrap{
    position:relative;
    }
    
    .hero-main-image{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:34px;
    box-shadow:
    0 30px 70px rgba(0,0,0,0.12);
    }
    
    /* FLOATING CARD */
    
    .floating-card{
    position:absolute;
    left:-40px;
    bottom:50px;
    display:flex;
    align-items:center;
    gap:18px;
    
    background:
    rgba(255,255,255,0.7);
    backdrop-filter:blur(18px);
    padding:24px;
    border-radius:24px;
    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
    }
    
    .floating-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    linear-gradient(135deg,#38bdf8,#2563eb);
    color:white;
    
    font-size:22px;
    }
    
    .floating-card h4{
    font-size:18px;
    margin-bottom:5px;
    }
    
    .floating-card p{
    font-size:14px;
    color:#64748b;
    }
    
    /* =========================================
    SECTION
    ========================================= */
    
    section{
    padding:100px 0;
    }
    
    /* =========================================
    SECTION TITLE
    ========================================= */
    
    .section-heading{
    text-align:center;
    margin-bottom:70px;
    }
    
    .section-heading span{
    display:inline-block; 
    padding:10px 18px; 
    border-radius:50px; 
    background:#dbeafe; 
    color:#2563eb; 
    font-size:13px;
    font-weight:700; 
    letter-spacing:1px;
    margin-bottom:18px;
    }
    
    .section-heading h2{
    font-size:42px;
    line-height:1.2;
    max-width:850px;
    margin:auto;
    }
    
    /* =========================================
    SERVICES
    ========================================= */
    
    .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    }
    
    .service-card{
    position:relative;
    padding:48px;
    border-radius:32px;
    background:white;
    overflow:hidden;

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

    transition:
    transform .35s ease,
    box-shadow .35s ease;

    transform:translateZ(0);
    backface-visibility:hidden;
    will-change:transform;
}

.service-card:hover{
    transform:
    translate3d(0,-10px,0);

    box-shadow:
    0 30px 60px rgba(0,0,0,0.08);
}

    .service-card i{
    font-size:34px;
    color:#2563eb;
    margin-bottom:25px;
    background:none !important;
    border:none;
    width:auto;
    height:auto;
    display:block;
    }
    
    .service-card h3{
    font-size:24px;
    font-weight:700;
    line-height:1.3;
    }
    
    .service-card p{
    font-size:15px;
    line-height:1.9;
    color:#64748b;
    }

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

.philosophy-section{
    position:relative;
}

.philosophy-subtitle{
    max-width:700px;
    margin:25px auto 0;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* CARD */

.philosophy-grid{
    margin-top:120px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.philosophy-card{
    position:relative;
    background:white;
    border-radius:32px;
    padding:80px 35px 40px;
    box-shadow:0 20px 50px rgba(0,0,0,.05);
    border-top:4px solid #2563eb;
}

.philosophy-icon{
    width:120px;
    height:120px;
    border-radius:50%;
    background:white;
    position:absolute;
    top:-60px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:46px;
    color:#2563eb;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.card-number{
    width:55px;
    height:55px;
    border-radius:18px;
    background:linear-gradient(135deg,#38bdf8,#2563eb);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:25px;
}

.philosophy-card h3{
    font-size:34px;
    margin-bottom:30px;
    color:#0f172a;
}

.philosophy-card ul{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.philosophy-card li{
    position:relative;
    list-style:none;
    padding-left:40px;
    color:#475569;
    line-height:1.8;
}

.philosophy-card li::before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#2563eb;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}


/* FOOTER BAR */

.philosophy-footer{
    margin-top:60px;

    background:white;

    border-radius:30px;

    padding:30px;

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

    gap:20px;

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

.footer-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    font-weight:600;
    color:#0f172a;
}

.footer-item i{
    width:50px;
    height:50px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eff6ff;

    color:#2563eb;
}

/* =========================================
CAREER JOURNEY
========================================= */

.journey-section{
    position:relative;
    overflow:hidden;
}

.journey-subtitle{
    max-width:760px;
    margin:20px auto 0;
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

.journey-roadmap{
    position:relative;

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

    gap:30px;

    margin-top:80px;
}

.roadmap-line{
    position:absolute;

    top:58px;
    left:12%;

    width:76%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #38bdf8,
        #2563eb
    );

    border-radius:50px;
}

.roadmap-item{
    position:relative;
    z-index:2;
}

.roadmap-year{
    text-align:center;

    font-size:34px;
    font-weight:800;

    color:#2563eb;

    margin-bottom:18px;
}

.roadmap-dot{
    width:24px;
    height:24px;

    background:#2563eb;

    border-radius:50%;

    margin:0 auto 25px;

    border:6px solid white;

    box-shadow:
    0 0 0 8px rgba(37,99,235,.12);
}

.roadmap-card{
    background:white;

    padding:28px;

    border-radius:24px;

    text-align:center;

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

    transition:.35s;
}

.roadmap-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(37,99,235,.12);
}

.roadmap-card h3{
    font-size:20px;
    margin-bottom:12px;
}

.roadmap-card p{
    font-size:15px;
    line-height:1.8;
    color:#64748b;
}

@media(max-width:900px){

.journey-roadmap{
    grid-template-columns:1fr;
}

.roadmap-line{
    display:none;
}

.roadmap-dot{
    margin-bottom:18px;
}

}

/* =========================================
PREMIUM FORM
========================================= */

.premium-input{
    width:100%;
    padding:18px 22px;
    border:none;
    outline:none;
    background:
    rgba(255,255,255,0.8);
    
    border:
    1px solid rgba(203,213,225,0.5);
    border-radius:18px;
    font-family:'Poppins';
    font-size:15px;
    transition:0.3s;
    box-shadow:
    0 8px 25px rgba(0,0,0,0.03);
    }
    
    .premium-input:focus{
    border-color:#38bdf8;
    box-shadow:
    0 0 0 4px rgba(56,189,248,0.15);
    transform:translateY(-2px);
    }
    
    .premium-textarea{
    height:180px;
    resize:none;
    }
    

/* =========================================
CHAT WIDGET
========================================= */

.chat-widget{
    position:fixed;
    right:28px;
    bottom:28px;
    z-index:99999;
}

/* CHAT BUTTON */

.chat-btn{
    width:72px;
    height:72px;

    border:none;
    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #38bdf8,
    #2563eb
    );

    color:white;
    font-size:24px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 25px 60px rgba(37,99,235,0.35);

    transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.chat-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 30px 70px rgba(37,99,235,0.45);
}

/* POPUP */

.chat-popup{
    display:none;

    position:absolute;
    right:0;
    bottom:92px;

    width:360px;

    background:white;

    padding:28px;

    border-radius:30px;

    box-shadow:
    0 35px 80px rgba(0,0,0,0.14);

    overflow:hidden;
}

.chat-popup.active{
    display:block;
    animation:chatFade .35s ease;
}

/* HEADER */

.chat-header{
    position:relative;
    margin-bottom:25px;
    padding-right:55px;
}

.chat-header h3{
    font-size:28px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:6px;
}

.chat-header p{
    font-size:15px;
    color:#64748b;
    line-height:1.7;
}

/* CLOSE BUTTON */

#chatClose{
    position:absolute;
    top:0;
    right:0;

    width:38px;
    height:38px;

    border:none;

    background:#f1f5f9;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    color:#64748b;
    font-size:16px;

    transition:.3s ease;
}

#chatClose:hover{
    background:#2563eb;
    color:white;
    transform:rotate(90deg);
}

/* FORM */

.chat-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* INPUTS */

.premium-input{
    width:100%;

    padding:18px 22px;

    border:1px solid #e2e8f0;

    border-radius:18px;

    font-size:15px;

    transition:.3s ease;

    outline:none;
}

.premium-input:focus{
    border-color:#38bdf8;

    box-shadow:
    0 0 0 4px rgba(56,189,248,0.12);
}

.premium-textarea{
    resize:none;
    min-height:130px;
}

/* SEND BUTTON */

.chat-form .primary-btn{
    width:100%;
    border:none;
    cursor:pointer;
    text-align:center;
}

/* ANIMATION */

@keyframes chatFade{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* MOBILE */

@media(max-width:480px){

.chat-widget{
    right:15px;
    bottom:15px;
}

.chat-popup{
    width:320px;
}

}

/* =========================================
DIFFERENT HERO BACKGROUNDS
========================================= */

.home-hero{
    background:
    linear-gradient(
    rgba(255,255,255,0.82),
    rgba(255,255,255,0.82)
    ),
    url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    }
    
    .about-hero{
    background:
    linear-gradient(
    rgba(255,255,255,0.84),
    rgba(255,255,255,0.84)
    ),
    url('https://images.unsplash.com/photo-1588776814546-daab30f310ce?q=80&w=1600&auto=format&fit=crop'); 
    background-size:cover;
    background-position:center;
    }
    
    .services-hero{
    background:
    linear-gradient(
    rgba(255,255,255,0.84),
    rgba(255,255,255,0.84)
    ),
    url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    }
    
    .insights-hero{
    background:
    linear-gradient(
    rgba(255,255,255,0.84),
    rgba(255,255,255,0.84)
    ),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;   
    background-position:center;  
    }

/* =========================================
PREMIUM EFFECTS
========================================= */

.hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
    background-size:80px 80px;
    pointer-events:none;
    }
    
    .service-card:hover{
    border:
    1px solid rgba(56,189,248,0.18);
    box-shadow:
    0 30px 60px rgba(37,99,235,0.08),
    0 0 0 1px rgba(56,189,248,0.08);
    }
    
    .glass-card{
    background:
    rgba(255,255,255,0.65);
    backdrop-filter:blur(18px);
    border:
    1px solid rgba(255,255,255,0.4);
    box-shadow:
    0 20px 45px rgba(0,0,0,0.05);
    }
    
    .service-card h3{
    transition:0.3s;
    }
    
    .service-card:hover h3{
    color:#2563eb;
    }
    
    ::selection{
    background:#2563eb;
    color:white;
    }
    
    .primary-btn{
    display:inline-block;
    background:
    linear-gradient(
        135deg,
        #38bdf8,
        #2563eb
    );
    color:white;
    padding:15px 30px;
    border-radius:16px;
    font-weight:600;
    transition:
    transform .35s ease,
    box-shadow .35s ease;
    box-shadow:
    0 15px 35px rgba(37,99,235,.25);
}

.primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:
    0 25px 45px rgba(37,99,235,.35);
}
    
    .hero-image-wrap{
    overflow:visible;
    }
    
    .hero-main-image{
    transition:0.6s ease;
    }

    .hero-image-wrap:hover .hero-main-image{
    transform:scale(1.03);
    }
    
    body::before{
    content:'';
    position:fixed;
    inset:0;
    background-image:
    url("https://www.transparenttextures.com/patterns/noise.png");
    opacity:0.03;
    pointer-events:none;
    z-index:9999;
    }
    
    section::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(203,213,225,0.5),
    transparent
    );
    }

    .navbar a{
        position:relative;
        text-decoration:none;       
        transition:0.3s ease;
        }

        .navbar a::after{
            content:'';
            position:absolute;
            left:0;
            bottom:-6px;
            width:0;
            height:2px;
            background:linear-gradient(
            90deg,
            #38bdf8,
            #2563eb
            );
            border-radius:10px;
            transition:width 0.3s ease;
            }

            .navbar a:hover::after{
                width:100%;
                }

/* =========================================
RESPONSIVE — 1100px (tablets/small laptops)
========================================= */

@media(max-width:1100px){

    .hero-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-main-image{
        height:500px;
    }

    .floating-card{
        left:10px;
    }

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

    .philosophy-grid{
        grid-template-columns:1fr 1fr;
        margin-top:80px;
    }

    .section-heading h2{
        font-size:36px;
    }

}

/* =========================================
RESPONSIVE — 900px
========================================= */

@media(max-width:900px){

    .philosophy-footer{
        grid-template-columns:1fr 1fr;
    }

    .timeline::before{
        left:20px;
    }

    .timeline-item{
        flex-direction:column !important;
        align-items:flex-start;
        padding-left:60px;
    }

    .timeline-dot{
        left:20px;
    }

    .timeline-year{
        width:auto;
        margin-bottom:15px;
        text-align:left;
        font-size:38px;
    }

    .timeline-content{
        width:100%;
    }

    div[style*="grid-template-columns:repeat(4,1fr)"]{
        grid-template-columns:1fr 1fr !important;
    }

    .hero-section{
        padding:80px 0 70px;
    }

    section{
        padding:80px 0;
    }

}
