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

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f8fafc;
color:#1f2937;
line-height:1.7;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

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

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(15,23,42,.85);
backdrop-filter:blur(15px);
border-bottom:1px solid rgba(255,255,255,.1);
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:28px;
font-weight:700;
color:#fff;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav ul a{
text-decoration:none;
color:#fff;
font-weight:500;
transition:.3s;
}

nav ul a:hover{
color:#f97316;
}

.nav-btn{
background:#f97316;
padding:12px 22px;
border-radius:8px;
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.nav-btn:hover{
transform:translateY(-2px);
}

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

.hero{
position:relative;
overflow:hidden;
background:linear-gradient(135deg,#0f172a,#1e3a8a);
color:white;
padding:180px 0 120px;
}

.hero::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:#f97316;
filter:blur(180px);
opacity:.15;
top:-250px;
right:-100px;
border-radius:50%;
}

.hero::after{
content:'';
position:absolute;
width:400px;
height:400px;
background:#38bdf8;
filter:blur(180px);
opacity:.10;
left:-100px;
bottom:-100px;
border-radius:50%;
}

.hero-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:60px;
align-items:center;
}

.tag{
display:inline-block;
padding:8px 18px;
background:rgba(255,255,255,.1);
border-radius:50px;
margin-bottom:25px;
}

.hero h1{
font-size:64px;
line-height:1.1;
margin-bottom:25px;
font-weight:700;
}

.hero h1 span{
color:#f97316;
}

.hero p{
font-size:18px;
max-width:650px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
gap:15px;
margin-bottom:30px;
}

.hero-features{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.feature{
padding:10px 18px;
background:rgba(255,255,255,.1);
border-radius:30px;
}

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

.btn{
display:inline-block;
background:#f97316;
color:white;
padding:15px 28px;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.btn-outline{
display:inline-block;
border:2px solid white;
padding:13px 28px;
border-radius:10px;
color:white;
text-decoration:none;
transition:.3s;
}

.btn-outline:hover{
background:white;
color:#0f172a;
}

/* =========================
   DASHBOARD CARD
========================= */

.hero-card{
background:white;
padding:35px;
border-radius:24px;
color:#111827;
box-shadow:0 25px 50px rgba(0,0,0,.2);
animation:float 5s ease-in-out infinite;
}

@keyframes float{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-12px);
}
}

.hero-card h3{
margin-bottom:20px;
}

.metric{
display:flex;
justify-content:space-between;
padding:15px 0;
border-bottom:1px solid #e5e7eb;
}

.metric strong{
color:#1e3a8a;
}

/* =========================
   STATS
========================= */

.stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:-50px;
position:relative;
z-index:10;
}

.stat-box{
background:white;
padding:30px;
text-align:center;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stat-box h2{
color:#1e3a8a;
font-size:36px;
}

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

.section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#f97316;
font-weight:600;
letter-spacing:2px;
}

.section-title h2{
font-size:44px;
margin:15px 0;
}

.section-title p{
max-width:700px;
margin:auto;
}

/* =========================
   CARDS
========================= */

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
position:relative;
overflow:hidden;
transition:.4s;
}

.card::before{
content:'';
position:absolute;
top:0;
left:0;
height:4px;
width:0;
background:#f97316;
transition:.4s;
}

