/* ===================================
Extronos Hosting
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --primary: #5B3DF5;

    --secondary: #00C8FF;

    --dark: #081120;

    --text: #64748B;

    --light: #F8FAFC;

}

body {

    font-family: 'Inter', sans-serif;

    font-size: 16px;

    color: var(--text);

    background: var(--light);

}

.logo-img {

    width: 220px;
    height: auto;
    display: block;
    transition: .35s ease;

}

.site-header.scrolled .logo-img {

    width: 200px;

}

/* ===================================
TOP BAR
=================================== */

.top-bar {

    background: var(--dark);

    color: #fff;

    height: 42px;

    display: flex;

    align-items: center;

    font-size: 14px;

}

.top-bar-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.top-bar-left {

    font-weight: 500;

}

.top-bar-left strong {

    color: #00C8FF;

}

.top-bar-right {

    display: flex;

    gap: 20px;

}

.top-bar-right a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.top-bar-right a:hover {

    color: var(--secondary);

}

.top-bar-right i {

    margin-right: 5px;

}

/* ==========================
   Sticky Header
========================== */

.site-header {

    position: sticky;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    transition: all .35s ease;

}

.site-header.scrolled {

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);

}

/* ===================================
HEADER
=================================== */

.site-header {

    background: #fff;

    border-bottom: 1px solid #ececec;

}

.navbar {

    min-height: 90px;

    padding: 0;

    transition: .35s ease;

}

.site-header.scrolled .navbar {

    min-height: 78px;

}

.navbar-brand {

    font-size: 30px;

    font-weight: 800;

    color: var(--primary);

    text-decoration: none;

    letter-spacing: 1px;

}

.navbar-brand:hover {

    color: var(--primary);

}

.navbar-nav {

    gap: 10px;

}

.nav-link {

    padding: 12px 18px !important;

    border-radius: 10px;

    transition: .3s;

}

.nav-link:hover {

    background: #F5F7FF;

}

.nav-link.active {

    color: var(--primary);

}

/* ==========================
   Navbar Dropdown
========================== */

.navbar .dropdown-menu{
    min-width:260px;
    border:none;
    border-radius:16px;
    padding:12px 0;
    margin-top:18px;
    background:#fff;
    box-shadow:0 18px 45px rgba(15,23,42,.12);
    animation:fadeDown .25s ease;
}

.navbar .dropdown-toggle::after{
    margin-left:8px;
    vertical-align:middle;
    transition:.3s;
}

.navbar .dropdown.show .dropdown-toggle::after,
.navbar .dropdown:hover .dropdown-toggle::after{
    transform:rotate(180deg);
}

.navbar .dropdown-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:13px 22px;
    font-size:15px;
    font-weight:600;
    color:var(--dark);
    transition:.25s;
}

.navbar .dropdown-item i{
    color:var(--primary);
    font-size:18px;
    width:22px;
    text-align:center;
}

.navbar .dropdown-item:hover{
    background:#F5F7FF;
    color:var(--primary);
    padding-left:28px;
}

.navbar .dropdown-divider{
    margin:.4rem 0;
}

@media (min-width:992px){

    .navbar .dropdown:hover>.dropdown-menu{
        display:block;
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .navbar .dropdown-menu{
        display:block;
        opacity:0;
        visibility:hidden;
        transform:translateY(15px);
        transition:all .25s ease;
    }

}

.navbar-nav > .nav-item > .nav-link::after{
    content:"";
    position:absolute;
    left:16px;
    right:16px;
    bottom:8px;
    height:2px;
    width:0;
    background:var(--primary);
    transition:.3s;
}

.header-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-shrink: 0;

}

.btn-login {

    text-decoration: none;

    color: var(--dark);

    font-weight: 600;

}

.btn-start {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 34px;

    border-radius: 14px;

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

    color: #fff;

    font-weight: 700;

    text-decoration: none;

    transition: .35s;

    box-shadow: 0 20px 40px rgba(91, 61, 245, .25);

}

.btn-start:hover {

    transform: translateY(-4px);

    color: #fff;

}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:16px;
    right:16px;
    bottom:8px;          /* was 22px */
    height:2px;
    width:0;
    background:var(--primary);
    transition:width .3s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:calc(100% - 32px);
}

