/*=========================
      Google Font
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

/*=========================
      Navbar
=========================*/

.navbar{
    background:rgba(10,15,35,.90);
    backdrop-filter:blur(10px);
    transition:.3s;
    padding:15px 0;
}

.navbar-brand{
    color:#fff !important;
    font-weight:700;
}

.navbar-brand span{
    color:#0d6efd;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
    transition:.3s;
}

.nav-link:hover{
    color:#0d6efd !important;
}

.btn-primary{
    border-radius:50px;
    padding:12px 28px;
}

/*=========================
      Hero Section
=========================*/

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);
    color:#fff;
    padding:120px 0 80px;
}

.hero h1{
    font-size:58px;
    font-weight:800;
    line-height:1.2;
}

.hero p{
    font-size:18px;
    color:#dbeafe;
}

.domain-search{
    background:#fff;
    color:#222;
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.2);
}

.domain-search input{
    height:55px;
    border-radius:50px 0 0 50px;
}

.domain-search button{
    border-radius:0 50px 50px 0;
}

/*=========================
      Section Title
=========================*/

section{
    padding:80px 0;
}

section h2{
    font-weight:700;
    margin-bottom:15px;
}

section p{
    color:#666;
}
/*=========================
      Hosting Cards
=========================*/

.card{
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.card-body{
    padding: 35px 25px;
}

.card h3{
    font-weight: 700;
    margin-bottom: 10px;
}

.card h2{
    font-size: 38px;
    font-weight: 800;
}

.card ul{
    margin-top: 25px;
    padding-left: 0;
}

.card ul li{
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.card ul li:last-child{
    border-bottom: none;
}

.badge{
    font-size: 14px;
    border-radius: 30px;
    padding: 8px 16px;
}

/*=========================
      VPS Section
=========================*/

#vps{
    background: linear-gradient(135deg,#0f172a,#1e293b);
}

#vps .card{
    background:#1f2937;
    color:#fff;
}

#vps .card p{
    color:#d1d5db;
}

#vps .btn{
    margin-top:15px;
}

/*=========================
      Feature Cards
=========================*/

#features .card{
    padding:15px;
}

#features i{
    transition:.3s;
}

#features .card:hover i{
    transform:scale(1.15) rotate(8deg);
    color:#0d6efd;
}

/*=========================
      Statistics
=========================*/

.bg-primary h2{
    font-size:42px;
    font-weight:800;
}

.bg-primary p{
    color:#fff;
    margin-bottom:0;
}

/*=========================
      Testimonials
=========================*/

.card p{
    margin-bottom:10px;
}

.card h5{
    font-weight:600;
    color:#0d6efd;
}

/*=========================
      Buttons
=========================*/

.btn{
    transition:all .3s ease;
}

.btn:hover{
    transform:translateY(-3px);
}

.btn-outline-light:hover{
    color:#0d6efd;
    background:#fff;
}

/*=========================
      Images
=========================*/

img{
    max-width:100%;
    height:auto;
}
/*=========================
      FAQ Section
=========================*/

.accordion-item{
    border:none;
    border-radius:12px !important;
    overflow:hidden;
    margin-bottom:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.accordion-button{
    font-weight:600;
    padding:18px 20px;
}

.accordion-button:not(.collapsed){
    background:#0d6efd;
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:20px;
    color:#555;
}

/*=========================
      Contact Section
=========================*/

#contact{
    background:#fff;
}

#contact input,
#contact textarea{
    border-radius:12px;
    border:1px solid #ddd;
    padding:14px 16px;
    transition:.3s;
}

#contact input:focus,
#contact textarea:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 0.2rem rgba(13,110,253,.15);
}

#contact button{
    width:100%;
    height:50px;
    font-weight:600;
}

/*=========================
      Footer
=========================*/

footer{
    background:#0f172a !important;
}

footer h3,
footer h5{
    color:#fff;
    margin-bottom:20px;
}

footer p{
    color:#cbd5e1;
}

footer ul{
    padding:0;
}

footer ul li{
    list-style:none;
    margin-bottom:10px;
}

footer a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

footer a:hover{
    color:#0d6efd;
}

footer i{
    width:42px;
    height:42px;
    line-height:42px;
    text-align:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    transition:.3s;
}

footer i:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateY(-5px);
}

/*=========================
      Responsive
=========================*/

@media (max-width:991px){

.hero{
    text-align:center;
    padding-top:140px;
}

.hero h1{
    font-size:42px;
}

.domain-search{
    margin-top:40px;
}

.navbar-nav{
    text-align:center;
    padding-top:15px;
}

.nav-link{
    margin-left:0;
    padding:10px 0;
}

}

@media (max-width:768px){

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:16px;
}

.card{
    margin-bottom:20px;
}

.bg-primary h2{
    font-size:30px;
}

footer{
    text-align:center;
}

}

@media (max-width:576px){

.hero{
    min-height:auto;
    padding:120px 0 60px;
}

.hero h1{
    font-size:28px;
}

.domain-search{
    padding:20px;
}

.domain-search .row .col{
    margin-bottom:15px;
}

.btn{
    width:100%;
    margin-bottom:10px;
}

.card-body{
    padding:25px 18px;
}

section{
    padding:60px 0;
}

}

/*=========================
      Scrollbar
=========================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#e5e7eb;
}

::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#084298;
}

/*=========================
      Selection
=========================*/

::selection{
    background:#0d6efd;
    color:#fff;
}
