*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Roboto', sans-serif;
    color:#1f2937;
    background:#f6f9fc;
    line-height:1.7;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}



/* HEADER */
.header{
    background:rgba(255,255,255,0.96);
    backdrop-filter:blur(12px);
    box-shadow:0 5px 25px rgba(15,23,42,0.08);
    position:sticky;
    top:0;
    z-index:999;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 0;
}

.logo-area{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo-img{
    display:flex;
    align-items:center;
}

.logo-img img{
    display:block !important;
    height:80px !important;
    width:auto !important;
    max-width:none !important;
}

.company-name h2{
    color:#082f5f;
    font-size:25px;
    letter-spacing:1px;
    font-weight:900;
}

.company-name span{
    font-size:13px;
    color:#667085;
    font-weight:400;
}

.nav ul{
    display:flex;
    list-style:none;
    gap:24px;
    align-items:center;
}

.nav a{
    color:#1f2937;
    font-weight:600;
    font-size:15px;
    transition:.3s ease;
}

.nav a:hover{
    color:#0078d4;
}

.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none !important;
    position:absolute;
    top:30px;
    left:0;
    background:#fff;
    width:270px;
    box-shadow:0 18px 45px rgba(15,23,42,0.18);
    border-radius:16px;
    padding:12px 0;
    animation:dropdownFade .35s ease;
}

.dropdown:hover .dropdown-menu{
    display:block !important;
}

.dropdown-menu li{
    display:block;
}

.dropdown-menu a{
    display:block;
    padding:11px 18px;
    font-size:14px;
}

.dropdown-menu a:hover{
    background:#eef6ff;
}

@keyframes dropdownFade{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.header-btn{
    background:linear-gradient(135deg,#0078d4,#0057b8);
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,120,212,0.28);
    transition:.35s ease;
}

.header-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,120,212,0.4);
}

/* HERO */
.hero{
    position:relative;
    background:
    radial-gradient(circle at top right,rgba(0,162,255,0.35),transparent 35%),
    linear-gradient(135deg,#061d3a,#0057b8 60%,#00a2ff);
    color:#fff;
    padding:95px 0;
    overflow:hidden;
}

.hero:before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    top:-120px;
    right:-120px;
}

.hero:after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    bottom:-100px;
    left:-80px;
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:45px;
    align-items:center;
}

.badge{
    display:inline-block;
    background:rgba(255,255,255,0.16);
    border:1px solid rgba(255,255,255,0.28);
    padding:8px 17px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:18px;
    backdrop-filter:blur(10px);
}

.hero h1{
    font-size:50px;
    line-height:1.18;
    margin-bottom:20px;
    font-weight:900;
}

.hero p{
    font-size:18px;
    margin-bottom:32px;
    color:#e6f2ff;
    font-weight:300;
}

.hero-buttons a{
    display:inline-block;
    margin-right:12px;
    padding:14px 30px;
    border-radius:30px;
    font-weight:700;
    transition:.35s ease;
}

.btn-primary{
    background:#fff;
    color:#0057b8;
    box-shadow:0 15px 30px rgba(0,0,0,0.18);
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-outline{
    border:1px solid rgba(255,255,255,0.8);
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#0057b8;
}

.hero-card{
    background:rgba(255,255,255,0.96);
    color:#1f2937;
    border-radius:28px;
    padding:36px;
    box-shadow:0 30px 60px rgba(0,0,0,0.22);
    animation:floatCard 4s ease-in-out infinite;
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

.hero-card h3{
    color:#0057b8;
    margin-bottom:18px;
    font-size:24px;
}

.hero-card ul{
    padding-left:20px;
}

.hero-card li{
    margin-bottom:10px;
}

/* TRUST */
.trust-bar{
    background:#fff;
    padding:30px 0;
    box-shadow:0 8px 25px rgba(15,23,42,0.06);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
    text-align:center;
}

.trust-item{
    font-weight:700;
    color:#082f5f;
    transition:.3s ease;
}

.trust-item:hover{
    color:#0078d4;
    transform:translateY(-3px);
}

/* GENERAL */
section{
    padding:78px 0;
}

.section-title{
    text-align:center;
    margin-bottom:48px;
}

.section-title h2{
    font-size:37px;
    color:#082f5f;
    margin-bottom:12px;
    font-weight:900;
}

.section-title p{
    color:#667085;
    font-size:17px;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    position:relative;
    background:#fff;
    padding:34px;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(15,23,42,0.08);
    transition:all .45s cubic-bezier(.2,.8,.2,1);
    overflow:hidden;
    border:1px solid rgba(226,232,240,0.8);
}

.card:before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(0,120,212,0.08),rgba(0,162,255,0));
    opacity:0;
    transition:.45s ease;
}

