/*
==========================================================
SCHEMECLOUD ENTERPRISE DESIGN SYSTEM
==========================================================
*/

:root{

/* Brand */

--primary:#0A4D8C;
--primary-dark:#073763;
--primary-light:#2F80ED;

--secondary:#0E7490;
--secondary-light:#14B8A6;

--accent:#F59E0B;

--success:#22C55E;

--danger:#DC2626;


/* Neutrals */

--dark:#081827;
--dark-2:#0F172A;

--light:#F8FAFC;
--white:#FFFFFF;

--text:#1E293B;
--text-light:#64748B;

--border:#E2E8F0;


/* Backgrounds */

--section:#F8FAFC;

--card:#FFFFFF;


/* Shadows */

--shadow-sm:
0 8px 24px rgba(15,23,42,.06);

--shadow:
0 20px 60px rgba(15,23,42,.08);

--shadow-lg:
0 35px 90px rgba(15,23,42,.12);


/* Radius */

--radius:20px;

--radius-lg:28px;


/* Transition */

--transition:.35s cubic-bezier(.4,0,.2,1);

}

/*==========================================================
RESET
==========================================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:
"Segoe UI",
Inter,
Roboto,
Arial,
sans-serif;

background:#fff;

color:var(--text);

line-height:1.75;

overflow-x:hidden;

}

img{

display:block;

max-width:100%;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

list-style:none;

}

.container{

width:100%;

max-width:1320px;

margin:auto;

padding:0 35px;

}

.section{

padding:120px 0;

position:relative;

overflow:hidden;

}

.section-light{

background:var(--section);

}

/*==========================================================
TYPOGRAPHY
==========================================================*/

h1{

font-size:64px;

line-height:1.08;

font-weight:800;

letter-spacing:-2px;

color:var(--dark);

}

h2{

font-size:46px;

font-weight:800;

line-height:1.2;

color:var(--dark);

margin-bottom:18px;

}

h3{

font-size:24px;

font-weight:700;

color:var(--dark);

margin-bottom:18px;

}

p{

font-size:18px;

color:var(--text-light);

line-height:1.9;

}

.section-title{

max-width:850px;

margin:auto;

text-align:center;

margin-bottom:80px;

}

.section-title span{

display:inline-block;

padding:8px 22px;

border-radius:40px;

background:rgba(47,128,237,.08);

color:var(--primary);

font-size:13px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

margin-bottom:20px;

}

.section-title p{

margin-top:20px;

font-size:20px;

}

/*==========================================================
BUTTONS
==========================================================*/

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:12px;

padding:16px 34px;

border-radius:14px;

font-weight:700;

font-size:15px;

transition:var(--transition);

cursor:pointer;

}

.btn-primary{

background:linear-gradient(
135deg,
#0A4D8C,
#2F80ED
);

color:#fff;

box-shadow:

0 15px 35px rgba(47,128,237,.25);

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:

0 25px 55px rgba(47,128,237,.35);

}

.btn-outline{

background:#fff;

border:2px solid var(--primary);

color:var(--primary);

}

.btn-outline:hover{

background:var(--primary);

color:#fff;

}

/*==========================================================
ENTERPRISE NAVIGATION
==========================================================*/

/*=========================================================
NAVBAR
=========================================================*/

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    padding:18px 0;

    z-index:1000;

    box-shadow:0 2px 20px rgba(0,0,0,.08);

}
.navbar::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:3px;

background:linear-gradient(
90deg,
#2F80ED,
#14B8A6,
#F59E0B
);

}

.nav-container{

max-width:1320px;

height:92px;

margin:auto;

padding:0 35px;

display:flex;

justify-content:space-between;

align-items:center;

}

/*==========================================================
LOGO
==========================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:#2563eb;

}

.logo h2{

    color:#2563eb;

    margin:0;

}

.logo span{

    color:#64748b;

    font-size:13px;

}

.logo-icon{

    width:52px;

    height:52px;

    border-radius:14px;

    background:#2563eb;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.logo-icon i{

font-size:30px;

color:#fff;

}

.logo h2{

margin:0;

font-size:28px;

font-weight:800;

letter-spacing:-1px;

color:#fff;

}

.logo span{

display:block;

margin-top:4px;

font-size:12px;

letter-spacing:1.2px;

text-transform:uppercase;

color:#CBD5E1;

}

/*==========================================================
MENU
==========================================================*/

nav{

margin-left:auto;

margin-right:45px;

}

.nav-links{

    display:flex;

    gap:35px;

    list-style:none;

}

.nav-links a{

    color:#1e3a8a;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#2563eb;

}

/* Animated underline */

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:3px;

border-radius:20px;

background:linear-gradient(
90deg,
#2F80ED,
#14B8A6
);

transition:.35s;

}

