/*==================================================
JOCYT BUSINESS SUPPORT
Production Website
Version 2.0
==================================================*/

/*==============================
GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
ROOT COLOURS
==============================*/

:root{

--primary:#0B4F8A;
--primary-dark:#072F57;
--gold:#F4B400;
--gold-light:#FFD54F;
--white:#ffffff;
--light:#F7F9FC;
--text:#1E293B;
--grey:#64748B;
--border:#E5E7EB;
--shadow:0 20px 60px rgba(0,0,0,.08);

}

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

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:var(--light);
color:var(--text);
line-height:1.8;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1280px;
margin:auto;

}

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

.header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;

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

backdrop-filter:blur(16px);

border-bottom:1px solid rgba(0,0,0,.05);

transition:.35s;

}

.navbar{

display:flex;
justify-content:space-between;
align-items:center;
height:88px;

}

.logo img{

height:70px;

}

.nav-menu{

display:flex;
gap:34px;

}

.nav-menu a{

color:var(--text);
font-weight:500;
transition:.3s;

}

.nav-menu a:hover{

color:var(--primary);

}

.nav-buttons{

display:flex;
gap:15px;

}

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

.btn-primary{

background:var(--gold);
color:#000;

padding:14px 30px;

border-radius:50px;

font-weight:600;

transition:.3s;

display:inline-block;

box-shadow:0 15px 30px rgba(244,180,0,.25);

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-outline{

padding:14px 30px;

border-radius:50px;

border:2px solid var(--primary);

color:var(--primary);

font-weight:600;

transition:.3s;

display:inline-block;

}

.btn-outline:hover{

background:var(--primary);

color:white;

}

.mobile-toggle{

display:none;
font-size:28px;
cursor:pointer;

}

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

.hero{

padding-top:170px;
padding-bottom:100px;

background:linear-gradient(180deg,#ffffff,#F7F9FC);

}

.hero-grid{

display:grid;

grid-template-columns:1.1fr 1fr;

gap:80px;

align-items:center;

}

.hero-tag{

display:inline-flex;

align-items:center;

gap:10px;

background:#E8F2FB;

padding:10px 18px;

border-radius:40px;

font-size:14px;

font-weight:600;

color:var(--primary);

margin-bottom:25px;

}

.hero h1{

font-size:58px;

line-height:1.15;

font-weight:800;

margin-bottom:28px;

color:var(--primary-dark);

}

.hero p{

font-size:18px;

color:var(--grey);

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:40px;

}

.hero-benefits{

display:grid;

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

gap:18px;

}

.hero-benefits div{

display:flex;

align-items:center;

gap:10px;

font-weight:500;

}

.hero-benefits i{

color:#16A34A;

}

/*==============================
IMAGE
==============================*/

.hero-image-card{

position:relative;

}

.hero-image-card img{

border-radius:24px;

box-shadow:var(--shadow);

}

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

.floating-card{

position:absolute;

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

backdrop-filter:blur(12px);

padding:18px 20px;

border-radius:18px;

box-shadow:0 20px 40px rgba(0,0,0,.12);

animation:float 4s ease-in-out infinite;

}

.sales{

top:35px;

left:-40px;

width:230px;

}

.dashboard{

bottom:40px;

left:-20px;

}

.support{

right:-25px;

top:55%;

}

.sales h4{

font-size:17px;

color:var(--primary);

margin-bottom:5px;

}

.sales span{

font-size:14px;

color:var(--grey);

}

/*==============================
SECTION TITLE
==============================*/

.freedom{

padding:120px 0;

background:white;

}

.section-title{

text-align:center;

max-width:900px;

margin:auto;

}

.section-title span{

display:inline-block;

background:#E8F2FB;

padding:8px 20px;

border-radius:40px;

font-size:14px;

font-weight:700;

color:var(--primary);

margin-bottom:20px;

}

.section-title h2{

font-size:42px;

margin-bottom:25px;

color:var(--primary-dark);

}

.section-title p{

font-size:18px;

color:var(--grey);

margin-bottom:20px;

}

/*==============================
ANIMATION
==============================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

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

@media(max-width:992px){

.hero-grid{

grid-template-columns:1fr;

}

.hero h1{

font-size:42px;

}

.hero-image-card{

margin-top:40px;

}

.nav-menu{

display:none;

}

.nav-buttons{

display:none;

}

.mobile-toggle{

display:block;

}

.hero-benefits{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.hero{

padding-top:140px;

}

.hero h1{

font-size:34px;

}

.section-title h2{

font-size:32px;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,

.btn-outline{

text-align:center;

width:100%;

}

.floating-card{

display:none;

}

}

@media(max-width:480px){

.logo img{

height:56px;

}

.navbar{

height:74px;

}

.hero p{

font-size:16px;

}

}
/*==================================
ACTIVE MENU
==================================*/

.nav-menu a.active{

color:var(--primary);

font-weight:700;

}

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

@media(max-width:992px){

.nav-menu{

position:absolute;

top:88px;

left:0;

width:100%;

background:white;

display:none;

flex-direction:column;

padding:30px;

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

}

.nav-menu.mobile-open{

display:flex;

}

}

/*==================================
REVEAL ANIMATION
==================================*/

.section-title,
.card,
.hero-left,
.hero-right,
.cta,
.stats,
.feature{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.show{

opacity:1;

transform:translateY(0);

}

/*==================================
BACK TO TOP
==================================*/

.top-button{

position:fixed;

right:25px;

bottom:25px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:var(--gold);

color:#000;

font-size:22px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.3s;

box-shadow:0 15px 30px rgba(0,0,0,.2);

z-index:999;

}

.show-top{

opacity:1;

visibility:visible;

}
/*=========================================
PROBLEMS
=========================================*/

.problems{

padding:120px 0;

background:#F7F9FC;

}

.problem-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.problem-card{

background:white;

padding:35px;

border-radius:18px;

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

transition:.35s;

}

.problem-card:hover{

transform:translateY(-10px);

}

.problem-card .icon{

width:65px;

height:65px;

background:#EAF4FD;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

color:#0B4F8A;

margin-bottom:25px;

}

.problem-footer{

text-align:center;

margin-top:70px;

font-size:20px;

max-width:900px;

margin-left:auto;

margin-right:auto;

}

/*=========================================
TRANSFORMATION
=========================================*/

.transformation{

padding:120px 0;

background:white;

}

.transform-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.transform-item{

background:#0B4F8A;

color:white;

padding:30px;

border-radius:18px;

font-size:18px;

display:flex;

gap:20px;

align-items:center;

}

.transform-item i{

font-size:28px;

color:#FFD54F;

}

/*=========================================
SOLUTIONS
=========================================*/

.solutions{

padding:120px 0;

background:#F7F9FC;

}

.solution-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.solution-card{

background:white;

padding:40px;

border-radius:20px;

box-shadow:0 20px 60px rgba(0,0,0,.06);

transition:.35s;

}

.solution-card:hover{

transform:translateY(-12px);

}

.solution-card h3{

color:#0B4F8A;

margin-bottom:18px;

font-size:24px;

}
/*====================================
GOAL
====================================*/

.goal{

padding:120px 0;

background:white;

}

.goal-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.goal-image img{

border-radius:25px;

box-shadow:var(--shadow);

}

.section-label{

display:inline-block;

padding:8px 18px;

background:#EAF4FD;

color:var(--primary);

border-radius:30px;

font-weight:700;

margin-bottom:20px;

}

.goal h2{

font-size:42px;

margin-bottom:25px;

color:var(--primary-dark);

}

/*===========================*/

.difference{

padding:120px 0;

background:#F7F9FC;

}

.difference-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.difference-card{

background:white;

padding:40px;

border-radius:20px;

text-align:center;

box-shadow:var(--shadow);

}

.difference-card i{

font-size:45px;

color:var(--gold);

margin-bottom:20px;

}

/*===========================*/

.impact{

padding:120px 0;

background:white;

}

.impact-grid{

display:grid;

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

gap:30px;

margin-top:60px;

}

.impact-card{

background:#0B4F8A;

color:white;

padding:40px;

border-radius:20px;

}

/*===========================*/

.industries{

padding:120px 0;

background:#F7F9FC;

}

.industry-grid{

display:grid;

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

gap:25px;

margin-top:60px;

}

.industry-grid div{

background:white;

padding:35px;

border-radius:18px;

text-align:center;

font-weight:600;

box-shadow:var(--shadow);

}

/*===========================*/

.cta{

padding:140px 0;

background:linear-gradient(135deg,#072F57,#0B4F8A);

color:white;

}

.cta-box{

max-width:900px;

margin:auto;

text-align:center;

}

.cta h2{

font-size:48px;

margin-bottom:25px;

}

/*===========================*/

.footer{

background:#041C36;

color:white;

padding:80px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:60px;

margin-bottom:40px;

}

.footer h3{

margin-bottom:20px;

}

.footer ul li{

margin-bottom:12px;

}

.footer a{

color:#ddd;

}

.footer hr{

border:0;

border-top:1px solid rgba(255,255,255,.1);

margin:30px 0;

}

.copyright{

text-align:center;

color:#bbb;

}

/*===========================*/

@media(max-width:992px){

.goal-grid,

.footer-grid{

grid-template-columns:1fr;

}

.industry-grid{

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

}

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:1fr;

}

.cta h2{

font-size:34px;

}

}