.card:after{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    background:rgba(0,120,212,0.12);
    border-radius:50%;
    top:-35px;
    right:-35px;
    transition:.45s ease;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,120,212,0.18);
    border-color:rgba(0,120,212,0.18);
}

.card:hover:before{
    opacity:1;
}

.card:hover:after{
    width:130px;
    height:130px;
}

.card h3,
.card p{
    position:relative;
    z-index:2;
}

.card h3{
    color:#0057b8;
    margin-bottom:12px;
    font-size:21px;
    font-weight:800;
}

/* ABOUT */
.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
    align-items:center;
}

.about h2{
    font-size:37px;
    color:#082f5f;
    margin-bottom:18px;
    font-weight:900;
}

.about p{
    margin-bottom:14px;
}

.check-list{
    margin-top:22px;
}

.check-list li{
    list-style:none;
    position:relative;
    padding-left:34px;
    margin-bottom:13px;
    font-weight:500;
}

.check-list li:before{
    content:"\f00c";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:0;
    top:0;
    width:23px;
    height:23px;
    background:#eef6ff;
    color:#0078d4;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

.info-box{
    position:relative;
    background:linear-gradient(135deg,#0057b8,#00a2ff);
    color:#fff;
    padding:43px;
    border-radius:28px;
    box-shadow:0 25px 50px rgba(0,120,212,0.25);
    overflow:hidden;
}

.info-box:before{
    content:"";
    position:absolute;
    width:170px;
    height:170px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    right:-45px;
    top:-45px;
}

.info-box h3{
    font-size:29px;
    margin-bottom:15px;
    position:relative;
    z-index:2;
}

.info-box p{
    position:relative;
    z-index:2;
}

/* PROCESS */
.process{
    background:#eef6ff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.step{
    background:#fff;
    padding:30px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 12px 35px rgba(15,23,42,0.07);
    transition:.4s ease;
}

.step:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 22px 45px rgba(0,120,212,0.16);
}

.step span{
    width:52px;
    height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0078d4,#0057b8);
    color:#fff;
    border-radius:50%;
    font-weight:900;
    margin-bottom:16px;
    box-shadow:0 10px 20px rgba(0,120,212,0.25);
}

.step h3{
    color:#082f5f;
    margin-bottom:8px;
}

/* RELATED SERVICES */
.related-services{
    background:#fff;
}

.service-box{
    display:block;
    position:relative;
    background:#f6f9fc;
    border:1px solid #e4eaf1;
    padding:30px;
    border-radius:22px;
    color:#1f2937;
    transition:.45s ease;
    overflow:hidden;
}

.service-box:before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#0078d4,#0057b8);
    left:0;
    top:100%;
    transition:.45s ease;
    z-index:1;
}

.service-box:hover:before{
    top:0;
}

.service-box h3,
.service-box p{
    position:relative;
    z-index:2;
    transition:.35s ease;
}

.service-box h3{
    color:#0057b8;
    margin-bottom:10px;
    font-size:20px;
}

.service-box:hover h3,
.service-box:hover p{
    color:#fff;
}

/* FAQ */
.faq{
    background:#fff;
}

.faq-item{
    background:#f6f9fc;
    padding:25px;
    border-radius:18px;
    margin-bottom:18px;
    border-left:5px solid #0078d4;
    transition:.35s ease;
}

.faq-item:hover{
    transform:translateX(8px);
    box-shadow:0 12px 30px rgba(15,23,42,0.08);
}

.faq-item h3{
    color:#082f5f;
    margin-bottom:8px;
}

