:root{
    --primary:#0d6efd;
    --secondary:#17c0eb;
    --dark:#0f172a;
    --light:#f8fafc;
    --text:#334155;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;
}

section{
    padding:80px 0;
}

h1,h2,h3,h4,h5{
    font-weight:800;
    color:var(--dark);
}

p{
    color:#64748b;
}

.navbar{
    padding:15px 0;
    transition:.3s ease;
}

.navbar-brand{
    font-size:1.4rem;
    color:var(--dark)!important;
}

.nav-link{
    font-weight:500;
    margin-left:18px;
}

.hero{
    background:
    radial-gradient(circle at top right, rgba(23,192,235,.18), transparent 40%),
    radial-gradient(circle at left, rgba(13,110,253,.18), transparent 30%);
}

.hero h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    max-width:560px;
}

.hero-logo{
    width:420px;
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0)}
    50%{transform:translateY(-18px)}
    100%{transform:translateY(0)}
}

.btn{
    border-radius:12px;
    padding:14px 28px;
    font-weight:600;
}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    height:100%;
    transition:.35s;
    border:1px solid rgba(0,0,0,.03);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(13,110,253,.18);
}

.service-card h4{
    margin-bottom:15px;
}

.why{
    background:#f8fbff;
}

.why-list{
    list-style:none;
    padding-left:0;
}

.why-list li{
    font-size:20px;
    margin-bottom:18px;
    padding:14px 18px;
    background:white;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.why-us-section{
    background:linear-gradient(180deg,#ffffff,#f8fbff);
}

.why-card{
    background:white;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
    border:1px solid #eef2f7;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(13,110,253,.15);
}

.why-icon{
    width:78px;
    height:78px;
    margin:auto auto 20px;
    border-radius:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    background:linear-gradient(135deg,#0d6efd,#17c0eb);
}

.why-card h4{
    margin-bottom:14px;
}

.stats-box{
    background:linear-gradient(135deg,#0d6efd,#17c0eb);
    padding:45px 30px;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(13,110,253,.25);
}

.stats-box h3{
    color:white;
    font-size:42px;
    font-weight:800;
}

.stats-box span{
    color:rgba(255,255,255,.85);
}

.portfolio-section{
    background:#ffffff;
}

.portfolio-item{
    border-radius:28px;
    overflow:hidden;
    background:white;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border:1px solid #eef2f7;
}

.portfolio-item:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(13,110,253,.15);
}

.featured-project{
    transform:scale(1.03);
}

.portfolio-thumb{
    height:240px;
    position:relative;
    display:flex;
    align-items:flex-start;
    padding:24px;
}

.web-bg{
    background:
    linear-gradient(135deg,#0d6efd,#17c0eb);
}

.pos-bg{
    background:
    linear-gradient(135deg,#1e40af,#2563eb);
}

.dashboard-bg{
    background:
    linear-gradient(135deg,#0891b2,#06b6d4);
}

.portfolio-gallery{
    background:#ffffff;
}

.portfolio-photo-card{
    position:relative;
    height:420px;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.1);
    cursor:pointer;
}

.portfolio-photo-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.portfolio-photo-card:hover img{
    transform:scale(1.08);
}

.portfolio-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,0)
    );
    color:white;
}

.portfolio-overlay span{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
    font-size:12px;
    font-weight:700;
    margin-bottom:12px;
}

.portfolio-overlay h4{
    color:white;
    margin:0;
    font-size:24px;
}

.cta{
    background:linear-gradient(135deg,#0d6efd,#17c0eb);
    color:white;
    padding:90px 0;
}

.cta h2{
    color:white;
    font-size:48px;
}

.cta p{
    color:rgba(255,255,255,.85);
    margin:20px 0;
}

#contact{
    background:#f8fafc;
}


.contact-modern{
    background:linear-gradient(180deg,#f8fbff,#ffffff);
}

.contact-box{
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 30px 80px rgba(0,0,0,.08);
    background:white;
}

.map-wrapper{
    height:100%;
    min-height:580px;
    overflow:hidden;
    position:relative;
}

.map-wrapper iframe{
    width:100%;
    height:100%;
    border:none;
    filter:grayscale(20%) contrast(1.05);
}

.office-marker{
    position:absolute;
    top:20px;
    right:20px;
    background:white;
    padding:14px 18px;
    border-radius:18px;
    display:flex;
    gap:12px;
    align-items:center;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.office-marker img{
    width:42px;
}

.office-marker strong{
    display:block;
    color:#0f172a;
}

.office-marker small{
    color:#64748b;
}


.contact-info-box{
    padding:50px 40px;
    height:100%;
    background:white;
}

.contact-info-box h3{
    font-size:32px;
    margin-bottom:15px;
}

.contact-info-box > p{
    margin-bottom:30px;
    color:#64748b;
}

.contact-item{
    display:flex;
    gap:16px;
    margin-bottom:24px;
    align-items:flex-start;
}

.contact-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    background:linear-gradient(135deg,#0d6efd,#17c0eb);
    color:white;
    box-shadow:0 12px 25px rgba(13,110,253,.2);
}

.contact-item h6{
    margin-bottom:6px;
    font-weight:700;
}

.contact-item p{
    margin:0;
    color:#64748b;
}

@media(max-width:992px){
    .map-wrapper{
        min-height:350px;
    }

    .contact-info-box{
        padding:40px 25px;
    }
}



footer{
    background:var(--dark);
    color:white;
    padding:30px 0;
}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    z-index:9999;
}

.fade-up{
    opacity:0;
    transform:translateY(30px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:992px){
    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-logo{
        margin-top:40px;
        width:280px;
    }

    .section-title{
        font-size:34px;
    }

    .cta h2{
        font-size:32px;
    }
}

@media(max-width:576px){
    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:17px;
    }
}

#loader-wrapper{
    position:fixed;
    inset:0;
    background:white;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:opacity .8s ease, visibility .8s ease;
}

#loader-wrapper.hidden{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.loader-logo{
    width:120px;
    z-index:2;
    animation:pulseLogo 1.8s infinite ease-in-out;
}

.loader-ring{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    border:4px solid rgba(13,110,253,.12);
    border-top:4px solid #0d6efd;
    animation:spin 1.2s linear infinite;
}

.loader-content p{
    margin-top:40px;
    font-weight:600;
    color:#334155;
    letter-spacing:1px;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

@keyframes pulseLogo{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.06);
    }
    100%{
        transform:scale(1);
    }
}

