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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#222;
    line-height:1.6;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}
/* ==========================
TOP BAR
========================== */

.top-bar{
    background:#081b4b;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ==========================
HEADER
========================== */

.header{
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo a{
    font-size:30px;
    font-weight:bold;
    color:#081b4b;
}

.logo span{
    color:#ff6a00;
}

.nav-menu{
    display:flex;
    gap:30px;
}

.nav-menu li a{
    color:#222;
    font-weight:600;
    transition:.3s;
}

.nav-menu li a:hover{
    color:#ff6a00;
}

.call-btn{
    background:#ff6a00;
    color:#fff;
    padding:12px 22px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.call-btn:hover{
    background:#081b4b;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px){

.navbar{
flex-direction:column;
height:auto;
padding:20px 0;
}

.nav-menu{
flex-direction:column;
margin:20px 0;
text-align:center;
gap:15px;
}

.top-content{
flex-direction:column;
gap:10px;
}

}
/* ==========================
HERO SECTION
========================== */

.hero{
    background:linear-gradient(135deg,#081b4b,#0e5ac9);
    color:#fff;
    padding:100px 0;
}

.hero-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:55px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    color:#f2f2f2;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.btn-primary{
    background:#ff6a00;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:bold;
}

.btn-primary:hover{
    background:#ffffff;
    color:#081b4b;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:bold;
}

.btn-secondary:hover{
    background:#fff;
    color:#081b4b;
}

.hero-features{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    font-weight:bold;
}

.hero-features i{
    color:#ffb400;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    max-width:100%;
    width:500px;
    animation:float 3s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/* Mobile */

@media(max-width:992px){

.hero-content{
flex-direction:column;
text-align:center;
}

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

.hero-buttons{
justify-content:center;
flex-wrap:wrap;
}

.hero-features{
justify-content:center;
}

.hero-image img{
width:320px;
}

}
/* ==========================
HOSTING PLANS
========================== */

.hosting-plans{
    padding:100px 0;
    background:#f7f9fc;
}

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

.section-title h2{
    font-size:40px;
    color:#081b4b;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

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

.plan-card{
    background:#fff;
    border-radius:15px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.plan-card:hover{
    transform:translateY(-10px);
}

.plan-card i{
    font-size:55px;
    color:#ff6a00;
    margin-bottom:20px;
}

.plan-card h3{
    font-size:28px;
    color:#081b4b;
    margin-bottom:15px;
}

.price{
    font-size:40px;
    color:#ff6a00;
    font-weight:bold;
    margin-bottom:25px;
}

.price span{
    font-size:18px;
    color:#777;
}

.plan-card ul{
    margin-bottom:30px;
}

.plan-card ul li{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.plan-btn{
    display:inline-block;
    background:#081b4b;
    color:#fff;
    padding:14px 30px;
    border-radius:30px;
    font-weight:bold;
    transition:.3s;
}

.plan-btn:hover{
    background:#ff6a00;
}

.popular{
    border:3px solid #ff6a00;
}

.badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#ff6a00;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
}

/* Mobile */

@media(max-width:992px){

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

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

}
/* ==========================
FEATURES SECTION
========================== */

.features{
    padding:100px 0;
    background:#ffffff;
}

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

.feature-box{
    background:#f8f9fc;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.feature-box i{
    font-size:50px;
    color:#ff6a00;
    margin-bottom:20px;
}

.feature-box h3{
    color:#081b4b;
    margin-bottom:15px;
    font-size:24px;
}

.feature-box p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}

/* Responsive */

@media(max-width:992px){

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

.feature-box{
    padding:30px 20px;
}

}
/* ==========================
STATISTICS
========================== */

.stats{
    background:#081b4b;
    padding:80px 0;
}

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

.stat-box{
    background:rgba(255,255,255,.08);
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.stat-box h2{
    color:#ff6a00;
    font-size:42px;
    margin-bottom:10px;
}

.stat-box p{
    color:#fff;
    font-size:18px;
}

/* ==========================
CTA
========================== */

.cta{
    background:linear-gradient(135deg,#0b63d8,#081b4b);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ==========================
Responsive
========================== */

@media(max-width:992px){

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.cta h2{
    font-size:32px;
}

}

@media(max-width:576px){

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

}
/* ==========================
FOOTER
========================== */

.footer{

    background:#06153a;

    color:#fff;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:35px;

}

.footer-box h2,
.footer-box h3{

    margin-bottom:20px;

    color:#ffffff;

}

.footer-box p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:10px;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:#d8d8d8;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#ff6a00;

}

.social-icons{

    margin-top:20px;

}

.social-icons a{

    width:42px;

    height:42px;

    background:#ff6a00;

    color:#fff;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    margin-right:10px;

    transition:.3s;

}

.social-icons a:hover{

    background:#ffffff;

    color:#081b4b;

}

.footer hr{

    border:0;

    border-top:1px solid rgba(255,255,255,.15);

    margin:40px 0 20px;

}

.copyright{

    text-align:center;

    color:#ccc;

}

/* ==========================
Back To Top
========================== */

#topBtn{

    position:fixed;

    right:20px;

    bottom:20px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#ff6a00;

    color:#fff;

    cursor:pointer;

    font-size:18px;

    box-shadow:0 5px 15px rgba(0,0,0,.3);

}

/* ==========================
Responsive
========================== */

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.social-icons{

text-align:center;

}

}
/* ==========================
PAGE BANNER
========================== */

.page-banner{

    background:linear-gradient(135deg,#081b4b,#0e5ac9);

    color:#fff;

    padding:100px 20px;

    text-align:center;

}

.page-banner h1{

    font-size:50px;

    margin-bottom:15px;

}

.page-banner p{

    font-size:20px;

    max-width:700px;

    margin:auto;

}

@media(max-width:768px){

.page-banner h1{

font-size:36px;

}

.page-banner p{

font-size:17px;

}

}
/* VPS Table */

.vps-table{
    width:100%;
    border-collapse:collapse;
    margin-top:40px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.vps-table th{
    background:#081b4b;
    color:#fff;
    padding:18px;
}

.vps-table td{
    padding:18px;
    border:1px solid #eee;
    text-align:center;
}

.vps-table tr:nth-child(even){
    background:#f8f9fc;
}

@media(max-width:768px){

    .vps-table{
        display:block;
        overflow-x:auto;
    }

}
/* ==========================
ABOUT PAGE
========================== */

.about-section{

padding:100px 0;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:20px;

}

.about-content h2{

font-size:42px;

margin-bottom:20px;

color:#081b4b;

}

.about-content p{

font-size:18px;

line-height:1.8;

margin-bottom:20px;

color:#555;

}

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

text-align:center;

}

.about-content h2{

font-size:34px;

}

}
/* WhatsApp */

.whatsapp{

position:fixed;

left:20px;

bottom:20px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

border-radius:50%;

z-index:9999;

box-shadow:0 10px 25px rgba(0,0,0,.3);

animation:whatsapp 2s infinite;

}

@keyframes whatsapp{

0%{

transform:scale(1);

}

50%{

transform:scale(1.1);

}

100%{

transform:scale(1);

}

}
#loader{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:#081b4b;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.spinner{

width:60px;

height:60px;

border:6px solid #fff;

border-top:6px solid #ff6a00;

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}
.domain-search{

padding:80px 0;

background:#f8f9fc;

text-align:center;

}

.domain-search input{

width:60%;

padding:18px;

font-size:18px;

border:2px solid #ddd;

border-radius:50px;

}

.domain-search button{

padding:18px 35px;

background:#ff6a00;

color:#fff;

border:none;

border-radius:50px;

margin-left:10px;

cursor:pointer;

}
.faq{

padding:80px 0;

}

.faq details{

margin:20px 0;

padding:20px;

background:#fff;

border-radius:10px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.faq summary{

font-size:18px;

font-weight:bold;

cursor:pointer;

}
.call-fixed{

position:fixed;

right:20px;

bottom:90px;

width:60px;

height:60px;

background:#081b4b;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:26px;

z-index:999;

}