/* =========================
GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{

    background:
    radial-gradient(circle at top left,
    #1e3a8a 0%,
    #020617 45%,
    #000814 100%);

    color:white;

    overflow-x:hidden;
}

/* =========================
TOPBAR
========================= */

.topbar{

    width:100%;

    background:#00184a;

    padding:12px 5%;

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:35px;

    border-bottom:1px solid rgba(255,255,255,0.08);
}

.topbar div{

    display:flex;

    align-items:center;

    gap:8px;

    color:#dbeafe;

    font-size:14px;
}

.topbar i{

    color:#60a5fa;
}

/* =========================
NAVBAR
========================= */

.navbar{

    width:100%;

    height:95px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:14px 5%;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,0.08);

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.35);
}

/* =========================
LOGO
========================= */

.logo{

    display:flex;

    align-items:center;

    gap:15px;
}

.logo img{

    width:95px;

    height:60px;

    object-fit:contain;

    background:white;

    border-radius:12px;

    padding:5px 10px;

    border:1px solid rgba(255,255,255,0.15);

    box-shadow:
    0 8px 25px rgba(37,99,235,0.35);
}

.logo-text h2{

    font-size:24px;

    color:white;
}

.logo-text span{

    font-size:13px;

    color:#94a3b8;
}

/* =========================
NAV LINKS
========================= */

.nav-links{

    list-style:none;

    display:flex;

    align-items:center;

    gap:28px;
}

.nav-links li{

    position:relative;
}

.nav-links a{

    text-decoration:none;

    color:white;

    font-size:16px;

    font-weight:600;

    transition:0.3s;

    display:flex;

    align-items:center;

    gap:6px;

    position:relative;
}

.nav-links a:hover,
.nav-links .active{

    color:#60a5fa;
}

.nav-links a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#3b82f6;

    transition:0.3s;
}

.nav-links a:hover::after{

    width:100%;
}

/* =========================
DROPDOWN
========================= */

.dropdown-menu{

    position:absolute;

    top:50px;

    left:0;

    min-width:270px;

    background:#0f172a;

    border-radius:18px;

    padding:14px 0;

    display:none;

    flex-direction:column;

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.45);
}

.dropdown-menu a{

    padding:14px 22px;

    color:#e2e8f0;

    transition:0.3s;
}

.dropdown-menu a:hover{

    background:rgba(37,99,235,0.18);

    color:#60a5fa;

    padding-left:28px;
}

.dropdown:hover .dropdown-menu{

    display:flex;
}

/* =========================
DEMO BUTTON
========================= */

.demo-btn{

    background:
    linear-gradient(to right,#2563eb,#1d4ed8);

    color:white;

    text-decoration:none;

    padding:14px 26px;

    border-radius:14px;

    font-size:15px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:
    0 10px 30px rgba(37,99,235,0.45);

    transition:0.3s;
}

.demo-btn:hover{

    transform:translateY(-4px);
}

/* =========================
HERO
========================= */

.hero{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:90px 6%;

    min-height:90vh;

    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-left h1{

    font-size:74px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:800;
}

.hero-left h1 span{
    color:#60a5fa;
}

.hero-left p{

    font-size:20px;

    color:#cbd5e1;

    line-height:1.9;

    max-width:760px;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.primary-btn{

    background:linear-gradient(to right,#2563eb,#1d4ed8);

    border:none;

    padding:16px 32px;

    color:white;

    border-radius:14px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    text-decoration:none;

    box-shadow:0 10px 30px rgba(37,99,235,0.35);
}

.secondary-btn{

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    padding:16px 32px;

    color:white;

    border-radius:14px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    text-decoration:none;
}

/* =========================
RIGHT PANEL
========================= */

.hero-right{

    flex:1;

    display:flex;

    justify-content:center;
}

.framework-box{

    width:460px;

    background:rgba(255,255,255,0.05);

    border-radius:32px;

    padding:40px;

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    0 0 40px rgba(37,99,235,0.25);
}

.tech-stack{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:25px;
}

.tech-card{

    background:rgba(255,255,255,0.06);

    border-radius:20px;

    padding:22px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;
}

.tech-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(37,99,235,0.25);
}

.tech-card i{

    font-size:40px;

    color:#60a5fa;

    margin-bottom:15px;
}

/* =========================
SECTION
========================= */

.section{
    padding:90px 6%;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h4{

    color:#60a5fa;

    margin-bottom:12px;
}

.section-title h2{

    font-size:52px;
}

/* =========================
FEATURES
========================= */

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.feature-card{

    background:rgba(255,255,255,0.05);

    padding:35px;

    border-radius:28px;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;

    backdrop-filter:blur(16px);
}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(37,99,235,0.25);
}

.feature-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    font-size:32px;

    margin-bottom:25px;
}

.feature-card h3{

    margin-bottom:18px;

    font-size:24px;
}

.feature-card p{

    color:#cbd5e1;

    line-height:1.8;
}

/* =========================
PIPELINE
========================= */

.pipeline{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:20px;
}

.pipeline-step{

    background:rgba(255,255,255,0.05);

    padding:28px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(255,255,255,0.08);
}

.pipeline-step i{

    font-size:42px;

    color:#60a5fa;

    margin-bottom:15px;
}

/* =========================
JIRA
========================= */

.integration-box{

    margin-top:70px;

    background:rgba(255,255,255,0.05);

    padding:45px;

    border-radius:32px;

    border:1px solid rgba(255,255,255,0.08);

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;
}

.integration-list{

    display:flex;

    flex-direction:column;

    gap:18px;
}

.integration-list div{

    background:rgba(255,255,255,0.06);

    padding:18px;

    border-radius:16px;
}

/* =========================
CTA
========================= */

.cta{

    padding:90px 6%;

    text-align:center;
}

.cta-box{

    background:linear-gradient(135deg,#1d4ed8,#0f172a);

    padding:70px;

    border-radius:32px;

    box-shadow:0 20px 60px rgba(0,0,0,0.45);
}

.cta-box h2{

    font-size:52px;

    margin-bottom:20px;
}

.cta-box p{

    color:#dbeafe;

    max-width:800px;

    margin:auto;

    line-height:1.9;

    margin-bottom:35px;
}

/* =========================
FOOTER
========================= */

.footer{

    background:#00184a;

    text-align:center;

    padding:30px;

    color:#cbd5e1;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.hero{
    flex-direction:column;
    gap:80px;
}

.features-grid{
    grid-template-columns:1fr 1fr;
}

.pipeline{
    grid-template-columns:1fr 1fr;
}

.integration-box{
    grid-template-columns:1fr;
}

}

@media(max-width:992px){

.nav-links{
    display:none;
}

.hero-left h1{
    font-size:54px;
}

}

@media(max-width:768px){

.features-grid{
    grid-template-columns:1fr;
}

.pipeline{
    grid-template-columns:1fr;
}

.framework-box{
    width:100%;
}

.tech-stack{
    grid-template-columns:1fr;
}

.hero-left h1{
    font-size:42px;
}

.cta-box h2{
    font-size:36px;
}

.topbar{
    flex-direction:column;
    gap:10px;
}

}