.nav-links a:hover::after{

width:100%;

}

/*==========================================================
BUTTONS
==========================================================*/

.nav-actions{

display:flex;

align-items:center;

gap:16px;

}

.nav-actions .btn{

padding:14px 26px;

border-radius:12px;

font-size:14px;

font-weight:700;

}

.btn-outline{

    border:2px solid #2563eb;

    color:#2563eb;

    background:#ffffff;

}

.btn-outline:hover{

    background:#2563eb;

    color:#ffffff;

}

.nav-actions .btn-outline:hover{

background:#fff;

color:#081827;

}

.nav-actions .btn-primary{

background:linear-gradient(
135deg,
#2F80ED,
#0E7490
);

border:none;

color:#fff;

box-shadow:

0 12px 28px rgba(47,128,237,.30);

}

.nav-actions .btn-primary:hover{

transform:translateY(-3px);

box-shadow:

0 18px 38px rgba(47,128,237,.40);

}

/*==========================================================
SCROLLED NAVBAR
==========================================================*/

.navbar.scrolled{

height:78px;

background:rgba(6,18,31,.97);

box-shadow:

0 18px 50px rgba(0,0,0,.18);

}

.navbar.scrolled .nav-container{

height:78px;

}

.navbar.scrolled .logo-icon{

width:56px;

height:56px;

}

.navbar.scrolled .logo h2{

font-size:25px;

}

/*==========================================================
MOBILE
==========================================================*/

@media(max-width:1100px){

.nav-links{

gap:22px;

}

.nav-actions .btn{

padding:12px 18px;

}

}

@media(max-width:950px){

.nav-container{

flex-wrap:wrap;

height:auto;

padding:18px 25px;

}

nav{

width:100%;

margin:20px 0;

}

.nav-links{

justify-content:center;

flex-wrap:wrap;

}

.nav-actions{

width:100%;

justify-content:center;

margin-top:20px;

}

}

@media(max-width:650px){

.logo h2{

font-size:23px;

}

.logo span{

font-size:11px;

}

.logo-icon{

width:56px;

height:56px;

}

.nav-links{

gap:16px;

}

.nav-links a{

font-size:14px;

}

.nav-actions{

flex-direction:column;

}

.nav-actions .btn{

width:100%;

}

}

.nav-links a,
.logo h2,
.logo span{

    color:#1e3a8a;

}


/*==========================================================
HERO SECTION
==========================================================*/

.hero{

position:relative;

overflow:hidden;

padding:180px 0 120px;

background:
linear-gradient(
135deg,
#071726 0%,
#0B3D91 45%,
#0F766E 100%
);

color:#fff;

}

/*==========================================================
BACKGROUND EFFECTS
==========================================================*/

.hero::before{

content:"";

position:absolute;

top:-180px;

right:-180px;

width:700px;

height:700px;

border-radius:50%;

background:

radial-gradient(

rgba(255,255,255,.12),

transparent 70%

);

}

.hero::after{

content:"";

position:absolute;

bottom:-220px;

left:-200px;

width:650px;

height:650px;

border-radius:50%;

background:

radial-gradient(

rgba(20,184,166,.18),

transparent 70%

);

}

/*==========================================================
LAYOUT
==========================================================*/

.hero-grid{

display:grid;

grid-template-columns:1.15fr .85fr;

align-items:center;

gap:80px;

position:relative;

z-index:2;

}

/*==========================================================
LEFT SIDE
==========================================================*/

.hero-content{

max-width:700px;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:12px;

padding:10px 22px;

margin-bottom:30px;

border-radius:40px;

background:rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(12px);

font-size:14px;

font-weight:600;

color:#E2E8F0;

}

.hero-badge i{

font-size:18px;

color:#38BDF8;

}

.hero h1{

font-size:62px;

line-height:1.08;

font-weight:800;

margin-bottom:28px;

letter-spacing:-2px;

color:#fff;

}

.hero p{

font-size:20px;

line-height:1.9;

color:#CBD5E1;

max-width:620px;

margin-bottom:45px;

}

/*==========================================================
BUTTONS
==========================================================*/

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.hero-buttons .btn{

padding:18px 34px;

border-radius:14px;

font-size:15px;

font-weight:700;

}

/*==========================================================
RIGHT SIDE
==========================================================*/

.hero-image{

display:flex;

justify-content:flex-end;

}

.hero-card{

width:100%;

max-width:430px;

background:rgba(255,255,255,.96);

border-radius:24px;

padding:35px;

box-shadow:

0 40px 80px rgba(0,0,0,.25);

position:relative;

overflow:hidden;

}

.hero-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:

linear-gradient(

90deg,

#2563EB,

#14B8A6,

#F59E0B

);

}

.hero-card h3{

display:flex;

align-items:center;

gap:12px;

font-size:24px;

margin-bottom:30px;

color:#0F172A;

}

