/*=====================================================
CENTRAL ERA V2.0
Microsoft Inspired UI
======================================================*/

:root{

--primary:#0F62FE;
--primary-light:#4F8CFF;
--secondary:#0066FF;
--accent:#00A3FF;

--dark:#102A43;
--text:#334E68;
--light:#FFFFFF;
--background:#F7F9FC;
--section:#EEF3F8;

--border:#D9E2EC;

--success:#14B87A;

--shadow:0 10px 30px rgba(15,98,254,.08);

--radius:22px;

--transition:.35s ease;

--max-width:1350px;

}

/*=====================================================
RESET
======================================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Inter',sans-serif;

background:var(--background);

color:var(--text);

overflow-x:hidden;

line-height:1.7;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

.container{

width:min(92%,var(--max-width));

margin:auto;

}

/*=====================================================
TYPOGRAPHY
======================================================*/

h1,h2,h3,h4{

font-family:'Poppins',sans-serif;

color:var(--dark);

font-weight:700;

}

h1{

font-size:64px;

line-height:1.1;

}

h2{

font-size:46px;

margin-bottom:20px;

}

h3{

font-size:24px;

}

.section-title{

display:inline-block;

padding:10px 22px;

background:#EAF3FF;

color:var(--primary);

font-weight:700;

letter-spacing:2px;

border-radius:50px;

margin-bottom:20px;

font-size:13px;

}

.section-subtitle{

max-width:700px;

margin:20px auto 60px;

text-align:center;

color:#6B7C93;

font-size:18px;

}

/*=====================================================
BUTTONS
======================================================*/

.primary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:linear-gradient(135deg,var(--primary),var(--accent));

color:white;

border-radius:60px;

font-weight:600;

transition:var(--transition);

box-shadow:0 15px 35px rgba(15,98,254,.25);

}

.primary-btn:hover{

transform:translateY(-5px);

box-shadow:0 20px 45px rgba(15,98,254,.35);

}

.secondary-btn{

display:inline-flex;

padding:16px 34px;

border:2px solid var(--primary);

border-radius:60px;

font-weight:600;

color:var(--primary);

transition:.35s;

}

.secondary-btn:hover{

background:var(--primary);

color:white;

}

/*=====================================================
PRELOADER
======================================================*/

#preloader{

position:fixed;

inset:0;

background:white;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

transition:1s;

}

.loader-logo img{

width:180px;
max-width:70vw;
height:auto;

animation:pulse 2s infinite;

}
/*=====================================================
SCROLL BAR
======================================================*/

.scroll-progress{

position:fixed;

top:0;

left:0;

height:4px;

width:0;

background:linear-gradient(90deg,var(--primary),var(--accent));

z-index:999999;

}

/*=====================================================
NAVBAR
======================================================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

padding:18px 0;

z-index:999;

transition:.4s;

}

header.scrolled{

background:rgba(255,255,255,.88);

backdrop-filter:blur(18px);

box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.nav-container{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

gap:15px;

font-weight:700;

font-size:24px;

color:var(--dark);

}


nav ul{

display:flex;

gap:40px;

}

nav a{

font-weight:600;

position:relative;

transition:.3s;

}

nav a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:3px;

background:var(--primary);

transition:.3s;

}

nav a:hover::after{

width:100%;

}

/*=====================================================
HERO
======================================================*/

