*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f7f2ff;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
padding:80px 0;
}

h1{
font-size:42px;
color:#5a3dbd;
}

h2{
font-size:34px;
margin-bottom:20px;
color:#5a3dbd;
}

h3{
font-size:22px;
margin-bottom:10px;
}

p{
font-size:16px;
}

.section-title{
text-align:center;
margin-bottom:50px;
}
.topbar{
background:linear-gradient(90deg,#B57EDC,#8A5BE8);
color:white;
padding:10px 0;
font-size:14px;
}

.topbar .container{
display:flex;
justify-content:space-between;
align-items:center;
}
.navbar{
background:white;
padding:15px 0;
box-shadow:0 3px 10px rgba(0,0,0,0.08);
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:100px;
}

.menu a{
text-decoration:none;
color:#333;
font-weight:500;
}

.menu a:hover{
color:#8A5BE8;
}
/* DESKTOP */
.menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

/* HAMBURGER ICON */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HIDE CHECKBOX */
#menu-toggle {
    display: none;
}

/* ===================== */
/* 📱 MOBILE RESPONSIVE */
/* ===================== */

@media (max-width: 768px) {

    /* SHOW HAMBURGER */
    .menu-icon {
        display: block;
    }

    /* HIDE MENU */
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background: white;
        width: 220px;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* SHOW MENU WHEN CHECKED */
    #menu-toggle:checked + .menu-icon + nav .menu {
        display: flex;
    }

    /* STACK BUTTON */
    .consult-btn {
    background: #8A5BE8;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {

    .consult-btn {
        display: block;
        margin-top: 10px;
    }
}
}

/* TABLET */
@media (max-width: 992px) {

    .menu {
        gap: 15px;
    }

    .logo img {
        height: 50px;
    }
}
.consult-btn{
background:#8A5BE8;
color:white;
padding:10px 20px;
border-radius:30px;
text-decoration:none;
font-size:14px;
}
/* HERO SECTION */
.hero{
background:linear-gradient(120deg,#8A5BE8,#B57EDC);
padding:120px 0;
min-height:85vh;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:40px;
}

.hero-text{
color:white;
}

.hero-text h1{
font-size:42px;
margin-bottom:20px;
color:white
}

.hero-text p{
font-size:18px;
margin-bottom:25px;
color:white;
}

.hero-buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:white;
color:#8A5BE8;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
}

.btn-secondary{
border:2px solid white;
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
}

.hero-image{
display:flex;
justify-content:center;
}

.hero-image img{
max-width:500px;
width:100%;
height:auto;
}
/* STATS SECTION */

.stats{
padding:70px 20px;
background:#f7f3ff;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.stat-box{
background:white;
padding:30px;
text-align:center;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.stat-box:hover{
transform:translateY(-6px);
}

.stat-box img{
width:60px;
margin-bottom:15px;
}

.stat-box h2{
font-size:34px;
color:#8A5BE8;
margin-bottom:5px;
}

.stat-box p{
font-size:16px;
color:#555;
}

/* TABLET */

@media (max-width:900px){

.stats-grid{
grid-template-columns:1fr 1fr;
}

}

/* MOBILE */

@media (max-width:600px){

.stats-grid{
grid-template-columns:1fr;
}

.stat-box{
padding:25px;
}

.stat-box h2{
font-size:28px;
}

}
.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:white;
padding:30px;
border-radius:12px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.service-card img{
width:60px;
margin-bottom:15px;
}
/* INDEX WHY SECTION */
.why-index-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 10px;
}

.feature-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-box img {
    width: 40px;
}
@media (max-width: 768px) {

    .why-index-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-box {
        flex-direction: column;
        align-items: center;
    }
}
.domains{
padding:80px 20px;
background:#f7f3ff;
}

.domain-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.domain-box{
background:white;
padding:25px;
text-align:center;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.domain-box:hover{
transform:translateY(-6px);
}

.domain-box img{
width:60px;
margin-bottom:12px;
}

.domain-box p{
font-size:16px;
color:#333;
}

/* Tablet */

@media(max-width:900px){
.domain-grid{
grid-template-columns:repeat(2,1fr);
}
}

/* Mobile */

@media(max-width:600px){
.domain-grid{
grid-template-columns:1fr;
}
}

.domain-note{
text-align:center;
margin-top:30px;
font-style:italic;
color:#555;
}
.process{
background:#faf6ff;
}

.process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
text-align:center;
}

.process-step{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 10px rgba(0,0,0,0.05);
}

.process-step img{
width:50px;
margin-bottom:10px;
}
.testimonial-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.testimonial-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
text-align:center;
}

.testimonial-card img{
width:70px;
border-radius:50%;
margin-bottom:15px;
}
.cta{
background:linear-gradient(120deg,#8A5BE8,#B57EDC);
color:white;
text-align:center;
}

.cta-button{
background:white;
color:#8A5BE8;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
display:inline-block;
margin-top:20px;
}
.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:6px;
}

.contact-form button{
background:#8A5BE8;
color:white;
padding:12px;
border:none;
border-radius:6px;
width:100%;
}
footer{
background:#2c1f59;
color:white;
padding:60px 0 20px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.footer-grid img{
width:120px;
margin-bottom:15px;
}

.footer-grid ul{
list-style:none;
}

.footer-grid li{
margin-bottom:10px;
}

.footer-bottom{
text-align:center;
margin-top:30px;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:15px;
font-size:14px;
}
@media(max-width:900px){

.hero-grid,
.why-grid,
.contact-grid{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr 1fr;
}

.domain-grid{
grid-template-columns:1fr 1fr;
}

.process-grid{
grid-template-columns:1fr 1fr;
}

.stats-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.services-grid,
.domain-grid,
.process-grid,
.stats-grid{
grid-template-columns:1fr;
}

.menu{
display:none;
}

}


.show{
opacity:1;
transform:translateY(0);
transition:0.8s;
}
#topBtn{
position:fixed;
bottom:30px;
right:30px;
background:#8A5BE8;
color:white;
border:none;
width:45px;
height:45px;
border-radius:50%;
font-size:20px;
cursor:pointer;
display:none;
}
.whatsapp{
position:fixed;
bottom:30px;
left:30px;
z-index:999;
}

.whatsapp img{
width:55px;
}
.btn-primary:hover{

background:#6f44e0;
transform:translateY(-3px);
box-shadow:0 5px 15px rgba(0,0,0,0.2);

}

.btn-secondary:hover{

background:#8A5BE8;
color:white;

}
.about-hero{
background:linear-gradient(120deg,#8A5BE8,#B57EDC);
color:white;
padding:100px 0;
text-align:center;
}

.about-section{
padding:80px 0;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about-image img{
width:100%;
max-width:450px;
}

.mission{
background:#f7f2ff;
padding:80px 0;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.mission-box{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* WHY SECTION */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* WHY CARD */
.why-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

/* EXPERTISE */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.expertise-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.about-cta{
background:#8A5BE8;
color:white;
text-align:center;
padding:80px 0;
}
/* TABLET */
@media (max-width: 992px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}
/* TABLET */
@media (max-width: 992px) {

    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .services-grid,
    .domain-grid,
    .process-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .why-index-grid {
        grid-template-columns: 1fr;
    }
}