.hero-card h3 i{

color:#2563EB;

}

/*==========================================================
METRICS
==========================================================*/

.hero-metric{

padding:18px 0;

border-bottom:1px solid #E2E8F0;

}

.hero-metric:last-child{

border:none;

}

.hero-metric h2{

font-size:42px;

font-weight:800;

color:#2563EB;

margin-bottom:8px;

}

.hero-metric span{

display:block;

font-size:15px;

font-weight:600;

color:#64748B;

}

/*==========================================================
FLOATING CARD EFFECT
==========================================================*/

.hero-card{

animation:floatCard 6s ease-in-out infinite;

}

@keyframes floatCard{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0px);

}

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-content{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

justify-content:center;

margin-top:60px;

}

.hero h1{

font-size:52px;

}

}

@media(max-width:768px){

.hero{

padding:150px 0 90px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons .btn{

width:100%;

}

.hero-card{

max-width:100%;

}

}

/*==========================================================
QUICK STATS
Enterprise KPI Section
==========================================================*/

.stats{

position:relative;

margin-top:-70px;

z-index:20;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}

.stat-box{

position:relative;

background:rgba(255,255,255,.96);

backdrop-filter:blur(18px);

border-radius:22px;

padding:38px 30px;

text-align:center;

overflow:hidden;

border:1px solid rgba(226,232,240,.9);

box-shadow:

0 25px 60px rgba(15,23,42,.10);

transition:.45s;

}

.stat-box::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(

90deg,

#2563EB,

#14B8A6,

#F59E0B

);

}

.stat-box::after{

content:"";

position:absolute;

top:-80px;

right:-80px;

width:180px;

height:180px;

border-radius:50%;

background:

radial-gradient(

rgba(37,99,235,.10),

transparent 70%

);

transition:.45s;

}

.stat-box:hover{

transform:translateY(-12px);

box-shadow:

0 35px 80px rgba(15,23,42,.18);

}

.stat-box:hover::after{

transform:scale(1.3);

}

.stat-box h2{

font-size:54px;

font-weight:800;

margin-bottom:14px;

background:linear-gradient(

135deg,

#2563EB,

#0F766E

);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

line-height:1;

}

.stat-box p{

font-size:15px;

font-weight:600;

letter-spacing:.4px;

text-transform:uppercase;

color:#64748B;

margin:0;

}

/*==========================================================
Hover Accent
==========================================================*/

.stat-box:hover h2{

transform:scale(1.05);

transition:.35s;

}

.stat-box:hover p{

color:#0B3D91;

}

/*==========================================================
Responsive
==========================================================*/

@media(max-width:1100px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.stats{

margin-top:0;

padding-top:40px;

}

.stats-grid{

grid-template-columns:1fr;

gap:20px;

}

.stat-box{

padding:30px;

}

.stat-box h2{

font-size:44px;

}

}

/*==========================================================
ABOUT SCHEMECLOUD
==========================================================*/

#about{

position:relative;

background:#ffffff;

padding:130px 0;

overflow:hidden;

}

#about::before{

content:"";

position:absolute;

top:-220px;

right:-180px;

width:620px;

height:620px;

border-radius:50%;

background:

radial-gradient(

rgba(37,99,235,.06),

transparent 72%

);

}

.about-grid{

display:grid;

grid-template-columns:1fr 1.05fr;

gap:90px;

align-items:center;

position:relative;

z-index:2;

}

/*==========================================================
IMAGE
==========================================================*/

.about-image{

position:relative;

}

.about-image img{

width:100%;

display:block;

border-radius:24px;

box-shadow:

0 30px 80px rgba(15,23,42,.14);

transition:.45s;

}

.about-image:hover img{

transform:scale(1.02);

}

.about-badge{

position:absolute;

bottom:35px;

right:-35px;

width:260px;

padding:28px;

border-radius:22px;

background:rgba(255,255,255,.98);

backdrop-filter:blur(14px);

box-shadow:

0 25px 60px rgba(15,23,42,.15);

border:1px solid #E2E8F0;

}

.about-badge i{

font-size:34px;

color:#2563EB;

margin-bottom:14px;

}

.about-badge h3{

font-size:22px;

margin-bottom:10px;

color:#0F172A;

}

.about-badge p{

font-size:15px;

line-height:1.7;

color:#64748B;

margin:0;

}

/*==========================================================
CONTENT
==========================================================*/

.about-content h3{

font-size:38px;

margin-bottom:28px;

line-height:1.25;

color:#0F172A;

}

.about-content p{

font-size:18px;

line-height:1.95;

margin-bottom:24px;

color:#475569;

}

/*==========================================================
FEATURE GRID
==========================================================*/

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-top:45px;

}