.hero{

padding-top:180px;

padding-bottom:120px;

position:relative;

overflow:hidden;

background:
linear-gradient(180deg,#ffffff,#f6f9ff);

}

.hero-bg{

position:absolute;

width:900px;

height:900px;

background:radial-gradient(circle,var(--primary-light) 0%,transparent 70%);

opacity:.08;

right:-300px;

top:-300px;

}

.hero-grid{

display:grid;

grid-template-columns:1.1fr 1fr;

align-items:center;

gap:80px;

}

.hero-tag{

display:inline-block;

padding:12px 25px;

border-radius:50px;

background:#EAF3FF;

color:var(--primary);

font-weight:700;

margin-bottom:30px;

}

.hero h1 span{

display:block;

margin-top:10px;

background:linear-gradient(135deg,var(--primary),var(--accent));

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{

margin:30px 0;

font-size:20px;

color:#5D6D7E;

max-width:620px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:50px;

}

.hero-stats{

display:flex;

gap:50px;

}

.hero-stats h2{

font-size:42px;

margin-bottom:5px;

color:var(--primary);

}

.hero-image{

position:relative;

animation:floating 5s ease-in-out infinite;

}

.hero-image img{

width:100%;

border-radius:25px;

box-shadow:0 40px 80px rgba(0,0,0,.08);

}

/*=====================================================
TRUSTED STRIP
======================================================*/

/*======================================
   TRUSTED TECHNOLOGIES
======================================*/

.trusted{

    position:relative;

    padding:90px 0;

    background:
        radial-gradient(circle at top left,rgba(59,130,246,.12),transparent 30%),
        radial-gradient(circle at bottom right,rgba(6,182,212,.12),transparent 30%),
        linear-gradient(180deg,#0B1220,#111C2E);

    overflow:hidden;

}

.trusted::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    top:-180px;
    left:-120px;

    background:#2563EB;

    filter:blur(180px);

    opacity:.15;

}

.trusted::after{

    content:"";

    position:absolute;

    width:380px;
    height:380px;

    bottom:-150px;
    right:-100px;

    background:#06B6D4;

    filter:blur(170px);

    opacity:.12;

}

.trusted .container{

    position:relative;

    z-index:2;

}

.trusted p{

    display:inline-block;

    margin:0 auto 55px;

    padding:12px 26px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#E2E8F0;

    font-size:17px;

    font-weight:600;

    letter-spacing:.8px;

    backdrop-filter:blur(12px);

}

.trusted .container{

    text-align:center;

}

.trusted-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:28px;

}

.trusted-grid div{

    position:relative;

    overflow:hidden;

    padding:32px 20px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#F8FAFC;

    font-size:18px;

    font-weight:700;

    backdrop-filter:blur(18px);

    transition:.45s cubic-bezier(.17,.67,.35,1.3);

    box-shadow:
    0 15px 35px rgba(0,0,0,.25);

}

.trusted-grid div::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:45%;
    height:100%;

    background:

    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

}

.trusted-grid div:hover::before{

    animation:shine .8s ease;

}

@keyframes shine{

    from{

        left:-120%;

    }

    to{

        left:170%;

    }

}

.trusted-grid div:hover{

    transform:
        translateY(-14px)
        scale(1.04);

    border-color:#3B82F6;

    background:

    linear-gradient(
        135deg,
        rgba(59,130,246,.18),
        rgba(6,182,212,.18)
    );

    box-shadow:

    0 20px 50px rgba(37,99,235,.25);

}

@media(max-width:1100px){

.trusted-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:700px){

.trusted-grid{

grid-template-columns:repeat(2,1fr);

}

}

/*=====================================================
ABOUT
======================================================*/

.about{

padding:130px 0;

background:var(--section);

}

.about-grid{

display:grid;

grid-template-columns:420px 1fr;

gap:90px;

align-items:center;

}

.about-left{

display:flex;

justify-content:center;

}

.about-left img{

width:100%;
max-width:260px;
height:auto;
object-fit:contain;
display:block;
margin:auto;

filter:drop-shadow(0 20px 35px rgba(15,98,254,.12));

}

.about-right span{

color:var(--primary);

font-weight:700;

letter-spacing:2px;

}

.about-right h2{

margin:20px 0;

}

.about-right p{

font-size:18px;

margin-bottom:35px;

color:#5D6D7E;

}

.about-boxes{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:40px;

}

.about-boxes div{

padding:18px;

background:white;

border-radius:18px;

font-weight:600;

box-shadow:var(--shadow);

transition:.3s;

}

.about-boxes div:hover{

transform:translateY(-8px);

}

.about-boxes i{

color:var(--success);

margin-right:10px;

}

/*=====================================================
ANIMATIONS
======================================================*/

@keyframes floating{

0%,100%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.05);

}

100%{

transform:scale(1);

}

}
/*=====================================================
SERVICES
======================================================*/

.services{

padding:130px 0;

background:white;

text-align:center;

}

.service-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:35px;

margin-top:70px;

}

/*=============================
      SERVICES SECTION
=============================*/

.service-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:30px;
    margin-top:60px;

}

/*====================================
        PREMIUM SERVICE CARDS
====================================*/

.service-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:35px;
    margin-top:60px;

}

