/* ==========================
GOOGLE FONT
========================== */

*{

margin:0;
padding:0;

box-sizing:border-box;

font-family:
'Poppins',sans-serif;

scroll-behavior:smooth;

}

body{

background:#f7f8fa;

color:#111;

overflow-x:hidden;

}


/* ==========================
CONTAINER
========================== */

.container{

width:90%;
max-width:1300px;

margin:auto;

}


/* ==========================
TOP BAR
========================== */

.top-bar{

background:#fff;

padding:12px 0;

border-bottom:

1px solid #ececec;

font-size:14px;

}

.top-bar .container{

display:flex;

justify-content:
space-between;

align-items:center;

}


/* ==========================
NAVBAR
========================== */

.navbar{

position:fixed;

top:0;
left:0;

width:100%;

z-index:999;

padding:20px 0;

background:

rgba(255,255,255,.75);

backdrop-filter:

blur(20px);

border-bottom:

1px solid rgba(255,255,255,.3);

}

.nav-container{

display:flex;

justify-content:
space-between;

align-items:center;

}

.logo{

font-size:32px;

font-weight:700;

text-decoration:none;

color:#111;

}

.logo span{

color:#0071e3;

}

.nav-links{

display:flex;

gap:35px;

list-style:none;

}

.nav-links a{

text-decoration:none;

font-weight:500;

color:#111;

transition:.3s;

}

.nav-links a:hover,
.nav-links .active{

color:#0071e3;

}

.menu-btn{

display:none;

font-size:30px;

}


/* ==========================
BUTTONS
========================== */

.btn{

display:inline-block;

padding:

14px 35px;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.4s;

background:#0071e3;

color:#fff;

box-shadow:

0 15px 35px
rgba(0,113,227,.25);

}

.btn:hover{

transform:

translateY(-6px);

}

.btn.secondary{

background:#fff;

color:#111;

}


/* ==========================
HERO
========================== */

.hero{
background:
linear-gradient(
rgba(255,255,255,.55),
rgba(255,255,255,.75)
),
url('../assets/services/services.jpg');
}

.hero{

position:relative;

min-height:100vh;
width:100%;
overflow:hidden;

display:flex;

align-items:center;

background:

linear-gradient(

rgba(255,255,255,.55),

rgba(255,255,255,.75)

),

url('../assets/background/hero.jpg');

background-size:cover;

background-position:center;

overflow:hidden;

}

.hero-content{

padding-top:120px;

}

.hero-text{

max-width:700px;

}

.hero-text h1{

font-size:72px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

}

.hero-text p{

font-size:20px;

color:#555;

line-height:1.8;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}



/* ==========================
SECTIONS
========================== */

section{

padding:120px 0;

}

.section-header{

text-align:center;

margin-bottom:70px;

}

.section-header h2{

font-size:52px;

font-weight:800;

margin-bottom:20px;

}

.section-header p{

font-size:18px;

color:#666;

}


/* ==========================
PRODUCT GRID
========================== */

.product-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}


/* ==========================
PRODUCT CARD
========================== */

.product-card{

background:

rgba(255,255,255,.7);

backdrop-filter:

blur(20px);

border:

1px solid rgba(255,255,255,.5);

border-radius:35px;

overflow:hidden;

padding-bottom:30px;

text-align:center;

transition:.5s;

box-shadow:

0 25px 60px
rgba(0,0,0,.08);

}

.product-card:hover{

transform:

translateY(-15px)
scale(1.03);

box-shadow:

0 35px 80px
rgba(0,0,0,.12);

}

