
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#071327;
    color:#fff;
    overflow-x:hidden;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(#ffb347,#ff6b00);
    border-radius:20px;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    text-decoration:none;

    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;

    font-size:34px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.35),
    0 0 25px rgba(37,211,102,.45);

    z-index:9999;
    transition:.35s;
}

.whatsapp-float::before{
    content:'';
    position:absolute;
    inset:-8px;
    border-radius:50%;
    background:rgba(37,211,102,.25);
    animation:whatsappPulse 1.8s infinite;
    z-index:-1;
}

.whatsapp-float:hover{
    transform:translateY(-6px) scale(1.08);
}

@keyframes whatsappPulse{
    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.4);
        opacity:0;
    }
}

/* HERO SECTION */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    min-height:100svh;

    background:
    linear-gradient(rgba(3,10,25,.65),rgba(3,10,25,.82)),
    url('images/bg.avif');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    display:none;
    top:-250px;
    right:-150px;
    z-index:1;
}

.hero::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(0,174,255,.15),transparent 70%);
    bottom:-250px;
    left:-150px;
    z-index:1;
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:5;

    min-height:100vh;
    min-height:100svh;

    display:flex;
    flex-direction:column;

    justify-content:flex-start;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    overflow:hidden;
}

.hero-content::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    display:none;
    top:-300px;
    right:-200px;
    z-index:-1;
}

.hero-content::after{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(0,183,255,.10),transparent 70%);
    bottom:-250px;
    left:-180px;
    z-index:-1;
}

/* HERO LOGO */