.section-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:#e0f2fe;
    color:#0369a1;
    font-weight:700;
    font-size:14px;
}

.section-subtitle{
    max-width:650px;
    margin:auto;
    color:#64748b;
}

.service-box{
    height:100%;
    background:white;
    border-radius:28px;
    padding:40px 35px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.4s;
    border:1px solid #eef2f7;
}

.service-box:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 70px rgba(13,110,253,.16);
}

.service-box.featured{
    border:2px solid #0d6efd;
    transform:scale(1.03);
}

.service-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    margin-bottom:20px;
    background:linear-gradient(135deg,#0d6efd,#17c0eb);
}

.service-tag{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:#2563eb;
    margin-bottom:16px;
}

.service-box h4{
    margin-bottom:16px;
}

.service-box ul{
    list-style:none;
    padding-left:0;
    margin:24px 0;
}

.service-box ul li{
    padding:8px 0;
    color:#475569;
    border-bottom:1px solid #f1f5f9;
}

.service-box a{
    color:#0d6efd;
    font-weight:700;
    text-decoration:none;
}

.price-badge{
    display:inline-flex;
    flex-direction:column;
    padding:14px 18px;
    border-radius:16px;
    background:#eff6ff;
    margin-bottom:20px;
}

.price-badge small{
    color:#64748b;
}

.price-badge strong{
    font-size:22px;
    color:#2563eb;
}


.faq-tabs{
    gap:16px;
}

.faq-tabs .nav-link{
    border:none;
    padding:16px 28px;
    border-radius:999px;
    font-weight:700;
    color:#334155;
    background:#f1f5f9;
    transition:.3s;
}

.faq-tabs .nav-link.active{
    background:linear-gradient(135deg,#0d6efd,#17c0eb);
    color:white;
    box-shadow:0 10px 30px rgba(13,110,253,.25);
}

.tab-content{
    max-width:950px;
    margin:auto;
}

.faq-bottom-cta{
    max-width:850px;
    margin:auto;
    padding:50px;
    border-radius:30px;
    background:linear-gradient(135deg,#0d6efd,#17c0eb);
    box-shadow:0 20px 50px rgba(13,110,253,.22);
}

.faq-bottom-cta h4{
    color:white;
    font-size:32px;
}

.faq-bottom-cta p{
    color:rgba(255,255,255,.85);
}