.about-features div{

display:flex;

align-items:center;

gap:14px;

padding:18px 20px;

background:#F8FAFC;

border-radius:16px;

border:1px solid #E2E8F0;

font-weight:600;

font-size:15px;

transition:.35s;

}

.about-features div:hover{

transform:translateY(-6px);

background:#ffffff;

box-shadow:

0 18px 40px rgba(15,23,42,.08);

}

.about-features i{

width:46px;

height:46px;

display:flex;

justify-content:center;

align-items:center;

border-radius:14px;

background:linear-gradient(

135deg,

#2563EB,

#0F766E

);

color:#fff;

font-size:20px;

flex-shrink:0;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.about-grid{

grid-template-columns:1fr;

gap:60px;

}

.about-badge{

right:20px;

bottom:20px;

}

}

@media(max-width:768px){

.about-features{

grid-template-columns:1fr;

}

.about-content h3{

font-size:30px;

}

.about-content p{

font-size:17px;

}

.about-badge{

position:relative;

right:auto;

bottom:auto;

margin-top:25px;

width:100%;

}

}
/*==========================================================
MISSION • VISION • VALUES
==========================================================*/

.mission-section{

background:linear-gradient(

180deg,

#F8FAFC,

#FFFFFF

);

position:relative;

overflow:hidden;

}

.mission-section::before{

content:"";

position:absolute;

top:-220px;

left:-180px;

width:520px;

height:520px;

border-radius:50%;

background:

radial-gradient(

rgba(37,99,235,.05),

transparent 70%

);

}

.mission-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

position:relative;

z-index:2;

}

.mission-card{

background:#fff;

padding:45px;

border-radius:24px;

border:1px solid #E2E8F0;

box-shadow:

0 20px 45px rgba(15,23,42,.06);

transition:.4s;

position:relative;

overflow:hidden;

}

.mission-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(

90deg,

#2563EB,

#0F766E,

#14B8A6

);

}

.mission-card:hover{

transform:translateY(-12px);

box-shadow:

0 35px 70px rgba(15,23,42,.12);

}

.mission-icon{

width:82px;

height:82px;

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(

135deg,

#2563EB,

#0F766E

);

color:#fff;

font-size:34px;

margin-bottom:30px;

box-shadow:

0 20px 40px rgba(37,99,235,.25);

}

.mission-card h3{

font-size:28px;

margin-bottom:18px;

color:#0F172A;

}

.mission-card p{

font-size:17px;

line-height:1.9;

color:#64748B;

}

.mission-card ul{

list-style:none;

padding:0;

margin-top:25px;

}

.mission-card li{

display:flex;

align-items:center;

gap:12px;

padding:12px 0;

font-weight:600;

color:#334155;

border-bottom:1px solid #EDF2F7;

}

.mission-card li:last-child{

border:none;

}

.mission-card li i{

color:#0F766E;

font-size:18px;

}

@media(max-width:992px){

.mission-grid{

grid-template-columns:1fr;

}

}

/*==========================================================
WHY WE EXIST
==========================================================*/

.why-section{

background:#ffffff;

position:relative;

overflow:hidden;

}

.why-section::before{

content:"";

position:absolute;

right:-180px;

top:-150px;

width:550px;

height:550px;

border-radius:50%;

background:

radial-gradient(

rgba(15,118,110,.05),

transparent 70%

);

}

.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

position:relative;

z-index:2;

}

.why-card{

background:#fff;

padding:42px;

border-radius:24px;

border:1px solid #E5E7EB;

transition:.4s;

box-shadow:

0 18px 45px rgba(15,23,42,.05);

position:relative;

overflow:hidden;

}

.why-card:hover{

transform:translateY(-12px);

box-shadow:

0 35px 70px rgba(15,23,42,.12);

}

.challenge{

border-top:6px solid #DC2626;

}

.solution{

border-top:6px solid #2563EB;

}

.impact{

border-top:6px solid #0F766E;

}

.why-icon{

width:82px;

height:82px;

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:#fff;

margin-bottom:28px;

}