.service-card{

    position:relative;

    overflow:hidden;

    background:#ffffff;

    border-radius:28px;

    padding:38px 32px;

    min-height:370px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    border:1px solid #E6EDF8;

    transition:.55s cubic-bezier(.17,.67,.35,1.3);

    box-shadow:
        0 15px 40px rgba(15,98,254,.08);

    transform-style:preserve-3d;

    perspective:1000px;

}

/* Microsoft Gradient Border */

.service-card::after{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(
        90deg,
        #0078D4,
        #00A4EF,
        #7FBA00,
        #FFB900,
        #F25022
    );

}

/* Shine Animation */

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:-140%;

    width:45%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.75),
        transparent
    );

    transform:skewX(-25deg);

    pointer-events:none;

}

.service-card:hover::before{

    animation:shineCard .9s ease;

}

@keyframes shineCard{

    from{

        left:-140%;

    }

    to{

        left:170%;

    }

}

/* Hover */

.service-card:hover{

    transform:
        translateY(-15px)
        rotateX(4deg)
        rotateY(-3deg);

    border-color:#0078D4;

    box-shadow:

        0 25px 60px rgba(15,98,254,.18);

}

/* Arrow */

.service-card .arrow{

    position:absolute;

    top:25px;

    right:25px;

}

.service-card .arrow i{

    width:48px;
    height:48px;

    font-size:18px;

}

/* ICON */

.service-card i{

    width:82px;
    height:82px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 28px;

    border-radius:24px;

    color:white;

    font-size:34px;

    box-shadow:
        0 15px 35px rgba(0,120,212,.25);

    transition:.45s;

}

/* Floating Icon */

.service-card:hover i{

    transform:
        translateY(-8px)
        rotate(-8deg)
        scale(1.08);

}

/* Individual Microsoft Colors */