.btn-start:hover {

    background: #4328d8;

    color: #fff;

}

.navbar-toggler {

    border: none;

    font-size: 28px;

}

.navbar-toggler:focus {

    box-shadow: none;

}

/* ===================================
LAYOUT
=================================== */

.container {

    max-width: 1320px;

}

/* ===================================
HERO SECTION
=================================== */

.hero {

    padding: 90px 0 120px;

    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8faff 60%,
            #eef4ff 100%);

}

.hero .row {

    min-height: 650px;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border-radius: 50px;

    background: #ffffff;

    border: 1px solid #E5E7EB;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    font-weight: 600;

    color: var(--primary);

    margin-bottom: 28px;

}

.hero-title {

    font-size: 64px;

    font-weight: 800;

    line-height: 1.1;

    color: var(--dark);

    margin-bottom: 30px;

}

.hero-title span {

    color: var(--primary);

}

.hero-description {

    max-width: 560px;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 35px;

}

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 40px;

}

.feature-item {

    display: flex;

    align-items: center;

    gap: 8px;

    font-weight: 600;

    color: var(--dark);

}

.feature-item i {

    color: #22C55E;

    font-size: 18px;

}

.hero-buttons {

    display: flex;

    gap: 18px;

    margin: 40px 0;

}

.btn-outline-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 30px;

    border: 2px solid var(--primary);

    border-radius: 12px;

    text-decoration: none;

    color: var(--primary);

    font-weight: 700;

    transition: .3s;

}

.btn-outline-custom:hover {

    background: var(--primary);

    color: #fff;

}

.hero-rating {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 16px;

    font-weight: 600;

}

.hero-rating span {

    color: var(--text);

}

/* ===================================
   HERO ILLUSTRATION
=================================== */

.hero-illustration{
    position:relative;
    width:100%;
    max-width:760px;
    height:700px;
    margin:auto;
}

/* Background Glow */

.hero-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(rgba(91, 61, 245, .25), rgba(0, 200, 255, .12), transparent 70%);
    filter: blur(70px);
    z-index: 0;
}

/* Main Card */

.server-box{
    position:absolute;
    left:25%;
    top:25%;
    transform:translate(-50%,-50%);

    width:320px;
    height:340px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:35px;

    background:rgba(255,255,255,.65);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-radius:28px;
    border:1px solid rgba(91,61,245,.15);

    box-shadow:
        0 30px 70px rgba(91,61,245,.18),
        inset 0 1px 0 rgba(255,255,255,.6);

    z-index:5;

    animation:floating 5s ease-in-out infinite;
}

.server-box::before {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 24px;

    background:

        linear-gradient(135deg,
            rgba(91, 61, 245, .20),
            rgba(0, 200, 255, .10));

    z-index: -1;

}

.server-icon {

    width: 120px;
    height: 120px;

    border-radius: 28px;

    margin: auto auto 30px;

    font-size: 58px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    box-shadow:
        0 20px 60px rgba(91, 61, 245, .35);

}

.server-box h3 {

    color: var(--dark);

    margin-bottom: 10px;

}

.server-box p {

    margin: 0;

}

.floating-card{
    position:absolute;

    display:flex;
    align-items:center;
    gap:15px;

    width:190px;
    min-height:86px;
    padding:16px 18px;

    background:#fff;
    border-radius:18px;

    border:1px solid rgba(91,61,245,.12);

    box-shadow:0 20px 50px rgba(15,23,42,.10);

    z-index:20;

    animation:floating 5s ease-in-out infinite;

    transition:.35s;
}

.floating-card:hover {

    transform: translateY(-8px);

}



.floating-card span {

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 26px;

    background: #F5F7FF;

    flex-shrink: 0;

}

.floating-card strong {

    display: block;

    font-size: 18px;

    color: var(--dark);

    margin-bottom: 4px;

}

.floating-card small {

    font-size: 15px;

}

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}



.server-box::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 30px;

    padding: 2px;

    background: linear-gradient(135deg,
            rgba(91, 61, 245, .8),
            rgba(0, 200, 255, .5));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

}

/*====================================
HERO BACKGROUND
====================================*/

