*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f6f9;
padding-top:90px;
color:#1f2937;
}

/* ================= HEADER ================= */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
background:#0f172a;
padding:20px 60px;
box-shadow:0 4px 20px rgba(0,0,0,0.15);
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
width:100%;
}

.logo{
color:white;
font-size:24px;
font-weight:700;
letter-spacing:1px;
}

.nav-links{
list-style:none;
display:flex;
gap:40px;
margin-left:auto;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:16px;
transition:0.3s ease;
}

.nav-links a:hover{
color:#ff2e63;
}

/* ================= GET STARTED BUTTON ================= */

.header-btn{
background:#ff2e63;
color:white;
text-decoration:none;
padding:14px 32px;
font-size:16px;
font-weight:600;
border-radius:40px;
transition:0.3s ease;
margin-left:40px;
}

.header-btn:hover{
background:#e11d48;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(255,46,99,0.3);
}

/* ================= HERO SLIDER ================= */

.hero-slider{
position:relative;
height:85vh;
width:100%;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
opacity:0;
transition:opacity 1s ease-in-out;
}

.slide.active{
opacity:1;
z-index:1;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
top:0;
left:0;
}

.content{
position:relative;
z-index:2;
color:white;
max-width:700px;
margin-left:100px;
}

.content h1{
font-size:48px;
font-weight:800;
line-height:1.2;
margin-bottom:20px;
}

.content p{
font-size:18px;
margin-bottom:30px;
color:#e5e7eb;
}

.cta-btn{
background:#ff2e63;
color:white;
border:none;
padding:16px 40px;
font-size:17px;
border-radius:50px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.cta-btn:hover{
background:#e11d48;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(255,46,99,0.3);
}

/* ================= SLIDER DOTS ================= */

.vertical-dots{
position:absolute;
right:40px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:15px;
z-index:3;
}

.dot{
width:14px;
height:14px;
border-radius:50%;
background:white;
opacity:0.4;
cursor:pointer;
transition:0.3s;
}

.dot.active{
opacity:1;
background:#ff2e63;
}

/* ================= SECTION COMMON ================= */

.section-subtitle{
color:#ff2e63;
letter-spacing:2px;
font-size:14px;
margin-bottom:15px;
}

.section-title{
font-size:42px;
font-weight:800;
margin-bottom:25px;
line-height:1.3;
}

/* ================= ABOUT SECTION ================= */

.about{
background:linear-gradient(to right, #0f172a, #1e293b);
color:white;
padding:120px 80px;
}

.about-wrapper{
display:flex;
flex-wrap:wrap;
align-items:center;
justify-content:space-between;
gap:60px;
max-width:1200px;
margin:auto;
}

.about-text{
flex:1;
min-width:320px;
}

.about-text p{
color:#cbd5e1;
font-size:17px;
line-height:1.8;
margin-bottom:20px;
}

.about-btn{
display:inline-block;
margin-top:20px;
padding:14px 35px;
background:#ff2e63;
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
transition:0.3s;
}

.about-btn:hover{
background:#e11d48;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(255,46,99,0.3);
}

/* ABOUT GRAPHICS */

.about-graphics{
flex:1;
min-width:320px;
display:grid;
gap:25px;
}

.feature-card{
background:rgba(255,255,255,0.05);
padding:30px;
border-radius:15px;
backdrop-filter:blur(10px);
transition:0.3s;
}

.feature-card:hover{
background:rgba(255,255,255,0.1);
transform:translateY(-5px);
}

.icon{
font-size:32px;
margin-bottom:15px;
color:#ff2e63;
}

.feature-card h3{
font-size:20px;
margin-bottom:10px;
}

.feature-card p{
color:#cbd5e1;
font-size:15px;
line-height:1.6;
}

/* ================= SERVICES SECTION ================= */

.services{
background:linear-gradient(to right, #111827, #1f2937);
color:white;
padding:120px 80px;
}

.services-wrapper{
max-width:1200px;
margin:auto;
}

.services-header{
text-align:center;
max-width:800px;
margin:0 auto 70px auto;
}

.services-header p{
color:#cbd5e1;
font-size:17px;
margin-top:15px;
line-height:1.7;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.service-card{
background:rgba(255,255,255,0.05);
padding:35px;
border-radius:16px;
backdrop-filter:blur(10px);
transition:0.3s;
}

.service-card:hover{
background:rgba(255,255,255,0.1);
transform:translateY(-6px);
}

.service-icon{
font-size:32px;
margin-bottom:20px;
color:#ff2e63;
}

.service-card h3{
font-size:20px;
margin-bottom:15px;
}

.service-card p{
color:#cbd5e1;
font-size:15px;
line-height:1.7;
}

/* ================= CONTACT (COLORED PREMIUM VERSION) ================= */

.contact{
background:linear-gradient(135deg, #111827, #1f2937);
padding:120px 20px;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.contact-wrapper{
max-width:700px;
width:100%;
background:rgba(255,255,255,0.05);
padding:60px 40px;
border-radius:20px;
backdrop-filter:blur(10px);
box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

.contact .section-subtitle{
color:#ff2e63;
}

.contact .section-title{
color:white;
}

.contact-desc{
color:#cbd5e1;
font-size:17px;
margin-bottom:40px;
line-height:1.7;
}

.contact-form{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
flex-wrap:wrap;
}

.contact-form input{
flex:1;
min-width:250px;
padding:16px 20px;
border:1px solid rgba(255,255,255,0.2);
background:rgba(255,255,255,0.08);
color:white;
border-radius:50px;
font-size:16px;
outline:none;
transition:0.3s;
}

.contact-form input::placeholder{
color:#cbd5e1;
}

.contact-form input:focus{
border-color:#ff2e63;
box-shadow:0 0 0 3px rgba(255,46,99,0.2);
}

.contact-form button{
padding:16px 35px;
background:#ff2e63;
color:white;
border:none;
border-radius:50px;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#e11d48;
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(255,46,99,0.3);
}

/* ================= FOOTER (PROFESSIONAL VERSION) ================= */

.footer{
background:linear-gradient(135deg, #0f172a, #111827);
color:white;
padding-top:80px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:50px;
padding:0 80px 60px 80px;
}

.footer-col h3{
font-size:22px;
margin-bottom:20px;
}

.footer-col h4{
font-size:18px;
margin-bottom:20px;
color:#ff2e63;
}

.footer-col p{
color:#cbd5e1;
line-height:1.7;
margin-bottom:10px;
font-size:14px;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:12px;
}

.footer-col ul li a{
color:#cbd5e1;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#ff2e63;
}

.social-links{
display:flex;
flex-direction:column;
gap:12px;
}

.social-links a{
color:#cbd5e1;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.social-links a:hover{
color:#ff2e63;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.1);
text-align:center;
padding:25px;
font-size:13px;
color:#9ca3af;
}
@media(max-width:992px){

.about-wrapper{
flex-direction:column;
text-align:center;
}

.content{
margin:0 20px;
}

}

@media(max-width:768px){

header{
padding:15px 20px;
}

.nav-links{
display:none;
}

.content h1{
font-size:30px;
}

.hero-slider{
height:70vh;
}

.section-title{
font-size:30px;
}

.about,
.services,
.contact{
padding:80px 25px;
}

}