.challenge .why-icon{

background:linear-gradient(135deg,#DC2626,#EF4444);

}

.solution .why-icon{

background:linear-gradient(135deg,#2563EB,#1D4ED8);

}

.impact .why-icon{

background:linear-gradient(135deg,#0F766E,#14B8A6);

}

.why-card h3{

font-size:28px;

margin-bottom:18px;

color:#0F172A;

}

.why-card p{

color:#64748B;

line-height:1.9;

margin-bottom:28px;

}

.why-card ul{

list-style:none;

padding:0;

margin:0;

}

.why-card li{

display:flex;

align-items:center;

gap:12px;

padding:12px 0;

border-bottom:1px solid #EEF2F7;

font-weight:600;

color:#334155;

}

.why-card li:last-child{

border:none;

}

.challenge li i{

color:#DC2626;

}

.solution li i{

color:#2563EB;

}

.impact li i{

color:#0F766E;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

}

/*==========================================================
ENTERPRISE SOLUTIONS
==========================================================*/

.solutions-section{

background:linear-gradient(
180deg,
#F8FAFC 0%,
#FFFFFF 100%
);

position:relative;

overflow:hidden;

}

.solutions-section::before{

content:"";

position:absolute;

top:-250px;

right:-180px;

width:600px;

height:600px;

border-radius:50%;

background:

radial-gradient(

rgba(37,99,235,.05),

transparent 70%

);

}

.solutions-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

position:relative;

z-index:2;

}

/*==========================================================
SERVICE CARD
==========================================================*/

.solution-card{

position:relative;

background:#fff;

padding:42px;

border-radius:26px;

border:1px solid #E2E8F0;

overflow:hidden;

transition:.45s;

box-shadow:

0 20px 45px rgba(15,23,42,.06);

}

.solution-card:hover{

transform:translateY(-12px);

box-shadow:

0 35px 80px rgba(15,23,42,.14);

}

/*==========================================================
TOP BORDER
==========================================================*/

.solution-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(

90deg,

#2563EB,

#0F766E,

#14B8A6

);

}

/*==========================================================
FEATURED CARD
==========================================================*/

.featured{

background:linear-gradient(

135deg,

#0B3D91,

#0F766E

);

color:#fff;

}

.featured h3,

.featured p,

.featured li{

color:#fff;

}

.featured::before{

background:linear-gradient(

90deg,

#38BDF8,

#F59E0B,

#22C55E

);

}

/*==========================================================
TOP
==========================================================*/

.solution-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:30px;

}

/*==========================================================
ICON
==========================================================*/

.solution-icon{

width:78px;

height:78px;

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(

135deg,

#2563EB,

#0F766E

);

color:#fff;

font-size:34px;

box-shadow:

0 15px 35px rgba(37,99,235,.25);

}

.security{

background:linear-gradient(

135deg,

#1D4ED8,

#2563EB

);

}

.communication{

background:linear-gradient(

135deg,

#0F766E,

#14B8A6

);

}

.impact{

background:linear-gradient(

135deg,

#0B3D91,

#2563EB

);

}

.featured .solution-icon{

background:rgba(255,255,255,.15);

backdrop-filter:blur(10px);

}

/*==========================================================
LABEL
==========================================================*/

.solution-label{

padding:8px 18px;

border-radius:40px;

background:rgba(255,255,255,.12);

font-size:13px;

font-weight:700;

letter-spacing:.5px;

text-transform:uppercase;

}

.solution-card h3{

font-size:30px;

margin-bottom:20px;

line-height:1.3;

color:#0F172A;

}

.solution-card p{

font-size:17px;

line-height:1.9;

color:#64748B;

margin-bottom:30px;

}

/*==========================================================
FEATURE LIST
==========================================================*/

.solution-card ul{

list-style:none;

padding:0;

margin:0 0 35px;

}

.solution-card li{

display:flex;

align-items:center;

gap:12px;

padding:12px 0;

border-bottom:1px solid #EDF2F7;

font-size:15px;

font-weight:600;

color:#334155;

}

.solution-card li:last-child{

border:none;

}

.solution-card li i{

color:#16A34A;

font-size:18px;

}

.featured li{

border-color:rgba(255,255,255,.15);

}

.featured li i{

color:#FBBF24;

}

/*==========================================================
BUTTON
==========================================================*/

.solution-card .btn{

margin-top:10px;

}

/*==========================================================
HOVER EFFECT
==========================================================*/

.solution-card:hover .solution-icon{

transform:rotate(-8deg) scale(1.08);

transition:.4s;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1100px){

.solutions-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.solution-card{

padding:30px;

}

.solution-card h3{

font-size:26px;

}

.solution-icon{

width:65px;

height:65px;

font-size:28px;

}

}

/*==========================================================
CAPABILITIES
==========================================================*/

.capabilities-section{

background:#ffffff;

position:relative;

overflow:hidden;

}

.capabilities-section::before{

content:"";

position:absolute;

left:-220px;

top:-180px;

width:650px;

height:650px;

border-radius:50%;

background:

radial-gradient(

rgba(15,118,110,.05),

transparent 72%

);

}

.capabilities-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

position:relative;

z-index:2;

}

/*================================*/

.capability-card{

background:#fff;

border-radius:24px;

padding:38px;

border:1px solid #E2E8F0;

transition:.45s;

position:relative;

overflow:hidden;

box-shadow:

0 15px 40px rgba(15,23,42,.05);

}

.capability-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(

90deg,

#2563EB,

#14B8A6,

#0F766E

);

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.capability-card:hover::before{

transform:scaleX(1);

}