.hero {

    padding-top: 110px;

    padding-bottom: 140px;

}

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(rgba(91, 61, 245, .05) 1px, transparent 1px),

        linear-gradient(90deg, rgba(91, 61, 245, .05) 1px, transparent 1px);

    background-size: 60px 60px;

    z-index: 0;

}

.hero-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

}

.shape-1 {

    width: 420px;

    height: 420px;

    background: #5B3DF5;

    opacity: .12;

    top: -180px;

    left: -150px;

}

.shape-2 {

    width: 350px;

    height: 350px;

    background: #00C8FF;

    opacity: .15;

    bottom: -150px;

    right: -120px;

}

.hero>.container {

    position: relative;

    z-index: 2;

}

.card-speed{
    top:40px;
    left:-20px;
}

.card-ssl{
    top:40px;
    right:-20px;
}

.card-backup{
    bottom:40px;
    left:-20px;
}

.card-online{
    bottom:40px;
    right:-20px;
}

/* ===================================
TRUSTED PARTNERS
=================================== */

.trusted-partners {

    padding: 70px 0;

    background: #fff;

    border-top: 1px solid #F1F5F9;

    border-bottom: 1px solid #F1F5F9;

}

.trusted-title {

    text-align: center;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #94A3B8;

    font-weight: 700;

    margin-bottom: 40px;

}

.trusted-logos {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    flex-wrap: wrap;

}

.trusted-item {

    flex: 1;

    min-width: 140px;

    display: flex;

    justify-content: center;

    align-items: center;

}

.trusted-item img {

    max-height: 42px;

    max-width: 140px;

    opacity: .55;

    filter: grayscale(100%);

    transition: .35s;

}

.trusted-item img:hover {

    opacity: 1;

    filter: none;

    transform: translateY(-3px);

}

/* ===================================
DOMAIN SEARCH
=================================== */

.domain-search {

    padding: 100px 0;

    background: #F8FAFC;

}

.domain-search .container {

    max-width: 1000px;

}

.section-heading {

    text-align: center;

    margin-bottom: 60px;

}

.section-badge {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background: #EEF2FF;

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;

}

.section-heading h2 {

    font-size: 48px;

    font-weight: 800;

    color: var(--dark);

    margin-bottom: 18px;

}

.section-heading p {

    max-width: 650px;

    margin: auto;

    font-size: 18px;

    line-height: 1.8;

}

.domain-search-box {

    background: #ffffff;

    padding: 45px;

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .06);

}

.domain-form {

    display: flex;

    gap: 18px;

}

.domain-input {

    flex: 1;

    height: 64px;

    border: 1px solid #E5E7EB;

    border-radius: 14px;

    padding: 0 25px;

    font-size: 16px;

    outline: none;

    transition: .3s;

}

.domain-input:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 5px rgba(91, 61, 245, .10);

}

.domain-prices {

    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.tld {

    background: #F8FAFC;

    border-radius: 14px;

    padding: 16px 28px;

    text-align: center;

    transition: .35s;

    cursor: pointer;

    border: 1px solid #EEF2F7;

}

.tld strong {

    display: block;

    color: var(--dark);

    font-size: 18px;

}

.tld span {

    color: var(--primary);

    font-weight: 700;

}

.tld:hover {

    transform: translateY(-6px);

    background: #fff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

@media(max-width:768px) {

    .domain-form {

        flex-direction: column;

    }

    .domain-input {

        width: 100%;

    }

    .domain-form .btn-start {

        width: 100%;

    }

    .section-heading h2 {

        font-size: 34px;

    }

    .domain-search-box {

        padding: 25px;

    }

}

/* ===================================
PRICING
=================================== */

.pricing {

    padding: 100px 0;

    background: #FFFFFF;

}

.pricing .container {

    max-width: 1200px;

}

.pricing-card {

    position: relative;

    background: #fff;

    border: 1px solid #EEF2F7;

    border-radius: 24px;

    padding: 45px 35px;

    height: 100%;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(15, 23, 42, .05);

}

.pricing-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);

}

.featured {

    border: 2px solid var(--primary);

    transform: scale(1.05);

    box-shadow: 0 25px 60px rgba(91, 61, 245, .18);

}

.featured:hover {

    transform: scale(1.05) translateY(-10px);

}