.product-card img{

width:100%;

height:280px;

object-fit:cover;

transition:.5s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-card h3{

font-size:28px;

margin:

30px 0 15px;

}

.product-card p{

color:#666;

padding:

0 30px;

margin-bottom:30px;

line-height:1.8;

}


/* ==========================
CTA SECTION
========================== */

.cta-section{

background:

linear-gradient(
135deg,
#f5f7fa,
#ffffff
);

}

.cta-card{

background:

rgba(255,255,255,.8);

backdrop-filter:

blur(20px);

padding:70px;

border-radius:40px;

text-align:center;

box-shadow:

0 25px 70px
rgba(0,0,0,.08);

}

.cta-card h2{

font-size:48px;

margin-bottom:25px;

}

.cta-card p{

font-size:18px;

color:#666;

max-width:800px;

margin:auto;

line-height:1.8;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:45px;

flex-wrap:wrap;

}


/* ==========================
FOOTER
========================== */

footer{

background:#fff;

padding-top:90px;

border-top:

1px solid #ececec;

}

.footer-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:50px;

}

.footer-grid h3{

font-size:28px;

margin-bottom:25px;

}

.footer-grid p{

color:#666;

line-height:1.9;

}

.footer-grid a{

display:block;

margin-bottom:15px;

text-decoration:none;

color:#666;

transition:.3s;

}

.footer-grid a:hover{

color:#0071e3;

}

.copyright{

text-align:center;

padding:35px 0;

margin-top:70px;

border-top:

1px solid #ececec;

color:#777;

}




/* ==========================
SERVICES
========================== */

.services-grid{

display:flex;

flex-direction:column;

gap:80px;

}

.service-card{

display:flex;

align-items:center;

gap:50px;

background:

rgba(255,255,255,.75);

backdrop-filter:blur(20px);

padding:40px;

border-radius:35px;

box-shadow:

0 25px 60px
rgba(0,0,0,.08);

transition:.5s;

}

.service-card:hover{

transform:
translateY(-10px);

}


.service-text h3{

font-size:36px;

margin-bottom:20px;

}

.service-text p{

color:#666;

line-height:1.9;

font-size:17px;

}


/* ==========================
ABOUT
========================== */

.about-grid{

display:grid;

grid-template-columns:
1fr 1fr;

gap:80px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:40px;

box-shadow:

0 30px 70px
rgba(0,0,0,.1);

}

.about-content h2{

font-size:52px;

margin-bottom:25px;

}

.about-content p{

font-size:18px;

line-height:2;

color:#666;

}


/* ==========================
COUNTERS
========================== */

.counter-grid{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.counter-card{

background:#fff;

padding:35px;

border-radius:30px;

text-align:center;

box-shadow:

0 20px 50px
rgba(0,0,0,.08);

}

.counter-card h3{

font-size:42px;

color:#0071e3;

margin-bottom:10px;

}


/* ==========================
WHATSAPP BUTTON
========================== */

.whatsapp{

position:fixed;

right:30px;
bottom:30px;

width:70px;
height:70px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;
justify-content:center;

font-size:34px;

color:#fff;

text-decoration:none;

box-shadow:

0 20px 50px
rgba(37,211,102,.4);

z-index:999;

transition:.4s;

animation:

floatWhatsapp 2.5s infinite;

}

.whatsapp:hover{

transform:scale(1.1);

}


/* ==========================
ANIMATIONS
========================== */

@keyframes floatWhatsapp{

0%{

transform:
translateY(0px);

}

50%{

transform:
translateY(-10px);

}

100%{

transform:
translateY(0px);

}

}

@keyframes floating{

0%{

transform:
translateY(0);

}

50%{

transform:
translateY(-20px);

}

100%{

transform:
translateY(0);

}

}


/* ==========================
APPLE BACKGROUND EFFECT
========================== */

body::before{

content:"";

position:fixed;

top:-200px;
right:-200px;

width:500px;
height:500px;

background:

rgba(0,113,227,.08);

border-radius:50%;

filter:blur(120px);

z-index:-1;

}

body::after{

content:"";

position:fixed;

bottom:-250px;
left:-250px;

width:500px;
height:500px;

background:

rgba(255,170,0,.08);

border-radius:50%;

filter:blur(120px);

z-index:-1;

}


/* ==========================
SMOOTH TRANSITIONS
========================== */

a,
button,
img,
.product-card,
.service-card{

transition:.4s;

}