.logo-img{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.logo-img img{
    width:min(600px,82vw);
    height:auto;
    object-fit:contain;

    filter:
    drop-shadow(0 8px 20px rgba(0,0,0,.35))
    drop-shadow(0 0 12px rgba(255,179,71,.18));

    transition:.4s ease;
}

.logo-img img:hover{
    transform:scale(1.06);

    filter:
    drop-shadow(0 12px 25px rgba(0,0,0,.4))
    drop-shadow(0 0 18px rgba(255,179,71,.35));
}

/* SUBTITLE */

.subtitle{
    margin-top:24px;

    font-size:clamp(13px,2vw,24px);
    font-weight:600;

    letter-spacing:clamp(2px,.7vw,8px);
    text-transform:uppercase;

    color:#ffffff;
    opacity:.95;

    line-height:1.5;
}

/* GOLD LINE */

.gold-line{
    position:relative;

    width:min(320px,70vw);
    height:5px;

    margin:34px auto;

    border-radius:30px;

    background:linear-gradient(
        to right,
        transparent,
        #ffcf70,
        #ff8c00,
        #ffcf70,
        transparent
    );

    box-shadow:
    0 0 20px rgba(255,179,71,.35),
    0 0 40px rgba(255,179,71,.15);
}

.gold-line::before{
    content:'';

    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:60px;
    height:14px;

    border-radius:50px;

    background:#ffd27a;

    filter:blur(18px);

    opacity:.9;
}

/* TAGLINE */

.tagline{
    max-width:1000px;

    font-size:clamp(26px,5vw,58px);
    font-weight:800;

    line-height:1.25;

    color:#ffffff;

    margin-top:10px;

    letter-spacing:1px;

    text-shadow:0 5px 20px rgba(0,0,0,.35);
}

/* HERO BUTTONS */

.hero-buttons{
    margin-top:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:22px;
    flex-wrap:wrap;
}

.btn{
    position:relative;

    padding:17px 34px;

    border-radius:18px;

    text-decoration:none;

    background:linear-gradient(
        135deg,
        #ffd27a,
        #ff9f1a,
        #ff5e00
    );

    color:#fff;

    font-size:16px;
    font-weight:700;

    letter-spacing:.5px;

    overflow:hidden;

    box-shadow:
    0 15px 35px rgba(255,102,0,.35),
    inset 0 2px 5px rgba(255,255,255,.3);

    transition:.4s;
}

.btn:hover{
    transform:translateY(-6px) scale(1.03);

    box-shadow:
    0 25px 50px rgba(255,102,0,.45),
    0 0 30px rgba(255,179,71,.25);
}

.btn-outline{
    position:relative;

    text-decoration:none;

    padding:17px 34px;

    border-radius:18px;

    border:2px solid rgba(255,179,71,.45);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:16px;
    font-weight:700;

    overflow:hidden;

    transition:.4s;
}

.btn-outline:hover{
    background:rgba(255,179,71,.12);
    border-color:#ffcf70;
    color:#ffcf70;

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(255,179,71,.18);
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero{
        background:
        linear-gradient(rgba(3,10,25,.45),rgba(3,10,25,.78)),
        url('images/bg.avif');

        background-size:cover;
        background-position:center top;
        background-repeat:no-repeat;
    }

    .hero-content{
        padding:95px 18px 60px;
        justify-content:flex-start;
    }

    .logo-img img{
        width:min(360px,82vw);
    }

    .gold-line{
        margin:26px auto;
    }

    .hero-buttons{
        margin-top:35px;
        gap:16px;
    }

    .btn,
    .btn-outline{
        padding:15px 28px;
        font-size:15px;
    }
}

@media(max-width:600px){

    .hero{
        min-height:100svh;

        background:
        linear-gradient(rgba(3,10,25,.28),rgba(3,10,25,.78)),
        url('images/bg.avif');

        background-size:cover;
        background-position:center top;
        background-repeat:no-repeat;
    }

    .hero-content{
        min-height:100svh;

        justify-content:flex-start;

        padding:82px 14px 45px;
    }

    .logo-img img{
        width:min(270px,78vw);
    }

    .subtitle{
        margin-top:16px;
        line-height:1.6;
    }

    .gold-line{
        width:min(190px,60vw);
        height:4px;
        margin:20px auto;
    }

    .tagline{
        font-size:clamp(23px,7vw,28px);
        line-height:1.35;
        letter-spacing:.5px;
    }

    .hero-buttons{
        width:100%;
        margin-top:28px;
        flex-direction:column;
        gap:12px;
    }

    .btn,
    .btn-outline{
        width:100%;
        max-width:260px;
        text-align:center;
        padding:13px 18px;
        font-size:14px;
    }

    .whatsapp-float{
        width:55px;
        height:55px;
        right:18px;
        bottom:18px;
        font-size:30px;
    }
}

@media(max-width:380px){

    .hero{
        background-position:center top;
    }

    .hero-content{
        padding-top:76px;
    }

    .logo-img img{
        width:min(220px,76vw);
    }

    .tagline{
        font-size:22px;
    }

    .btn,
    .btn-outline{
        max-width:235px;
    }
}

/* =========================
   PREMIUM SERVICES SECTION
========================= */

.services{
    position:relative;
    z-index:5;
    padding:100px 6% 140px;
    background:
        radial-gradient(circle at top left, rgba(255,179,71,.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,174,255,.10), transparent 35%);
}

.section-title{
    position:relative;
    text-align:center;
    font-size:68px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:95px;
    text-transform:uppercase;
    color:#fff;
    letter-spacing:2px;
    text-shadow:0 10px 30px rgba(0,0,0,.35);
}

.section-title span{
    background:linear-gradient(to right,#fff3c7,#ffb347,#ff6b00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-title::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-25px;
    transform:translateX(-50%);
    width:240px;
    height:5px;
    border-radius:30px;
    background:linear-gradient(to right,transparent,#ffcf70,#ff6b00,#ffcf70,transparent);
    box-shadow:0 0 25px rgba(255,179,71,.45);
}

.section-title::before{
    content:'';
    position:absolute;
    left:50%;
    bottom:-31px;
    transform:translateX(-50%);
    width:80px;
    height:16px;
    background:#ffd27a;
    border-radius:50px;
    filter:blur(20px);
    opacity:.9;
}

/* GRID */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* CARD */

.service-card{
    position:relative;
    overflow:hidden;
    min-height:390px;
    border-radius:26px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(16px);
    box-shadow:
        0 18px 45px rgba(0,0,0,.38),
        inset 0 1px 0 rgba(255,255,255,.12);
    transition:.45s ease;
}

.service-card::before{
    content:'';
    position:absolute;
    inset:0;
    padding:1px;
    border-radius:26px;
    background:linear-gradient(135deg,rgba(255,207,112,.8),transparent,rgba(255,107,0,.5));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:.45;
    z-index:3;
    pointer-events:none;
}

.service-card::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    right:-70px;
    top:-70px;
    background:radial-gradient(circle,rgba(255,179,71,.25),transparent 70%);
    opacity:0;
    transition:.45s;
}

.service-card:hover{
    transform:translateY(-14px) scale(1.02);
    box-shadow:
        0 28px 65px rgba(0,0,0,.45),
        0 0 35px rgba(255,179,71,.18);
}

.service-card:hover::after{
    opacity:1;
}

/* IMAGE */

.service-card img{
    width:100%;
    height:100%;
    min-height:390px;
    object-fit:cover;
    display:block;
    transition:.65s ease;
}

.service-card:hover img{
    transform:scale(1.12);
    filter:saturate(1.15) contrast(1.05);
}

/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(to top,rgba(2,8,20,.96) 0%,rgba(2,8,20,.78) 35%,rgba(2,8,20,.20) 70%),
        linear-gradient(135deg,rgba(255,179,71,.18),transparent 45%);
    z-index:1;
}

/* CONTENT */

.service-content{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:32px;
    z-index:2;
}

.service-content i{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#fff;
    margin-bottom:18px;
    border-radius:18px;
    background:linear-gradient(135deg,#ffcf70,#ff7b00);
    box-shadow:0 12px 28px rgba(255,102,0,.35);
}

.service-content h3{
    font-size:25px;
    margin-bottom:12px;
    color:#fff;
    font-weight:700;
}

.service-content p{
    color:#e0e0e0;
    font-size:15px;
    line-height:1.8;
    max-width:95%;
}

.service-card:hover .service-content i{
    transform:rotate(-6deg) scale(1.08);
}

/* RESPONSIVE */

@media(max-width:768px){
    .services{
        padding:80px 5% 100px;
    }

    .section-title{
        font-size:40px;
        margin-bottom:70px;
    }

    .service-card{
        min-height:360px;
    }

    .service-card img{
        min-height:360px;
    }

    .service-content{
        padding:25px;
    }
}

@media(max-width:500px){
    .section-title{
        font-size:32px;
    }

    .service-content h3{
        font-size:22px;
    }

    .service-content p{
        font-size:14px;
    }
}

/* RESPONSIVE */

@media(max-width:1100px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .main-title{
        font-size:110px;
    }

    .tagline{
        font-size:34px;
    }
}

@media(max-width:768px){

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .main-title{
        font-size:80px;
    }

    .subtitle{
        font-size:18px;
        letter-spacing:3px;
    }

    .tagline{
        font-size:24px;
        line-height:1.6;
    }

    .section-title{
        font-size:42px;
    }

    .service-card img{
        height:220px;
    }

    .hero-buttons{
        flex-direction:column;
    }
}

@media(max-width:500px){

    .main-title{
        font-size:62px;
    }

    .section-title{
        font-size:34px;
    }

    .logo-text-nav{
        font-size:20px;
    }

    .btn{
        padding:12px 18px;
        font-size:14px;
    }

    .phone{
        display:none;
    }
}