.popular-tag {

    position: absolute;

    top: 20px;

    right: 20px;

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    padding: 8px 14px;

    border-radius: 50px;

    box-shadow: 0 10px 25px rgba(91, 61, 245, .25);

}

.pricing-card h4 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 25px;

    color: var(--dark);

}

.price {

    font-size: 48px;

    font-weight: 800;

    color: var(--primary);

    margin-bottom: 30px;

}

.price span {

    font-size: 18px;

    font-weight: 500;

    color: #64748B;

}

.pricing-card ul {

    list-style: none;

    padding: 0;

    margin: 0 0 35px;

}

.pricing-card li {

    padding: 12px 0;

    color: #475569;

    border-bottom: 1px solid #F1F5F9;

    font-size: 16px;

}

.pricing-card .btn-start {

    width: 100%;

    justify-content: center;

}

@media (max-width:991px) {

    .featured {

        transform: none;

    }

    .featured:hover {

        transform: translateY(-10px);

    }

    .pricing {

        padding: 70px 0;

    }

}

.pricing-card li i {

    color: #22C55E;

    margin-right: 10px;

}

/* ===================================
FEATURES
=================================== */

.features {

    padding: 100px 0;

    background: #F8FAFC;

}

.features .container {

    max-width: 1200px;

}

.feature-card {

    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    height: 100%;

    border: 1px solid #EEF2F7;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(15, 23, 42, .05);

}

.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);

    border-color: rgba(91, 61, 245, .20);

}

.feature-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

    color: #fff;

    font-size: 34px;

    transition: .35s;

    box-shadow: 0 20px 40px rgba(91, 61, 245, .25);

}

.feature-card:hover .feature-icon {

    transform: rotate(-8deg) scale(1.08);

}

.feature-card h4 {

    font-size: 24px;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 18px;

}

.feature-card p {

    color: #64748B;

    line-height: 1.8;

    margin: 0;

    font-size: 16px;

}

@media(max-width:991px) {

    .features {

        padding: 70px 0;

    }

}

@media(max-width:767px) {

    .feature-card {

        padding: 30px 24px;

    }

    .feature-icon {

        width: 70px;

        height: 70px;

        font-size: 28px;

    }

}

@keyframes floatIcon {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-6px);

    }

    100% {

        transform: translateY(0);

    }

}

.feature-icon {

    animation: floatIcon 3s ease-in-out infinite;

}

/* ===================================
TESTIMONIALS
=================================== */

.testimonials {

    padding: 100px 0;

    background: #FFFFFF;

}

.testimonials .container {

    max-width: 1200px;

}

.testimonial-card {

    background: #fff;

    padding: 40px 35px;

    border-radius: 24px;

    border: 1px solid #EEF2F7;

    height: 100%;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(15, 23, 42, .05);

}

.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);

}

.stars {

    color: #FBBF24;

    font-size: 22px;

    margin-bottom: 20px;

    letter-spacing: 3px;

}

.testimonial-text {

    font-size: 17px;

    line-height: 1.9;

    color: #64748B;

    margin-bottom: 30px;

    min-height: 120px;

    font-style: italic;

}

.testimonial-user {

    display: flex;

    align-items: center;

    gap: 15px;

}

.avatar {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 22px;

    flex-shrink: 0;

}

.testimonial-user h5 {

    margin: 0;

    font-size: 18px;

    font-weight: 700;

    color: var(--dark);

}

.testimonial-user span {

    color: #94A3B8;

    font-size: 15px;

}

@media(max-width:768px) {

    .testimonials {

        padding: 70px 0;

    }

    .testimonial-card {

        padding: 30px 25px;

    }

    .testimonial-text {

        min-height: auto;

    }

}

.testimonial-card {

    position: relative;

}

.quote-icon {

    position: absolute;

    top: 25px;

    right: 25px;

    font-size: 40px;

    color: rgba(91, 61, 245, .08);

}

/*====================================
STATISTICS
====================================*/

.statistics {

    padding: 90px 0;

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

}

.stat-card {

    text-align: center;

    color: #fff;

}

.stat-number {

    font-size: 56px;

    font-weight: 800;

    margin-bottom: 12px;

}

.stat-title {

    font-size: 18px;

    opacity: .9;

}

/*====================================
CALL TO ACTION
====================================*/