.capability-card:hover{

transform:translateY(-12px);

box-shadow:

0 30px 70px rgba(15,23,42,.12);

}

/*================================*/

.capability-icon{

width:78px;

height:78px;

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(

135deg,

#2563EB,

#0F766E

);

color:#fff;

font-size:34px;

margin-bottom:28px;

box-shadow:

0 18px 40px rgba(37,99,235,.20);

transition:.4s;

}

.capability-card:hover .capability-icon{

transform:rotate(-8deg) scale(1.08);

}

.capability-card h3{

font-size:25px;

margin-bottom:16px;

color:#0F172A;

}

.capability-card p{

font-size:16px;

line-height:1.85;

color:#64748B;

margin:0;

}

/*================================*/

@media(max-width:1200px){

.capabilities-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.capabilities-grid{

grid-template-columns:1fr;

}

.capability-card{

padding:30px;

}

.capability-icon{

width:65px;

height:65px;

font-size:28px;

}

.capability-card h3{

font-size:22px;

}

}

/*==========================================================
SECTOR SOLUTIONS
==========================================================*/

.sector-section{

background:linear-gradient(
180deg,
#F8FAFC,
#FFFFFF
);

position:relative;

overflow:hidden;

}

.sector-section::before{

content:"";

position:absolute;

right:-250px;

bottom:-250px;

width:650px;

height:650px;

border-radius:50%;

background:

radial-gradient(

rgba(37,99,235,.05),

transparent 72%

);

}

.sector-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

position:relative;

z-index:2;

}

/*=====================================*/

.sector-card{

background:#fff;

padding:40px;

border-radius:24px;

border:1px solid #E2E8F0;

transition:.45s;

position:relative;

overflow:hidden;

box-shadow:

0 18px 45px rgba(15,23,42,.05);

}

.sector-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(

90deg,

#2563EB,

#14B8A6,

#0F766E

);

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.sector-card:hover::before{

transform:scaleX(1);

}

.sector-card:hover{

transform:translateY(-12px);

box-shadow:

0 35px 70px rgba(15,23,42,.12);

}

/*=====================================*/

.sector-icon{

width:80px;

height:80px;

display:flex;

justify-content:center;

align-items:center;

border-radius:22px;

background:linear-gradient(

135deg,

#2563EB,

#0F766E

);

color:#fff;

font-size:34px;

margin-bottom:28px;

box-shadow:

0 20px 45px rgba(37,99,235,.22);

transition:.35s;

}

.sector-card:hover .sector-icon{

transform:rotate(-8deg) scale(1.08);

}

.sector-card h3{

font-size:26px;

margin-bottom:18px;

color:#0F172A;

}

.sector-card p{

font-size:16px;

line-height:1.9;

color:#64748B;

margin-bottom:30px;

}

/*=====================================*/

.sector-tags{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.sector-tags span{

padding:10px 18px;

border-radius:40px;

background:#EFF6FF;

color:#2563EB;

font-size:13px;

font-weight:700;

transition:.35s;

}

.sector-card:hover .sector-tags span{

background:#2563EB;

color:#fff;

}

/*=====================================*/

@media(max-width:1200px){

.sector-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.sector-grid{

grid-template-columns:1fr;

}

.sector-card{

padding:30px;

}

.sector-icon{

width:68px;

height:68px;

font-size:28px;

}

}

/*==========================================================
TRANSFORMATION FRAMEWORK
==========================================================*/

.framework-section{

background:#ffffff;

position:relative;

overflow:hidden;

}

.framework-section::before{

content:"";

position:absolute;

top:-250px;

left:-220px;

width:700px;

height:700px;

border-radius:50%;

background:

radial-gradient(

rgba(37,99,235,.05),

transparent 72%

);

}

.framework-grid{

display:grid;

grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;

align-items:center;

gap:25px;

position:relative;

z-index:2;

}

/*==============================*/

.framework-card{

background:#fff;

padding:40px;

border-radius:24px;

border:1px solid #E2E8F0;

position:relative;

transition:.45s;

box-shadow:

0 20px 45px rgba(15,23,42,.05);

text-align:center;

overflow:hidden;

}

.framework-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(

90deg,

#2563EB,

#14B8A6,

#0F766E

);

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.framework-card:hover::before{

transform:scaleX(1);

}

.framework-card:hover{

transform:translateY(-10px);

box-shadow:

0 35px 70px rgba(15,23,42,.12);

}

/*==============================*/

.framework-number{

position:absolute;

top:20px;

right:25px;

font-size:38px;

font-weight:800;

color:#E2E8F0;

}

.framework-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:25px;

display:flex;

justify-content:center;

align-items:center;

border-radius:22px;

background:linear-gradient(

135deg,

#2563EB,

#0F766E

);

color:#fff;

font-size:34px;

box-shadow:

0 20px 40px rgba(37,99,235,.22);

transition:.35s;

}