.card:hover::before{
width:100%;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.icon{
font-size:38px;
margin-bottom:15px;
}

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

.page-hero{
background:linear-gradient(135deg,#0f172a,#1e3a8a);
color:white;
padding:100px 0 80px;
text-align:center;
}

.page-hero span{
color:#f97316;
font-weight:600;
letter-spacing:2px;
}

.page-hero h1{
font-size:58px;
margin:20px 0;
}

.page-hero p{
max-width:800px;
margin:auto;
font-size:18px;
}

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

.about-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:50px;
}

.about-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-card ul{
list-style:none;
}

.about-card li{
padding:12px 0;
border-bottom:1px solid #eee;
}

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

.contact-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.contact-card{
background:white;
padding:35px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.contact-card:hover{
transform:translateY(-10px);
}

.contact-icon{
font-size:40px;
margin-bottom:15px;
}

.contact-section{
background:#f8fafc;
padding:100px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
}

.contact-form-box{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-box form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form-box input,
.contact-form-box textarea{
padding:15px;
border:1px solid #d1d5db;
border-radius:10px;
outline:none;
}

.contact-form-box button{
background:#f97316;
color:white;
border:none;
padding:15px;
border-radius:10px;
cursor:pointer;
font-size:16px;
font-weight:600;
}

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

.industries{
background:#f1f5f9;
padding:100px 0;
}

/* =========================
   CTA
========================= */

.cta{
position:relative;
overflow:hidden;
background:linear-gradient(135deg,#0f172a,#1e3a8a);
color:white;
text-align:center;
padding:100px 0;
}

.cta::before{
content:'';
position:absolute;
width:450px;
height:450px;
background:#f97316;
filter:blur(160px);
opacity:.15;
right:-150px;
top:-150px;
}

.cta h2{
font-size:48px;
margin-bottom:20px;
}

.cta p{
max-width:700px;
margin:auto auto 30px;
}

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

footer{
background:#0f172a;
color:white;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
padding:70px 0;
}

.footer-grid ul{
list-style:none;
}

.footer-grid li{
margin-bottom:10px;
}

.footer-grid a{
color:white;
text-decoration:none;
}

.copyright{
text-align:center;
padding:20px;
border-top:1px solid rgba(255,255,255,.1);
}

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

@media(max-width:992px){

.hero-grid,
.cards,
.stats,
.contact-grid,
.contact-cards,
.footer-grid,
.about-grid{
grid-template-columns:1fr;
}

.hero{
padding-top:100px;
}

.hero h1{
font-size:48px;
}

/* .page-hero h1{
font-size:42px;
} */

.page-hero{

    background:linear-gradient(135deg,#0B1F5E,#1E3A8A);

    padding:90px 0;

}
}

@media(max-width:768px){

nav ul{
display:none;
}

.nav-btn{
display:none;
}

.hero-buttons{
flex-direction:column;
}

/* .hero h1{
font-size:40px;
} */
.hero h1{

    font-size:58px;

    line-height:1.2;

}
.section-title h2{
font-size:34px;
}

.cta h2{
font-size:34px;
}
}



/* =========================
   INDUSTRIES
========================= */

.industries{
background:#f1f5f9;
padding:100px 0;
}

.industry-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:50px;
}

.industry-card{
background:#fff;
padding:30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.industry-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.industry-icon{
font-size:42px;
margin-bottom:15px;
}

.industry-card h3{
margin-bottom:12px;
}

.industry-card p{
color:#6b7280;
font-size:15px;
}

/* =========================
   TESTIMONIALS
========================= */

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{

    padding:100px 0;

    background:#F7FAFF;

}

.testimonial-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.4s;

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

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(15,98,254,.18);

}

/* Blue Top Border */

.testimonial-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#0F62FE;

}

/* Quote */

.quote{

    font-size:60px;

    color:#0F62FE;

    line-height:1;

    margin-bottom:15px;

}

/* Client Image */

.testimonial-card img{

    width:90px;

    height:90px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #0F62FE;

    margin-bottom:18px;

}

/* Stars */

.stars{

    color:#FFC107;

    font-size:22px;

    margin-bottom:20px;

}

/* Text */

.testimonial-card p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

    font-size:16px;

}

/* Name */

.testimonial-card h3{

    color:#0B1F3A;

    margin-bottom:6px;

}

/* Designation */

.testimonial-card span{

    color:#0F62FE;

    font-weight:600;

    display:block;

}

/* Company */

.testimonial-card small{

    color:#777;

}




/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.industry-grid,
.testimonial-grid{
grid-template-columns:1fr;
}

}


/* =========================
   PRICING
========================= */

.pricing-grid{

display:grid;

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

gap:35px;

margin-top:60px;

}

.pricing-card{

background:white;

padding:40px;

border-radius:25px;

box-shadow:0 15px 35px rgba(194, 35, 35, 0.08);

transition:.3s;

position:relative;

}

.pricing-card:hover{

transform:translateY(-10px);

}

.pricing-card h3{

font-size:26px;

margin-bottom:20px;

}

.pricing-card h1{

font-size:46px;

color:#1e3a8a;

margin-bottom:20px;

}

.pricing-card ul{

list-style:none;

margin:30px 0;

}

.pricing-card li{

padding:12px 0;

border-bottom:1px solid #eee;

}

.featured{

border:3px solid #f97316;

transform:scale(1.05);

}

.recommended{

position:absolute;

top:-18px;

left:50%;

transform:translateX(-50%);

background:#f97316;

color:white;

padding:8px 25px;

border-radius:50px;

font-size:14px;

font-weight:600;

}

.pricing-table{

width:100%;

border-collapse:collapse;

background:white;

border-radius:20px;

overflow:hidden;

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

}

.pricing-table th{

background:#1e3a8a;

color:white;

padding:18px;

}

.pricing-table td{

padding:18px;

border-bottom:1px solid #eee;

}

@media(max-width:992px){

.pricing-grid{

grid-template-columns:1fr;

}

.pricing-table{

display:block;

overflow-x:auto;

}

}



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

.header{

    position: sticky;
    top:0;
    z-index:1000;

    background: rgba(234,244,255,0.85);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

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

}

/* Navigation */

.navbar{

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

/* Logo */

.logo img{
    height:100px;
    width:150px;
    object-fit:contain;
}

/* Circular Logo */

.logo-circle{
    width:60px;
    height:60px;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    border:2px solid #0F62FE;
}

.logo-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Company Name */

.logo-text h2{

    margin:0;

    font-size:28px;

    color:#0B1F3A;

    font-weight:700;

}

.logo-text span{

    display:block;

    margin-top:3px;

    font-size:12px;

    letter-spacing:1px;

    color:#4F6B8A;

    text-transform:uppercase;

}

/* Navigation */

.nav-links{

    display:flex;

    gap:32px;

    list-style:none;

    align-items:center;

}

.nav-links a{

    text-decoration:none;

    color:#183153;

    font-weight:600;

    transition:.3s;

    padding-bottom:5px;

}

.nav-links a:hover{

    color:#0F62FE;

}

.nav-links .active{

    color:#0F62FE;

    border-bottom:3px solid #0F62FE;

}

/* Button */

.nav-btn{

    background:#0F62FE;

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.nav-btn:hover{

    background:#083EA7;

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(3, 18, 45, 0.25);

}



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

.team{

    padding:100px 0;

    background:#f7faff;

}

.team-grid{

    display:grid;

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

    gap:40px;

    margin-top:60px;

}

/* Card */

.leader-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.4s;

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

    position:relative;

    overflow:hidden;

}

/* Blue top border */

.leader-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:6px;

    background:#0F62FE;

}

/* Hover */

.leader-card:hover{

    transform:translateY(-10px);

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

}

/* Image */

.leader-card img{

    width:130px;

    height:130px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #0F62FE;

    margin-bottom:20px;

}

/* Name */

.leader-card h3{

    font-size:28px;

    color:#0B1F3A;

    margin-bottom:8px;

}

/* Role */

.leader-card h4{

    color:#0F62FE;

    margin-bottom:25px;

    font-weight:600;

}

/* Divider */

.divider{

    width:80px;

    height:3px;

    background:#0F62FE;

    margin:25px auto;

    border-radius:20px;

}

/* Skills */

.skills{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:12px;

}

.skills span{

    background:#EDF5FF;

    color:#0F62FE;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

/* LinkedIn */

.linkedin{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#0F62FE;

    text-decoration:none;

    font-weight:600;

    font-size:16px;

    transition:.3s;

}

.linkedin:hover{

    color:#083EA7;

}


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

.demo-hero{

padding:120px 0;

background:linear-gradient(135deg,#0B1F3A,#3873e2);

color:#fff;

overflow:hidden;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.hero-tag{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 22px;

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

border-radius:50px;

margin-bottom:25px;

font-weight:600;

backdrop-filter:blur(12px);

}

.hero-tag i{

color:#FFD43B;

}

.demo-hero h1{

font-size:60px;

line-height:1.2;

margin-bottom:25px;

}

.demo-hero h1 span{

color:#FFD43B;

}

.demo-hero p{

font-size:20px;

line-height:1.8;

opacity:.95;

margin-bottom:40px;

max-width:600px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.btn{

background:#FFD43B;

color:#0B1F3A;

padding:16px 34px;

border-radius:10px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn:hover{

transform:translateY(-5px);

}

.btn-outline{

padding:16px 34px;

border:2px solid #fff;

border-radius:10px;

color:#fff;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.btn-outline:hover{

background:#fff;

color:#0B1F3A;

}

.hero-image{

text-align:center;

}

.hero-image img{

width:100%;

max-width:650px;

border-radius:40px;

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

transition:.4s;

}

.hero-image img:hover{

transform:scale(1.03);

}

@media(max-width:991px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.demo-hero h1{

font-size:42px;

}

.demo-hero p{

margin:auto;

margin-bottom:35px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

}


/* ===========================
   DASHBOARD GALLERY
=========================== */

.dashboard-gallery{

    display:grid;

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

    gap:20px;

    margin-top:10px;

}

.dashboard-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

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

    transition:all .35s ease;

    cursor:pointer;

}

.dashboard-card:hover{

    transform:translateY(-10px);

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

}

.dashboard-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;

}

.dashboard-card h3{

    text-align:center;

    padding:18px;

    color:#4011b7;

    font-size:20px;

    font-weight:600;

}