.cta {

    padding: 100px 0;

    background: #F8FAFC;

}

.cta-box {

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

    color: #fff;

    border-radius: 30px;

    padding: 70px 50px;

    text-align: center;

    position: relative;

    overflow: hidden;

    box-shadow: 0 30px 80px rgba(91, 61, 245, .25);

}

.cta-box h2 {

    font-size: 48px;

    font-weight: 800;

    margin: 25px 0;

}

.cta-box p {

    max-width: 700px;

    margin: 0 auto 40px;

    line-height: 1.8;

    opacity: .9;

    font-size: 18px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 34px;

    border: 2px solid rgba(255, 255, 255, .3);

    color: #fff;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 700;

    transition: .35s;

}

.btn-outline:hover {

    background: #fff;

    color: var(--primary);

}

.cta-box::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    top: -140px;

    right: -120px;

}

.cta-box::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .06);

    bottom: -100px;

    left: -80px;

}

@media(max-width:768px) {

    .cta {

        padding: 70px 0;

    }

    .cta-box {

        padding: 50px 25px;

    }

    .cta-box h2 {

        font-size: 34px;

    }

    .cta-buttons {

        flex-direction: column;

    }

    .cta-buttons a {

        width: 100%;

    }

}

/*====================================
FAQ
====================================*/

.faq {

    padding: 100px 0;

    background: #FFFFFF;

}

.faq .container {

    max-width: 900px;

}

.accordion-item {

    border: none;

    margin-bottom: 18px;

    border-radius: 18px !important;

    overflow: hidden;

    box-shadow: 0 15px 35px rgba(15, 23, 42, .05);

}

.accordion-button {

    padding: 24px 28px;

    font-size: 18px;

    font-weight: 700;

    color: var(--dark);

    background: #fff;

}

.accordion-button:not(.collapsed) {

    background: #EEF2FF;

    color: var(--primary);

    box-shadow: none;

}

.accordion-button:focus {

    box-shadow: none;

}

.accordion-body {

    padding: 24px 28px;

    color: #64748B;

    line-height: 1.8;

}

/*====================================
FOOTER
====================================*/

.footer {

    background: #081120;

    color: #CBD5E1;

    padding: 90px 0 30px;

}

.footer-logo {

    font-size: 34px;

    font-weight: 800;

    color: #fff;

    margin-bottom: 20px;

}

.footer-about {

    line-height: 1.9;

    margin-bottom: 30px;

}

.footer h5 {

    color: #fff;

    margin-bottom: 22px;

    font-size: 20px;

}

.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer li {

    margin-bottom: 14px;

}

.footer a {

    color: #CBD5E1;

    text-decoration: none;

    transition: .3s;

}

.footer a:hover {

    color: #fff;

    padding-left: 6px;

}

.footer-social {

    display: flex;

    gap: 14px;

}

.footer-social a {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .08);

    font-size: 18px;

}

.footer-social a:hover {

    background: var(--primary);

    color: #fff;

    padding-left: 0;

}

.footer hr {

    border-color: rgba(255, 255, 255, .08);

    margin: 50px 0 30px;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

}

.footer-links {

    display: flex;

    gap: 25px;

}

.footer-contact i {

    color: var(--primary);

    margin-right: 10px;

}

@media(max-width:768px) {

    .footer {

        text-align: center;

    }

    .footer-social {

        justify-content: center;

    }

    .footer-bottom {

        flex-direction: column;

    }

    .footer-links {

        justify-content: center;

        flex-wrap: wrap;

    }

}

/* ==========================
   Scroll Reveal
========================== */

.reveal {

    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.reveal.active {

    opacity: 1;

    transform: translateY(0);

}


.feature-card,
.pricing-card,
.testimonial-card {

    
    transform: translateY(40px);

    transition: .6s ease;

}

.reveal.active .feature-card:nth-child(1),
.reveal.active .pricing-card:nth-child(1),
.reveal.active .testimonial-card:nth-child(1) {

    opacity: 1;
    transform: none;
    transition-delay: .1s;

}

.reveal.active .feature-card:nth-child(2),
.reveal.active .pricing-card:nth-child(2),
.reveal.active .testimonial-card:nth-child(2) {

    opacity: 1;
    transform: none;
    transition-delay: .25s;

}

.reveal.active .feature-card:nth-child(3),
.reveal.active .pricing-card:nth-child(3),
.reveal.active .testimonial-card:nth-child(3) {

    opacity: 1;
    transform: none;
    transition-delay: .4s;

}

/* ==========================
   Back To Top
========================== */

#backToTop {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 54px;

    height: 54px;

    border: none;

    border-radius: 50%;

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

    color: #fff;

    font-size: 22px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 15px 40px rgba(91, 61, 245, .35);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: all .35s ease;

    z-index: 999;

}