/* CONTACT */
.contact-section{
    background:
    radial-gradient(circle at top left,rgba(0,162,255,0.35),transparent 30%),
    linear-gradient(135deg,#061d3a,#0057b8);
    color:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:42px;
    align-items:start;
}

.contact-section h2{
    font-size:37px;
    margin-bottom:18px;
    font-weight:900;
}

.contact-form{
    background:#fff;
    padding:36px;
    border-radius:26px;
    box-shadow:0 25px 55px rgba(0,0,0,0.2);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:1px solid #d0d5dd;
    border-radius:12px;
    font-size:15px;
    font-family:'Roboto', sans-serif;
    transition:.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#0078d4;
    box-shadow:0 0 0 4px rgba(0,120,212,0.12);
}

.contact-form textarea{
    height:125px;
}

.contact-form button{
    background:linear-gradient(135deg,#0078d4,#0057b8);
    color:#fff;
    border:none;
    padding:15px 34px;
    border-radius:30px;
    font-weight:800;
    cursor:pointer;
    transition:.35s ease;
    box-shadow:0 12px 25px rgba(0,120,212,0.28);
}

.contact-form button:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,120,212,0.38);
}

/* FOOTER */
.footer{
    background:#071527;
    color:#cbd5e1;
    padding:62px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:32px;
}

.footer h3{
    color:#fff;
    margin-bottom:18px;
    font-size:20px;
}

.footer ul{
    list-style:none;
}

.footer li{
    margin-bottom:10px;
}

.footer a{
    color:#cbd5e1;
    transition:.3s ease;
}

.footer a:hover{
    color:#fff;
    padding-left:4px;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:35px;
    padding-top:20px;
    font-size:14px;
}

/* SCROLL ANIMATION */
.fade-up{
    animation:fadeUp .9s ease both;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:950px){
    .header-inner,
    .nav ul{
        flex-direction:column;
        gap:15px;
    }

    .hero-grid,
    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .grid-3{
        grid-template-columns:1fr 1fr;
    }

    .trust-grid{
        grid-template-columns:1fr 1fr;
    }

    .process-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{
        font-size:38px;
    }
}

@media(max-width:600px){
    .grid-3,
    .process-grid,
    .footer-grid,
    .form-row{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:31px;
    }

    .section-title h2{
        font-size:29px;
    }

    .hero-buttons a{
        margin-bottom:12px;
    }
}

.card-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:linear-gradient(135deg,#0078d4,#0057b8);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
    box-shadow:0 15px 35px rgba(0,120,212,.25);
    transition:.45s ease;
}

.card:hover .card-icon{
    transform:rotate(8deg) scale(1.12);
}

.trust-item i{
    color:#0078d4;
    margin-right:8px;
}

.hero::before{
    animation:float1 8s ease-in-out infinite;
}

.hero::after{
    animation:float2 12s ease-in-out infinite;
}

@keyframes float1{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-25px);}
}

@keyframes float2{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(20px);}
}
.hero-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    position:relative;
    overflow:hidden;
}

.hero-card::before{
    content:"";
    position:absolute;
    width:150px;
    height:150px;
    background:rgba(0,120,212,.08);
    border-radius:50%;
    right:-50px;
    top:-50px;
}

.hero-card h3{
    color:#0057b8;
    font-size:26px;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    gap:10px;
}

.hero-card h3 i{
    color:#0078d4;
}

.hero-services{
    list-style:none;
    padding:0;
    margin:0;
}

.hero-services li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    margin-bottom:12px;
    background:#f7fbff;
    border-radius:14px;
    font-weight:500;
    transition:.35s;
}

.hero-services li:hover{
    transform:translateX(8px);
    background:#eef7ff;
}

.hero-services li i{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:linear-gradient(135deg,#0078d4,#0057b8);
    font-size:16px;
}

.hero-card-footer{
    margin-top:20px;
    padding:14px;
    background:linear-gradient(135deg,#0078d4,#0057b8);
    color:#fff;
    border-radius:14px;
    text-align:center;
    font-weight:600;
}

.hero-card-footer i{
    margin-right:8px;
}