.service-card:nth-child(1) i{

background:linear-gradient(135deg,#0078D4,#00A4EF);

}

.service-card:nth-child(2) i{

background:linear-gradient(135deg,#FFB900,#F2C811);

color:#333;

}

.service-card:nth-child(3) i{

background:linear-gradient(135deg,#742774,#A855F7);

}

.service-card:nth-child(4) i{

background:linear-gradient(135deg,#00A4EF,#06B6D4);

}

.service-card:nth-child(5) i{

background:linear-gradient(135deg,#16A34A,#7FBA00);

}

.service-card:nth-child(6) i{

background:linear-gradient(135deg,#F25022,#F97316);

}

/* Heading */

.service-card h3{

    margin:0 0 18px;

    font-size:30px;

    font-weight:800;

    color:#102A43;

}

/* Description */

.service-card p{

    color:#5F6B7A;

    font-size:16px;

    line-height:1.8;

    font-weight:500;

    margin-bottom:30px;

}

/* Bottom Line */

.service-card .line{

    width:70px;

    height:4px;

    border-radius:20px;

    background:linear-gradient(
        90deg,
        #0078D4,
        #00A4EF
    );

    margin-top:auto;

    transition:.4s;

}

.service-card:hover .line{

    width:120px;

}

/* Responsive */

@media(max-width:992px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

.service-card{

min-height:auto;

}

}
/*=====================================================
INDUSTRIES
======================================================*/

.industries{

padding:130px 0;

background:#F7F9FC;

text-align:center;

}

.industry-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

margin-top:70px;

}

.industry-card{

background:white;

padding:40px;

border-radius:22px;

transition:.35s;

box-shadow:var(--shadow);

}

.industry-card:hover{

transform:translateY(-10px) scale(1.03);

}

.industry-card i{

font-size:42px;

margin-bottom:20px;

color:var(--primary);

}

/*=====================================================
TECH STACK
======================================================*/

.technology{

padding:120px 0;

background:white;

text-align:center;

overflow:hidden;

}

.logo-marquee{

overflow:hidden;

margin-top:60px;

}

.logo-track{

display:flex;

gap:70px;

width:max-content;

animation:marquee 28s linear infinite;

}

.logo-track span{

padding:18px 30px;

background:#F6F9FF;

border-radius:60px;

font-weight:700;

color:var(--primary);

box-shadow:var(--shadow);

white-space:nowrap;

}

.logo-track:hover{

animation-play-state:paused;

}

/*=====================================================
WHY US
======================================================*/

.why-us{

padding:130px 0;

background:linear-gradient(135deg,#0F62FE,#0066FF);

text-align:center;

color:white;

}

.why-us .section-title{

background:white;

color:var(--primary);

}

.why-us h2{

color:white;

margin-bottom:70px;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:35px;

}

.why-card{

padding:40px;

border-radius:24px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(15px);

transition:.4s;

border:1px solid rgba(255,255,255,.15);

}

.why-card:hover{

transform:translateY(-15px);

background:white;

color:var(--dark);

}

.why-card:hover h3{

color:var(--dark);

}

.why-card:hover i{

color:var(--primary);

}

.why-card h3{

color:white;

margin-top:18px;

transition:.3s;

}

.why-card i{

font-size:42px;

}

/*=====================================================
TIMELINE
======================================================*/

.timeline{

padding:130px 0;

background:white;

text-align:center;

}

.timeline-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:35px;

margin-top:70px;

}

.step{

padding:40px;

border-radius:24px;

background:#F8FAFD;

transition:.35s;

position:relative;

overflow:hidden;

}

.step:hover{

transform:translateY(-10px);

box-shadow:var(--shadow);

}

.step span{

display:inline-flex;

justify-content:center;

align-items:center;

width:70px;

height:70px;

border-radius:50%;

background:linear-gradient(
135deg,
var(--primary),
var(--accent)
);

color:white;

font-size:24px;

font-weight:700;

margin-bottom:25px;

}

.step p{

margin-top:15px;

color:#6B7C93;

}

/*=====================================================
TESTIMONIALS
======================================================*/

.testimonials{

padding:130px 0;

background:#F7F9FC;

text-align:center;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

margin-top:70px;

}

.testimonial-card{

padding:45px;

border-radius:24px;

background:white;

box-shadow:var(--shadow);

transition:.35s;

font-size:18px;

position:relative;

}

.testimonial-card::before{

content:"★★★★★";

display:block;

font-size:24px;

color:#FFC107;

margin-bottom:25px;

}

.testimonial-card:hover{

transform:translateY(-12px);

}

.testimonial-card h4{

margin-top:30px;

color:var(--primary);

}

/*=====================================================
MARQUEE
======================================================*/

@keyframes marquee{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}
.about-hero{

position:relative;

overflow:hidden;

padding:140px 0;

background:
linear-gradient(135deg,#ffffff,#eef5ff);

}

.about-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.about-content h1{

font-size:68px;

line-height:1.05;

font-weight:800;

margin:25px 0;

}

.about-content h1 span{

background:linear-gradient(90deg,#2563eb,#00bcd4);

-webkit-background-clip:text;

color:transparent;

}

.about-content p{

font-size:20px;

line-height:1.9;

opacity:.8;

max-width:700px;

}

.stats-row{

display:flex;

gap:40px;

margin-top:60px;

}

.stats-row h2{

font-size:50px;

color:#2563eb;

}

.stats-row span{

opacity:.7;

}

.about-visual{

position:relative;

height:650px;

display:flex;

justify-content:center;

align-items:center;

}
.about-boxes div:nth-child(1){
    border-left:5px solid #0078D4;
    background:#F3F9FF;
}

.about-boxes div:nth-child(2){
    border-left:5px solid #7FBA00;
    background:#F8FDEB;
}

.about-boxes div:nth-child(3){
    border-left:5px solid #FFB900;
    background:#FFF8E5;
}

.about-boxes div:nth-child(4){
    border-left:5px solid #F25022;
    background:#FFF2EF;
}

.main-logo{

width:280px;

animation:floatLogo 6s ease-in-out infinite;

z-index:5;

}

.orb{

position:absolute;

width:430px;

height:430px;

border-radius:50%;

background:radial-gradient(circle,#5b7fff22,#2563eb00);

animation:rotate 25s linear infinite;

}

.floating-card{

position:absolute;

padding:18px 30px;

background:white;

border-radius:18px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

font-weight:700;

backdrop-filter:blur(20px);

transition:.4s;

}

.floating-card:hover{

transform:translateY(-10px) scale(1.06);

}

.top{

top:20px;

}

.left{

left:0;

}

.right{

right:0;

}

.bottom{

bottom:20px;

}

.gradient-glow{

position:absolute;

border-radius:50%;

filter:blur(120px);

}

.glow1{

width:350px;

height:350px;

background:#2563eb33;

top:-120px;

left:-120px;

}

.glow2{

width:350px;

height:350px;

background:#00bcd433;

right:-120px;

bottom:-120px;

}

.floating-grid{

position:absolute;

inset:0;

background-image:

linear-gradient(rgba(37,99,235,.05) 1px,transparent 1px),

linear-gradient(90deg,rgba(37,99,235,.05) 1px,transparent 1px);

background-size:60px 60px;

opacity:.5;

}

@keyframes floatLogo{

0%,100%{transform:translateY(0);}

50%{transform:translateY(-25px);}

}

@keyframes rotate{

from{transform:rotate(0deg);}

to{transform:rotate(360deg);}

}
/* ========================================= */
/* IMPLEMENTATION TIMELINE */
/* ========================================= */

.timeline-section{
    padding:120px 0;
    background:#f8fbff;
    position:relative;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
    margin-top:70px;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    top:45px;
    left:8%;
    right:8%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#00bcd4);
    z-index:1;
}

.timeline-item{
    position:relative;
    background:#fff;
    border-radius:20px;
    padding:80px 20px 30px;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.4s;
    z-index:2;
}

.timeline-item:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(37,99,235,.18);
}

.timeline-icon{
    position:absolute;
    top:-5px;
    left:50%;
    transform:translateX(-50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#00bcd4);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    box-shadow:0 15px 35px rgba(37,99,235,.35);
}

.timeline-item h3{
    margin:20px 0 15px;
    font-size:22px;
    color:#13294b;
}

.timeline-item p{
    font-size:15px;
    line-height:1.7;
    color:#666;
}

/* ==========================================
   CENTRAL ERA CONTACT PAGE
   PART 1
========================================== */

:root{

--primary:#2563eb;
--secondary:#00bcd4;
--dark:#0f172a;
--text:#4b5563;
--light:#f8fbff;
--white:#ffffff;

--shadow:0 20px 50px rgba(0,0,0,.08);

--radius:22px;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#F8FAFC;
    overflow-x:hidden;
    scroll-behavior:smooth;

    background:
        radial-gradient(circle at top left, rgba(37,99,235,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(20,184,166,.18), transparent 35%),
        linear-gradient(180deg,#020617 0%,#0F172A 45%,#111827 100%);

    background-attachment:fixed;
}

.container{

width:min(1180px,92%);

margin:auto;

}

/* ==========================
HEADER
========================== */



.nav-container{

display:flex;

align-items:center;

justify-content:space-between;

height:85px;

}

.logo{

display:flex;

align-items:center;

gap:14px;

text-decoration:none;

}
.logo img {
    width: 90px;
    height: auto;
    object-fit: contain;
}

.logo span{

font-size:28px;

font-weight:800;

color:var(--dark);

}

nav ul{

display:flex;

gap:34px;

list-style:none;

}

nav a{

text-decoration:none;

font-weight:600;

color:#475569;

transition:.3s;

}

nav a:hover{

color:var(--primary);

}

.primary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 32px;

border-radius:50px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

font-weight:700;

text-decoration:none;

transition:.35s;

box-shadow:0 20px 40px rgba(37,99,235,.25);

border:none;

cursor:pointer;

}

.primary-btn:hover{

transform:translateY(-4px);

box-shadow:0 25px 50px rgba(37,99,235,.35);

}

/* ==========================
HERO
========================== */

.contact-hero{

padding:140px 0 90px;

background:

radial-gradient(circle at top left,#2563eb22,transparent 40%),

radial-gradient(circle at bottom right,#00bcd422,transparent 35%),

linear-gradient(180deg,#ffffff,#eef6ff);

text-align:center;

position:relative;

overflow:hidden;

}

.contact-hero::before{

content:"";

position:absolute;

width:650px;

height:650px;

background:#2563eb10;

border-radius:50%;

top:-300px;

right:-200px;

filter:blur(70px);

}

.contact-hero h1{

font-size:62px;

font-weight:800;

margin:25px auto;

max-width:900px;

line-height:1.1;

}

.contact-hero p{

max-width:760px;

margin:auto;

font-size:20px;

line-height:1.8;

color:var(--text);

}

.section-title{

display:inline-block;

padding:8px 18px;

border-radius:30px;

background:#e8f1ff;

color:var(--primary);

font-weight:700;

letter-spacing:.08em;

margin-bottom:25px;

}

/* ==========================
TOP CARDS
========================== */

.hero-contact-cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.hero-contact-cards div{

background:rgba(255,255,255,.8);

backdrop-filter:blur(18px);

padding:40px;

border-radius:22px;

box-shadow:var(--shadow);

transition:.4s;

}

.hero-contact-cards div:hover{

transform:translateY(-10px);

}

.hero-contact-cards i{

font-size:38px;

color:var(--primary);

margin-bottom:18px;

}

.hero-contact-cards h3{

margin-bottom:12px;

font-size:24px;

}

/* ==========================
MAIN CONTACT GRID
========================== */

.contact-section{

padding:100px 0;

}

.contact-grid{

display:grid;

grid-template-columns:420px 1fr;

gap:60px;

align-items:start;

}

/* ==========================
LEFT PANEL
========================== */

.contact-info{

position:sticky;

top:110px;

}

.contact-info h2{

font-size:42px;

margin-bottom:22px;

line-height:1.2;

}

.contact-info p{

font-size:17px;

line-height:1.9;

color:var(--text);

margin-bottom:40px;

}

.info-box{

display:flex;

align-items:flex-start;

gap:18px;

background:#fff;

padding:22px;

margin-bottom:18px;

border-radius:18px;

box-shadow:var(--shadow);

transition:.35s;

}

.info-box:hover{

transform:translateX(8px);

}

.info-box i{

width:55px;

height:55px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:#eef5ff;

color:var(--primary);

font-size:22px;

}

.info-box h4{

margin-bottom:6px;

font-size:18px;

}

/* ==========================
FORM CARD
========================== */

.contact-form-card{

background:#fff;

padding:45px;

border-radius:26px;

box-shadow:var(--shadow);

}

.contact-form-card h2{

font-size:36px;

margin-bottom:35px;

}

form{

display:flex;

flex-direction:column;

gap:22px;

}

.input-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:20px;

}

.input-group{

display:flex;

flex-direction:column;

}

.input-group label{

margin-bottom:10px;

font-weight:600;

}

.input-group input,
.input-group select,
.input-group textarea{

width:100%;

padding:16px 18px;

border:1px solid #dbe4ef;

border-radius:14px;

font-size:15px;

font-family:inherit;

transition:.3s;

background:#fafcff;

}

.input-group textarea{

resize:vertical;

min-height:170px;

}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

outline:none;

border-color:var(--primary);

box-shadow:0 0 0 5px rgba(37,99,235,.10);

background:#fff;

}
/* ==========================================
CHECKBOX GRID
========================================== */

.form-heading{
    margin-top:15px;
    margin-bottom:10px;
    font-size:22px;
    font-weight:700;
    color:var(--dark);
}

.checkbox-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:15px;
}

.checkbox-grid label{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8fbff;
    border:1px solid #dce8f8;
    padding:16px;
    border-radius:14px;
    cursor:pointer;
    transition:.3s;
    font-weight:600;
}

.checkbox-grid label:hover{
    border-color:var(--primary);
    background:#eef6ff;
    transform:translateY(-3px);
}

.checkbox-grid input{
    width:18px;
    height:18px;
    accent-color:var(--primary);
}

/* ==========================================
FILE UPLOAD
========================================== */

input[type=file]{

padding:14px;

background:#f7fbff;

border:2px dashed #c7d7ea;

cursor:pointer;

}

input[type=file]:hover{

border-color:var(--primary);

}

/* ==========================================
PRIVACY
========================================== */

.privacy{

background:#f5f9ff;

padding:18px;

border-radius:14px;

border:1px solid #dbe7f5;

}

.privacy label{

display:flex;

align-items:flex-start;

gap:12px;

font-size:14px;

line-height:1.6;

}

.privacy input{

margin-top:4px;

}

/* ==========================================
BUTTON
========================================== */

.submit-btn{

width:100%;

padding:18px;

font-size:18px;

margin-top:10px;

}

.submit-btn i{

margin-right:10px;

}

.submit-btn:hover{

transform:translateY(-5px);

}

.small-note{

text-align:center;

margin-top:18px;

color:#64748b;

font-size:14px;

}

/* ==========================================
SUCCESS MESSAGE
========================================== */

.success-box{

background:#ecfdf5;

border-left:5px solid #10b981;

padding:20px;

border-radius:16px;

margin-top:25px;

display:none;

}

/* ==========================================
SOCIAL
========================================== */

.social-icons{

display:flex;

gap:16px;

margin-top:35px;

}

.social-icons a{

width:52px;

height:52px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

box-shadow:var(--shadow);

text-decoration:none;

color:var(--primary);

font-size:22px;

transition:.35s;

}

.social-icons a:hover{

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

transform:translateY(-6px);

}

/* ==========================================
GOOGLE MAP
========================================== */

.map-section{

padding:80px 0;

background:#fff;

}

.map-section iframe{

width:100%;

height:500px;

border:none;

border-radius:24px;

box-shadow:var(--shadow);

}

/* ==========================================
FOOTER
========================================== */

footer{

background:#07162f;

color:#fff;

padding:80px 0 35px;

margin-top:80px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:60px;

}

.footer-grid h3{

margin-bottom:20px;

font-size:22px;

}

.footer-grid p{

line-height:1.8;

opacity:.8;

}

.footer-grid a{

display:block;

color:#d7e4ff;

text-decoration:none;

margin:12px 0;

transition:.3s;

}

.footer-grid a:hover{

color:#fff;

padding-left:8px;

}

.footer-bottom{

margin-top:50px;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.15);

display:flex;

justify-content:space-between;

align-items:center;

font-size:14px;

opacity:.7;

}

/* ==========================================
ANIMATIONS
========================================== */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.contact-hero,
.contact-form-card,
.contact-info{

animation:fadeUp .9s ease;

}

/* Floating Background */

body::before{

content:"";

position:fixed;

width:500px;

height:500px;

top:-180px;

right:-180px;

background:radial-gradient(circle,#2563eb18,transparent);

pointer-events:none;

z-index:-1;

}

body::after{

content:"";

position:fixed;

width:400px;

height:400px;

left:-120px;

bottom:-120px;

background:radial-gradient(circle,#00bcd418,transparent);

pointer-events:none;

z-index:-1;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:1100px){

.contact-grid{

grid-template-columns:1fr;

}

.contact-info{

position:relative;

top:0;

}

.hero-contact-cards{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact-hero{

padding:100px 0 70px;

}

.contact-hero h1{

font-size:40px;

}

.contact-hero p{

font-size:17px;

}

.input-row{

grid-template-columns:1fr;

}

.checkbox-grid{

grid-template-columns:1fr;

}

.contact-form-card{

padding:28px;

}

.footer-bottom{

flex-direction:column;

gap:15px;

text-align:center;

}

.logo span{

font-size:22px;

}


nav{

display:none;

}

}
/* ============================= */
/* Premium Navbar */
/* ============================= */

.navbar{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:22px 0;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.nav-container{

    width:90%;
    max-width:1400px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    position:relative;
    z-index:5;
    
}

/* ============================= */

.logo{

display:flex;
align-items:center;
gap:15px;

}


.logo h2{

font-size:38px;
font-weight:700;
color:#18233f;

}

/* ============================= */

.menu{

display:flex;
gap:45px;

list-style:none;

}

.menu a{

text-decoration:none;
font-size:18px;
font-weight:600;
color:#27314b;

transition:.35s;

position:relative;

}

.menu a::after{

content:"";

position:absolute;

bottom:-8px;
left:0;

height:3px;
width:0;

background:#4F46E5;

border-radius:30px;

transition:.35s;

}

.menu a:hover{

color:#4F46E5;

}

.menu a:hover::after{

width:100%;

}

/* ============================= */

.consult-btn{

padding:18px 42px;

border-radius:60px;

background:linear-gradient(135deg,#4F46E5,#4FD1C5);

color:#fff;

font-size:18px;

font-weight:700;

text-decoration:none;

box-shadow:0 15px 35px rgba(79,70,229,.25);

transition:.35s;

}

.consult-btn:hover{

transform:translateY(-4px);

}

/* ============================= */
/* Background Graphics */
/* ============================= */

.nav-bg{

position:absolute;

inset:0;

pointer-events:none;

}

/* Left Circle */

.blob{

position:absolute;

border-radius:50%;

filter:blur(10px);

opacity:.28;

}

/* Blob 1 */

.blob1{

width:280px;
height:280px;

background:#4FD1C5;

left:-120px;
top:-140px;

}

/* Blob 2 */

.blob2{

width:240px;
height:240px;

background:#4F46E5;

right:-80px;
top:-90px;

}

/* Blob 3 */

.blob3{

width:180px;
height:180px;

background:#6EE7F9;

right:20%;

top:-100px;

}

/* Dot Grid */

.grid-pattern{

position:absolute;

width:180px;
height:120px;

left:48%;

top:20px;

background-image:radial-gradient(#4F46E5 1px, transparent 1px);

background-size:18px 18px;

opacity:.12;

}
@keyframes floating{

0%{

transform:translateY(0);

}

50%{

transform:translateY(12px);

}

100%{

transform:translateY(0);

}

}

.blob1{

animation:floating 10s ease-in-out infinite;

}

.blob2{

animation:floating 14s ease-in-out infinite;

}

.blob3{

animation:floating 8s ease-in-out infinite;

}
.nav-menu li a i{
    width:62px;
    height:62px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#4F46E5,#64B5F6);
    color:#fff;
    font-size:26px;
    margin-bottom:10px;
    box-shadow:0 10px 25px rgba(79,70,229,.25);
    transition:.35s;
}

.nav-menu li a:hover i{
    transform:translateY(-4px) scale(1.08);
    box-shadow:0 16px 35px rgba(79,70,229,.35);
}
/* ===========================
   ABOUT SECTION LIGHT THEME
=========================== */

.about{
    background:#F8FBFF;
}

.about .section-tag,
.about span{
    color:#0F62FE;
}

.about h2{
    color:#102A43;
}

.about p{
    color:#5B6B82;
}

.about-boxes div{
    color:#102A43;
}

.about-boxes i{
    color:#0F62FE;
}

.about a{
    color:#fff;
}
/*=====================================
      PREMIUM ROADMAP
======================================*/

.roadmap-section{

    padding:90px 0 120px;

    background:
    linear-gradient(180deg,#F8FBFF 0%,#EDF5FF 100%);

    text-align:center;

}

.roadmap-section .section-title{

    display:inline-block;

    padding:12px 28px;

    border-radius:40px;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

    color:#fff;

    font-size:14px;

    letter-spacing:2px;

    font-weight:700;

    text-transform:uppercase;

    margin-bottom:22px;

    box-shadow:0 12px 30px rgba(37,99,235,.25);

}

.roadmap-section h2{

    font-size:56px;

    color:#102A43;

    margin-bottom:18px;

    font-weight:800;

    line-height:1.1;

}

.roadmap-section .section-subtitle{

    max-width:760px;

    margin:auto;

    color:#5F6B7A;

    font-size:20px;

    line-height:1.8;

}
.roadmap{

    position:relative;

    max-width:950px;

    margin:80px auto 0;

}

.roadmap::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:6px;

    height:100%;

    transform:translateX(-50%);

    background:linear-gradient(
        to bottom,
        #0078D4,
        #00A4EF,
        #7FBA00,
        #FFB900,
        #F25022
    );

    border-radius:20px;

}

.roadmap-item{

    position:relative;

    width:50%;

    padding:20px 40px;

    margin-bottom:70px;

}

.roadmap-item.left{

    left:0;

    text-align:right;

}

.roadmap-item.right{

    left:50%;

}

.roadmap-icon{

    position:absolute;

    top:30px;

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(135deg,#0078D4,#00A4EF);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:30px;

    box-shadow:0 15px 35px rgba(0,120,212,.25);

    z-index:2;

}

.left .roadmap-icon{

    right:-40px;

}

.right .roadmap-icon{

    left:-40px;

}

.roadmap-card{

    background:#fff;

    border-radius:24px;

    padding:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.roadmap-card::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:40%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );

    transform:skewX(-20deg);

}

.roadmap-card:hover::before{

    animation:shine .8s;

}

@keyframes shine{

from{

left:-120%;

}

to{

left:180%;

}

}

.roadmap-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,120,212,.18);

}

.roadmap-card span{

    color:#0078D4;

    font-weight:700;

    font-size:14px;

    letter-spacing:1px;

}

.roadmap-card h3{

    margin:12px 0;

    font-size:28px;

    color:#102A43;

}

.roadmap-card p{

    color:#64748B;

    line-height:1.8;

}

/* Mobile */

@media(max-width:900px){

.roadmap::before{

left:40px;

}

.roadmap-item{

width:100%;

left:0!important;

padding-left:100px;

padding-right:20px;

text-align:left;

}

.roadmap-icon{

left:0!important;

right:auto!important;

}

}