#backToTop.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

#backToTop:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 45px rgba(91, 61, 245, .45);

}

@media(max-width:768px) {

    #backToTop {

        width: 48px;

        height: 48px;

        right: 20px;

        bottom: 20px;

        font-size: 18px;

    }

}

/* ==========================
   Trusted Logo Slider
========================== */

.trusted-slider {

    overflow: hidden;

    position: relative;

    width: 100%;

}

.trusted-track {

    display: flex;

    width: max-content;

    animation: scrollLogos 30s linear infinite;

}

.trusted-slider:hover .trusted-track {

    animation-play-state: paused;

}

.trusted-item {

    width: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    flex-shrink: 0;

}

.trusted-item img {

    max-width: 120px;

    max-height: 42px;

    opacity: .55;

    filter: grayscale(100%);

    transition: .35s;

}

.trusted-item:hover img {

    opacity: 1;

    filter: none;

    transform: scale(1.08);

}

@keyframes scrollLogos {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

.trusted-slider::before,
.trusted-slider::after {

    content: "";

    position: absolute;

    top: 0;

    width: 120px;

    height: 100%;

    z-index: 2;

    pointer-events: none;

}

.trusted-slider::before {

    left: 0;

    background: linear-gradient(to right, #fff, transparent);

}

.trusted-slider::after {

    right: 0;

    background: linear-gradient(to left, #fff, transparent);

}

@media(max-width:768px) {

    .trusted-track {

        animation-duration: 18s;

    }

    .trusted-item {

        width: 140px;

    }

}

/* ==========================
   Billing Toggle
========================== */

.billing-toggle {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    margin-bottom: 60px;

}

.billing-toggle span {

    font-weight: 700;

    color: #64748B;

}

.billing-toggle span.active {

    color: var(--primary);

}

.billing-toggle small {

    display: block;

    color: #22C55E;

    font-size: 12px;

}

.switch {

    position: relative;

    width: 60px;

    height: 32px;

}

.switch input {

    display: none;

}

.slider {

    position: absolute;

    inset: 0;

    border-radius: 50px;

    background: #D1D5DB;

    cursor: pointer;

    transition: .3s;

}

.slider::before {

    content: "";

    position: absolute;

    width: 24px;

    height: 24px;

    left: 4px;

    top: 4px;

    border-radius: 50%;

    background: #fff;

    transition: .3s;

}

.switch input:checked+.slider {

    background: var(--primary);

}

.switch input:checked+.slider::before {

    transform: translateX(28px);

}

/* ==========================
   Floating Contact
========================== */

.floating-contact {

    position: fixed;

    left: 25px;

    bottom: 30px;

    display: flex;

    flex-direction: column;

    gap: 14px;

    z-index: 998;

}

.float-btn {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 24px;

    text-decoration: none;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

}

.float-btn:hover {

    transform: translateY(-6px) scale(1.08);

    color: #fff;

}

.whatsapp {

    background: #25D366;

}

.live-chat {

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

}

.phone {

    background: #0EA5E9;

}

@media(max-width:768px) {

    .floating-contact {

        left: 15px;

        bottom: 20px;

    }

    .float-btn {

        width: 50px;

        height: 50px;

        font-size: 20px;

    }

}

@keyframes floatButton {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

    100% {

        transform: translateY(0);

    }

}

.float-btn {

    animation: floatButton 3s ease-in-out infinite;

}

.whatsapp {

    animation-delay: 0s;

}

.live-chat {

    animation-delay: .5s;

}

.phone {

    animation-delay: 1s;

}

/* ==========================
   Preloader
========================== */

#preloader {

    position: fixed;

    inset: 0;

    background: #ffffff;

    display: flex;

    justify-content: center;

    align-items: center;

    z-index: 99999;

    transition: opacity .5s ease, visibility .5s ease;

}

#preloader.hide {

    opacity: 0;

    visibility: hidden;

}

.loader-content {

    text-align: center;

}

.loader-logo img {
    width: 90px;
    height: auto;
}

.loader-spinner {

    width: 50px;

    height: 50px;

    margin: auto;

    border: 4px solid #E5E7EB;

    border-top: 4px solid var(--primary);

    border-radius: 50%;

    animation: spin 1s linear infinite;

}

.loader-content p {

    margin-top: 20px;

    font-weight: 600;

    color: var(--text);

}

@keyframes spin {

    to {

        transform: rotate(360deg);

    }

}

@keyframes pulseLogo {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

}

body.loading {

    overflow: hidden;

}

#domainResult {

    margin-top: 30px;

}