.framework-card:hover .framework-icon{

transform:rotate(-8deg) scale(1.08);

}

.framework-card h3{

font-size:28px;

margin-bottom:18px;

color:#0F172A;

}

.framework-card p{

font-size:16px;

line-height:1.9;

color:#64748B;

}

/*==============================*/

.framework-arrow{

font-size:42px;

color:#2563EB;

display:flex;

justify-content:center;

align-items:center;

}

/*==============================*/

@media(max-width:1200px){

.framework-grid{

grid-template-columns:1fr;

}

.framework-arrow{

transform:rotate(90deg);

font-size:36px;

}

.framework-card{

text-align:left;

}

.framework-icon{

margin-left:0;

}

.framework-number{

right:20px;

}

}

@media(max-width:768px){

.framework-card{

padding:30px;

}

.framework-icon{

width:65px;

height:65px;

font-size:28px;

}

.framework-card h3{

font-size:24px;

}

}

/*==========================================================
IMPACT SECTION
==========================================================*/

.impact-section{

padding:130px 0;

background:
linear-gradient(
180deg,
#ffffff 0%,
#f8fbff 100%
);

position:relative;

overflow:hidden;

}

.impact-section::before{

content:"";

position:absolute;

top:-250px;

right:-180px;

width:650px;

height:650px;

border-radius:50%;

background:

radial-gradient(

rgba(37,99,235,.08),

transparent 70%

);

}

.impact-wrapper{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:80px;

align-items:center;

position:relative;

z-index:2;

}

.impact-left h3{

font-size:34px;

margin-bottom:25px;

color:#081220;

}

.impact-left p{

font-size:18px;

line-height:1.9;

color:#64748b;

margin-bottom:25px;

}

.impact-quote{

margin-top:50px;

padding:35px;

border-left:5px solid #2563eb;

background:#ffffff;

border-radius:18px;

box-shadow:

0 25px 60px rgba(15,23,42,.08);

position:relative;

}

.impact-quote i{

font-size:40px;

color:#2563eb;

margin-bottom:15px;

}

.impact-quote p{

margin:0;

font-style:italic;

font-size:18px;

color:#334155;

}

.impact-right{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.impact-stat-card{

background:#ffffff;

border-radius:22px;

padding:40px 30px;

text-align:center;

border:1px solid #e2e8f0;

transition:.4s;

box-shadow:

0 18px 45px rgba(15,23,42,.06);

}

.impact-stat-card:hover{

transform:translateY(-12px);

box-shadow:

0 35px 70px rgba(37,99,235,.15);

border-color:#2563eb;

}

.impact-icon{

width:72px;

height:72px;

margin:auto auto 20px;

border-radius:18px;

display:flex;

justify-content:center;

align-items:center;

background:

linear-gradient(

135deg,

#2563eb,

#0F766E

);

color:#fff;

font-size:30px;

box-shadow:

0 15px 35px rgba(37,99,235,.25);

}

.impact-stat-card h2{

font-size:46px;

color:#0B3D91;

margin-bottom:10px;

font-weight:800;

}

.impact-stat-card span{

font-size:15px;

font-weight:600;

color:#64748b;

display:block;

line-height:1.6;

}

@media(max-width:992px){

.impact-wrapper{

grid-template-columns:1fr;

}

.impact-right{

margin-top:40px;

}

}

@media(max-width:700px){

.impact-right{

grid-template-columns:1fr;

}

}

/*==========================================================
COMMUNITY INVESTMENT
==========================================================*/

.community-section{

padding:130px 0;

background:

linear-gradient(
135deg,
#081220 0%,
#0B3D91 55%,
#0F766E 100%
);

position:relative;

overflow:hidden;

}

.community-section::before{

content:"";

position:absolute;

top:-250px;

left:-180px;

width:650px;

height:650px;

border-radius:50%;

background:

radial-gradient(

rgba(255,255,255,.08),

transparent 72%

);

}

.community-grid{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:80px;

align-items:center;

position:relative;

z-index:2;

}

.section-label{

display:inline-block;

padding:10px 22px;

border-radius:40px;

background:rgba(255,255,255,.12);

color:#ffffff;

font-size:13px;

font-weight:700;

letter-spacing:1px;

margin-bottom:25px;

}

.community-content h2{

font-size:48px;

line-height:1.2;

color:#ffffff;

margin-bottom:30px;

}

.community-content p{

font-size:18px;

line-height:1.9;

color:rgba(255,255,255,.82);

margin-bottom:28px;

}

.community-buttons{

display:flex;

gap:18px;

margin-top:40px;

flex-wrap:wrap;

}

/*================================*/

.community-card{

background:#ffffff;

padding:45px;

border-radius:28px;

box-shadow:

0 40px 80px rgba(0,0,0,.22);

position:relative;

overflow:hidden;

}

.community-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:6px;

background:

linear-gradient(
90deg,
#2563EB,
#14B8A6,
#16A34A
);

}

