/* ===================================
   GOOGLE FONT
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   ROOT
=================================== */

:root{

--primary:#D81B60;
--primary-dark:#b31550;
--secondary:#ffffff;

--dark:#111111;

--text:#444;

--light:#f8f9fa;

--border:rgba(216,27,96,.12);

--glass:rgba(255,255,255,.55);

--shadow:0 15px 45px rgba(0,0,0,.08);

--radius:22px;

}

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#fff;

color:var(--dark);

overflow-x:hidden;

}

/* ===================================
SECTION
=================================== */

section{

padding:90px 0;

position:relative;

}

.container{

max-width:1200px;

}

/* ===================================
HEADINGS
=================================== */

.section-tag{

display:inline-block;

padding:8px 18px;

background:rgba(216,27,96,.08);

border:1px solid rgba(216,27,96,.15);

border-radius:50px;

color:var(--primary);

font-weight:600;

font-size:.9rem;

}

.section-title{

font-size:44px;

font-weight:700;

margin-bottom:15px;

}

.section-text{

max-width:700px;

margin:auto;

color:#666;

}

/* ===================================
NAVBAR
=================================== */

.custom-navbar{

padding:18px 0;

background:rgba(255,255,255,.55);

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.logo-m{

font-size:38px;

font-weight:800;

color:#fff;

background:var(--dark);

padding:3px 12px;

border-radius:12px;

}

.logo-c{

font-size:38px;

font-weight:800;

color:var(--primary);

margin-left:2px;

}

.navbar-nav .nav-link{

font-weight:500;

color:#333;

margin:0 12px;

transition:.35s;

}

.navbar-nav .nav-link:hover{

color:var(--primary);

}

.navbar-nav .active{

color:var(--primary)!important;

}

/* ===================================
BUTTONS
=================================== */

.btn-pink{

background:var(--primary);

color:#fff;

padding:14px 28px;

border-radius:50px;

font-weight:600;

transition:.35s;

border:none;

}

.btn-pink:hover{

background:var(--primary-dark);

transform:translateY(-3px);

color:#fff;

}

.btn-glass{

padding:14px 28px;

border-radius:50px;

background:rgba(255,255,255,.55);

backdrop-filter:blur(18px);

border:1px solid rgba(216,27,96,.2);

font-weight:600;

color:#333;

transition:.35s;

}

.btn-glass:hover{

background:#fff;

transform:translateY(-3px);

}

/* ===================================
HERO
=================================== */

.hero{

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

position:relative;

}

.hero-title{

font-size:64px;

font-weight:800;

line-height:1.15;

}

.hero-title span{

color:var(--primary);

}

.hero-text{

font-size:18px;

color:#666;

margin-top:25px;

max-width:600px;

line-height:1.9;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:10px 18px;

border-radius:50px;

background:rgba(216,27,96,.08);

color:var(--primary);

font-weight:600;

}

.glass-card{

padding:50px;

border-radius:30px;

background:rgba(255,255,255,.55);

backdrop-filter:blur(20px);

box-shadow:var(--shadow);

border:1px solid rgba(255,255,255,.6);

}

.phone-circle{

width:130px;

height:130px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,var(--primary),#ff5c93);

font-size:55px;

color:#fff;

box-shadow:0 15px 40px rgba(216,27,96,.3);

}

/* ===================================
BACKGROUND BLOBS
=================================== */

.blob{

position:absolute;

border-radius:50%;

filter:blur(90px);

opacity:.25;

z-index:-1;

}

.blob1{

width:350px;

height:350px;

background:#ff4d94;

top:-80px;

right:-80px;

}

.blob2{

width:300px;

height:300px;

background:#ffc3d9;

left:-120px;

bottom:-120px;

}

/*==================================================
SERVICES
==================================================*/

.services{
background:#fff;
}

.service-card{

background:rgba(255,255,255,.65);

backdrop-filter:blur(18px);

border:1px solid rgba(216,27,96,.12);

border-radius:24px;

padding:35px;

transition:.4s;

height:100%;

box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.service-card:hover{

transform:translateY(-12px);

border-color:#D81B60;

box-shadow:0 25px 50px rgba(216,27,96,.18);

}

.service-icon{

width:80px;

height:80px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

background:linear-gradient(135deg,#D81B60,#ff5c93);

color:#fff;

margin-bottom:25px;

}

.service-card h4{

font-weight:700;

margin-bottom:15px;

}

.service-card p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

.service-btn{

text-decoration:none;

font-weight:600;

color:#D81B60;

}

.service-btn i{

margin-left:8px;

transition:.3s;

}

.service-btn:hover i{

margin-left:14px;

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{

background:#fafafa;

}

.feature-box{

background:#fff;

border-radius:24px;

padding:35px;

text-align:center;

transition:.4s;

border:1px solid rgba(216,27,96,.08);

height:100%;

}

.feature-box:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.feature-box i{

font-size:50px;

color:#D81B60;

margin-bottom:20px;

}

.feature-box h5{

font-weight:700;

margin-bottom:15px;

}

.feature-box p{

color:#666;

line-height:1.7;

}

/*==================================================
PROCESS
==================================================*/

.process-card{

position:relative;

background:#fff;

padding:40px 25px;

border-radius:25px;

text-align:center;

transition:.4s;

box-shadow:0 15px 35px rgba(0,0,0,.05);

height:100%;

}

.process-card:hover{

transform:translateY(-10px);

}

.process-number{

position:absolute;

top:18px;

right:18px;

width:42px;

height:42px;

border-radius:50%;

background:#D81B60;

color:#fff;

font-weight:700;

display:flex;

align-items:center;

justify-content:center;

}

.process-card i{

font-size:55px;

color:#D81B60;

margin-bottom:20px;

}

.process-card h4{

font-weight:700;

margin-bottom:15px;

}

.process-card p{

color:#666;

line-height:1.7;

}

/*==================================================
STATISTICS
==================================================*/

.stats-section{

background:linear-gradient(135deg,#D81B60,#ff5c93);

}

.glass-stats{

padding:60px;

border-radius:30px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(18px);

color:#fff;

}

.counter{

font-size:52px;

font-weight:800;

margin-bottom:10px;

}

.glass-stats p{

font-size:18px;

opacity:.95;

}

/*==================================================
BRANDS
==================================================*/

.brand-card{

background:#fff;

border-radius:22px;

padding:35px 20px;

text-align:center;

transition:.35s;

height:100%;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.brand-card:hover{

transform:translateY(-10px);

border:1px solid #D81B60;

}

.brand-card i{

font-size:45px;

color:#D81B60;

margin-bottom:20px;

}

.brand-card h5{

font-weight:600;

margin:0;

}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{
background:#fff;
}

.testimonial-card{

background:rgba(255,255,255,.70);

backdrop-filter:blur(20px);

border:1px solid rgba(216,27,96,.12);

border-radius:25px;

padding:35px;

transition:.4s;

height:100%;

box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.testimonial-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(216,27,96,.15);

}

.stars{

margin-bottom:20px;

}

.stars i{

color:#ffc107;

margin-right:3px;

font-size:18px;

}

.testimonial-card p{

color:#666;

line-height:1.8;

margin-bottom:25px;

font-style:italic;

}

.testimonial-card h5{

font-weight:700;

margin-bottom:5px;

}

.testimonial-card span{

color:#888;

font-size:14px;

}

/*=========================================
FAQ
=========================================*/

.faq-section{

background:#fafafa;

}

.accordion-item{

border:none;

border-radius:18px!important;

overflow:hidden;

margin-bottom:18px;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.accordion-button{

font-weight:600;

padding:22px;

background:#fff;

box-shadow:none!important;

}

.accordion-button:not(.collapsed){

background:#D81B60;

color:#fff;

}

.accordion-body{

padding:22px;

line-height:1.8;

color:#666;

}

/*=========================================
CTA
=========================================*/

.cta-box{

background:linear-gradient(135deg,#D81B60,#ff4d94);

padding:80px 50px;

border-radius:35px;

color:#fff;

box-shadow:0 25px 70px rgba(216,27,96,.30);

}

.cta-box h2{

font-size:48px;

font-weight:800;

margin-bottom:20px;

}

.cta-box p{

font-size:18px;

opacity:.95;

margin-bottom:35px;

}

/*=========================================
FOOTER
=========================================*/

.footer{

background:#111;

color:#ddd;

padding:80px 0 30px;

}

.footer h3,
.footer h5{

color:#fff;

margin-bottom:20px;

}

.footer p{

color:#aaa;

line-height:1.8;

}

.footer ul{

padding:0;

list-style:none;

}

.footer ul li{

margin-bottom:12px;

}

.footer a{

text-decoration:none;

color:#bbb;

transition:.3s;

}

.footer a:hover{

color:#fff;

padding-left:6px;

}

.footer hr{

margin:50px 0 25px;

border-color:rgba(255,255,255,.1);

}

.social-icons{

display:flex;

gap:15px;

margin-top:25px;

}

.social-icons a{

width:45px;

height:45px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#222;

font-size:18px;

color:#fff;

transition:.35s;

}

.social-icons a:hover{

background:#D81B60;

transform:translateY(-5px);

}

/*=========================================
WHATSAPP
=========================================*/

.whatsapp-btn{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

text-decoration:none;

box-shadow:0 10px 30px rgba(0,0,0,.25);

z-index:999;

transition:.35s;

}

.whatsapp-btn:hover{

transform:scale(1.1);

color:#fff;

}

/*=========================================
SCROLL TOP
=========================================*/

#scrollTop{

position:fixed;

bottom:105px;

right:28px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#D81B60;

color:#fff;

font-size:20px;

display:none;

cursor:pointer;

box-shadow:0 15px 30px rgba(216,27,96,.30);

transition:.35s;

z-index:999;

}

#scrollTop:hover{

transform:translateY(-5px);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.hero{

padding-top:130px;

text-align:center;

}

.hero-title{

font-size:48px;

}

.glass-card{

margin-top:50px;

}

.section-title{

font-size:36px;

}

.cta-box h2{

font-size:36px;

}

}

@media(max-width:768px){

.hero-title{

font-size:38px;

}

.section-title{

font-size:30px;

}

.counter{

font-size:36px;

}

.glass-stats{

padding:35px;

}

.cta-box{

padding:50px 25px;

}

.cta-box h2{

font-size:28px;

}

.footer{

text-align:center;

}

.social-icons{

justify-content:center;

}

}

@media(max-width:576px){

.hero-title{

font-size:32px;

}

.hero-text{

font-size:16px;

}

.section{

padding:70px 0;

}

.btn-pink,
.btn-glass{

width:100%;

margin-bottom:15px;

text-align:center;

}

.service-card,
.process-card,
.feature-box,
.brand-card,
.testimonial-card{

padding:28px;

}

}