.domain-status {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px;

    border-radius: 18px;

    background: #fff;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

}

.available {

    color: #22C55E;

    font-weight: 700;

}

.unavailable {

    color: #EF4444;

    font-weight: 700;

}


/* ==========================
   Compare Modal
========================== */

.modal-content {

    border: none;

    border-radius: 24px;

    overflow: hidden;

}

.modal-header {

    background: linear-gradient(135deg,
            var(--primary),
            #7B61FF);

    color: #fff;

}

.modal-header .btn-close {

    filter: invert(1);

}

.table th {

    background: #F8FAFC;

    font-weight: 700;

}

.table td,
.table th {

    padding: 18px;

}


/* ==========================
   Sales Popup
========================== */

.sales-popup {

    position: fixed;

    left: 25px;

    bottom: 120px;

    width: 320px;

    background: #fff;

    border-radius: 18px;

    padding: 16px;

    display: flex;

    gap: 14px;

    align-items: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);

    z-index: 997;

    opacity: 0;

    transform: translateY(30px);

    transition: .4s;

}

.sales-popup.show {

    opacity: 1;

    transform: translateY(0);

}

.sales-popup img {

    width: 54px;

    height: 54px;

    border-radius: 50%;

    object-fit: cover;

}

.sales-popup strong {

    color: var(--dark);

}

.sales-popup p {

    margin: 4px 0;

    font-size: 14px;

}

.sales-popup small {

    color: #94A3B8;

}

@media(max-width:768px) {

    .sales-popup {

        width: 280px;

        left: 15px;

        bottom: 95px;

    }

}

@media(max-width:991px) {

    .site-header {

        position: sticky;

    }

    .navbar {

        min-height: 80px;

    }

    .logo-img {

        width: 185px;

    }

    .navbar-collapse {

        background: #fff;

        margin-top: 18px;

        padding: 20px;

        border-radius: 18px;

        box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

    }

    .navbar-nav {

        gap: 0;

    }

    .nav-link {

        padding: 14px 10px !important;

    }

    .header-buttons {

        margin-top: 20px;

        justify-content: center;

        width: 100%;

    }

}

@media(max-width:768px) {

    .logo-img {

        width: 165px;

    }

    .navbar-toggler {

        width: 46px;
        height: 46px;

        border-radius: 12px;

        background: #F5F7FF;

    }

    .navbar-toggler i {

        font-size: 26px;

    }

    .header-buttons {

        flex-direction: column;

    }

    .btn-login,
    .btn-start {

        width: 100%;

    }

}

@media(max-width:992px) {

    .hero {

        text-align: center;

    }

    .hero-description {

        margin: auto auto 35px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-features {

        justify-content: center;

    }

    .hero-rating {

        justify-content: center;

    }

    .hero-illustration {

        margin-top: 70px;

    }

}

@media(max-width:768px) {

    .hero {

        padding: 70px 0;

    }

    .hero-title {

        font-size: 42px;

    }

    .hero-description {

        font-size: 17px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons a {

        width: 100%;

    }

    .hero-illustration {

        height: auto;

        display: grid;

        gap: 20px;

    }

    .server-box {

        position: relative;

        left: auto;
        top: auto;

        transform: none;

        width: 100%;

        margin-bottom: 25px;

    }

    .floating-card {

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: 100%;

    }

}

html,
body{
    overflow-x:hidden;
    width:100%;
}