.community-card h3{

font-size:28px;

margin-bottom:35px;

color:#081220;

}

.community-list{

display:grid;

gap:20px;

}

.community-list div{

display:flex;

align-items:center;

gap:18px;

padding:18px 22px;

border-radius:14px;

background:#F8FAFC;

transition:.35s;

font-weight:600;

color:#334155;

}

.community-list div:hover{

background:#EFF6FF;

transform:translateX(8px);

}

.community-list i{

font-size:22px;

color:#16A34A;

}

/*================================*/

@media(max-width:992px){

.community-grid{

grid-template-columns:1fr;

}

.community-card{

margin-top:40px;

}

}

@media(max-width:768px){

.community-content h2{

font-size:36px;

}

.community-card{

padding:30px;

}

.community-buttons{

flex-direction:column;

}

.community-buttons .btn{

width:100%;

}

}

/*==========================================================
WHY CHOOSE SCHEMECLOUD
==========================================================*/

.trust-section{

background:#ffffff;

position:relative;

overflow:hidden;

}

.trust-section::before{

content:"";

position:absolute;

left:-250px;

top:-200px;

width:650px;

height:650px;

border-radius:50%;

background:

radial-gradient(

rgba(37,99,235,.05),

transparent 72%

);

}

.trust-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

position:relative;

z-index:2;

}

.trust-card{

background:#fff;

padding:42px 35px;

border-radius:24px;

border:1px solid #E2E8F0;

transition:.4s;

text-align:center;

box-shadow:

0 18px 45px rgba(15,23,42,.05);

position:relative;

overflow:hidden;

}

.trust-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:

linear-gradient(

90deg,

#2563EB,

#14B8A6,

#16A34A

);

transform:scaleX(0);

transition:.35s;

transform-origin:left;

}

.trust-card:hover::before{

transform:scaleX(1);

}

.trust-card:hover{

transform:translateY(-12px);

box-shadow:

0 35px 70px rgba(15,23,42,.12);

}

.trust-icon{

width:82px;

height:82px;

margin:auto;

margin-bottom:28px;

border-radius:22px;

display:flex;

justify-content:center;

align-items:center;

background:

linear-gradient(

135deg,

#2563EB,

#0F766E

);

color:#fff;

font-size:34px;

box-shadow:

0 20px 45px rgba(37,99,235,.22);

transition:.35s;

}

.trust-card:hover .trust-icon{

transform:rotate(-8deg) scale(1.08);

}

.trust-card h3{

font-size:25px;

margin-bottom:18px;

color:#0F172A;

}

.trust-card p{

font-size:16px;

line-height:1.8;

color:#64748B;

}

@media(max-width:1200px){

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.trust-grid{

grid-template-columns:1fr;

}

}

/*=========================================================
EXECUTIVE CTA
=========================================================*/

.cta-section{

    padding:120px 0;

    background:#ffffff;

}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:70px;

    border-radius:30px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);

}

.cta-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.18);

    color:#ffffff;

    font-weight:600;

    margin-bottom:25px;

}

.cta-box h2{

    font-size:44px;

    margin-bottom:25px;

    line-height:1.2;

}

.cta-box p{

    max-width:720px;

    margin:0 auto 40px;

    opacity:.9;

    font-size:18px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-light{

    background:#fff;

    color:#0f172a;

    border-radius:8px;

    padding:15px 35px;

    text-decoration:none;

    font-weight:600;

}

.btn-light:hover{

    background:#f3f4f6;

}


/*=========================================================
FOOTER
=========================================================*/

.footer{

     border-top:1px solid rgba(255,255,255,.08);
     background:linear-gradient(
        180deg,
        #172554 0%,
        #0f172a 45%,
        #020617 100%
    );

    color:#dbeafe;

    padding:70px 0 25px;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

    flex-wrap:wrap;

}

.footer-brand{

    max-width:380px;

}

.footer-brand h2{

    color:#fff;

    margin-bottom:15px;

}

.footer-brand p{

    line-height:1.8;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#38bdf8;

}



.footer-social a{

    width:44px;

    height:44px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    color:#60a5fa;
    background:#2563eb;

    transform:translateY(-4px);

}

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-contact div{

    display:flex;

    align-items:center;

    gap:12px;

}

.footer-divider{

    height:1px;

    background:rgba(255,255,255,.08);

    margin:40px 0 25px;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-social{

    display:flex;

    gap:15px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0f172a;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:#2563eb;

}