@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* -------------Theme settings start------------------------------ */
:root {
    --primary-color: #003F7D;
    --primary-gradient: linear-gradient(135deg, #003F7D 0%, #0056ac 100%);
    --secondary-color: #E37434;
    --secondary-gradient: linear-gradient(135deg, #E37434 0%, #E37434 100%);
    --accent-blue: #00A3FF;
    --bs-purple: #6f42c1;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 600;
    --heding-color: #1a1a1a;
    --paragraph-color: #555555;
    --heading-size: 48px;
    --para-size: 16px;
    --text-white: #fff;
    --heading-size2: 40px;
    
    /* Modern Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 63, 125, 0.1);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    --premium-shadow: 0 30px 60px rgba(0, 63, 125, 0.12);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 12px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;


}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    overflow-x: hidden !important;
}

li {
    list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

h1 {
    font-size: var(--heading-size);
    font-weight: var(--font-weight-light);
}

p {
    font-size: var(--para-size);
    font-weight: var(--paragraph-color);
    color: var(--paragraph-color);
}

a {
    color: #3333;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 400;
    opacity: 1;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

a:hover {
    color: #003F7D !important;
}

a:active {
    color: #003F7D !important;
}

section {
    margin-top: 90px;
}

.btn-common {
    background: var(--secondary-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 40px;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 80, 3, 0.3);
    text-decoration: none;
    cursor: pointer;
}

.btn-common a {
    color: var(--text-white) !important;
    font-size: 16px;
    text-decoration: none;
}

.btn-common:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 80, 3, 0.4);
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
}

.btn-common:focus,
.btn-common:active,
.btn-common:hover {
    color: #ffffff !important;
}

.btn-getdeal {
    position: relative;
    z-index: 2;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    flex: 0 0 auto;
    white-space: nowrap;
    isolation: isolate;
    pointer-events: auto;
}

.btn-getdeal:hover,
.btn-getdeal:focus {
    background: #E37434;
    box-shadow: 0 14px 30px rgba(255, 80, 3, 0.38);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius-md);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md);
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 63, 125, 0.1);
    border-color: var(--primary-color);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 163, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 163, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 163, 255, 0); }
}

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

body.home-splash-pending,
body.site-loader-active {
    overflow: hidden !important;
}

body.home-splash-pending > *:not(.site-loader),
body.site-loader-active > *:not(.site-loader) {
    visibility: hidden !important;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader .loader {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    color: #ffffff;
    border-radius: 50%;
    perspective: 1000px;
    transform: rotateZ(45deg);
}

.site-loader .loader::before,
.site-loader .loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: siteLoaderSpin 1s linear infinite;
}

.site-loader .loader::after {
    color: #ff3d00;
    transform: rotateY(70deg);
    animation-delay: 0.4s;
}

@keyframes siteLoaderSpin {
    0%,
    100% {
        box-shadow: 0.2em 0 0 0 currentColor;
    }
    12% {
        box-shadow: 0.2em 0.2em 0 0 currentColor;
    }
    25% {
        box-shadow: 0 0.2em 0 0 currentColor;
    }
    37% {
        box-shadow: -0.2em 0.2em 0 0 currentColor;
    }
    50% {
        box-shadow: -0.2em 0 0 0 currentColor;
    }
    62% {
        box-shadow: -0.2em -0.2em 0 0 currentColor;
    }
    75% {
        box-shadow: 0 -0.2em 0 0 currentColor;
    }
    87% {
        box-shadow: 0.2em -0.2em 0 0 currentColor;
    }
}

.site-loader__grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.site-loader__line {
    position: absolute;
    background: #003f7d;
}

.site-loader__line--v {
    top: 0;
    bottom: 0;
    width: 1px;
    left: calc(var(--i) * 5%);
    transform-origin: center top;
    transform: scaleY(0);
    animation: loaderGridY 0.6s ease-out forwards;
    animation-delay: calc(var(--i) * 0.03s);
}

.site-loader__line--h {
    left: 0;
    right: 0;
    height: 1px;
    top: calc(var(--i) * 5%);
    transform-origin: left center;
    transform: scaleX(0);
    animation: loaderGridX 0.6s ease-out forwards;
    animation-delay: calc(var(--i) * 0.03s);
}

.site-loader__slice {
    position: absolute;
    top: -50%;
    left: calc(var(--i) * 25%);
    width: 8px;
    height: 200vh;
    background: #003f7d;
    transform: rotate(15deg) translateY(-110%);
    opacity: 0;
    animation: loaderSlice 5s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.15s);
}

.site-loader__square {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--size);
    height: var(--size);
    border: 2px solid #003f7d;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    opacity: 0;
    animation: loaderSquare 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.site-loader__central-fill {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 220vmax;
    height: 160vmax;
    border-radius: 44px;
    background: #003f7d;
    box-shadow: 0 24px 80px rgba(0, 63, 125, 0.34);
    transform: translate(-50%, -50%) scale(0) rotate(8deg);
    animation: loaderCentralFill 7s cubic-bezier(0.87, 0, 0.13, 1) infinite;
}

.site-loader__corner {
    position: absolute;
    width: 128px;
    height: 128px;
    border-color: #003f7d;
    border-style: solid;
    opacity: 0;
    transform: scale(0);
    animation: loaderCorner 1s ease-out forwards;
}

.site-loader__corner--tl {
    top: 0;
    left: 0;
    border-width: 3px 0 0 3px;
    animation-delay: 1s;
}

.site-loader__corner--tr {
    top: 0;
    right: 0;
    border-width: 3px 3px 0 0;
    animation-delay: 1.1s;
}

.site-loader__corner--bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 3px 3px;
    animation-delay: 1.2s;
}

.site-loader__corner--br {
    right: 0;
    bottom: 0;
    border-width: 0 3px 3px 0;
    animation-delay: 1.3s;
}

.site-loader__tech-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: loaderTechCircle 4s infinite;
    animation-delay: var(--delay);
}

.site-loader__tech-circle span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

.site-loader__glow {
    position: absolute;
    width: min(56vw, 600px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 63, 125, 0.42) 0%, rgba(0, 63, 125, 0.12) 34%, rgba(0, 63, 125, 0) 72%);
    animation: loaderGlow 2s ease-out forwards;
}

.site-loader__ring,
.site-loader__ring--mid,
.site-loader__core {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.site-loader__ring {
    width: min(46vw, 500px);
    height: min(46vw, 500px);
    border: 2px dashed #003f7d;
    opacity: 0;
    animation: loaderRotate 6.8s linear forwards, loaderOuterFade 6.8s ease forwards;
}

.site-loader__ring--mid {
    width: min(37vw, 400px);
    height: min(37vw, 400px);
    border: 3px solid rgba(0, 63, 125, 0.62);
    opacity: 0;
    animation: loaderPulse 6.8s ease-in-out forwards;
}

.site-loader__core {
    width: min(30vw, 320px);
    height: min(30vw, 320px);
    background: #003f7d;
    animation: loaderCore 6.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.site-loader__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: min(32vw, 290px);
    max-width: 68%;
    min-width: 140px;
    opacity: 0;
    transform: translate(-50%, -50%) translateY(20px) scale(0.5);
    animation: loaderLogo 6.8s ease-out forwards;
}

.site-loader__logo img {
    width: 100%;
    max-width: 100%;
    max-height: 84px;
    height: auto;
    display: block;
    object-fit: contain;
}

.site-loader__scanner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(34vw, 384px);
    height: min(34vw, 384px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    animation: loaderScanner 2s ease-out infinite;
    animation-delay: 2.5s;
}

.site-loader__stream {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    top: calc(20% + (var(--i) * 15%));
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    opacity: 0;
    transform: translateX(-100%);
    animation: loaderStream 3.5s infinite;
    animation-delay: calc(3s + (var(--i) * 0.2s));
}

.site-loader__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.11) 50%, transparent 100%);
    transform: translateX(-120%);
    animation: loaderShine 1.15s ease-in-out 3.25s forwards;
    pointer-events: none;
}

@keyframes loaderGlow {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.5); opacity: 0.62; }
    100% { transform: scale(1.2); opacity: 0.4; }
}

@keyframes loaderGridY {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes loaderGridX {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes loaderSlice {
    0% { transform: rotate(15deg) translateY(-110%); opacity: 0; }
    12% { opacity: 1; }
    48% { transform: rotate(15deg) translateY(110%); opacity: 1; }
    62%, 100% { transform: rotate(15deg) translateY(110%); opacity: 0; }
}

@keyframes loaderSquare {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0) rotate(0deg); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1) rotate(90deg); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1) rotate(90deg); }
}

@keyframes loaderCentralFill {
    0%, 32% { transform: translate(-50%, -50%) scale(0) rotate(8deg); }
    76% { transform: translate(-50%, -50%) scale(0.9) rotate(2deg); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

@keyframes loaderOuterFade {
    0% { opacity: 0; }
    14% { opacity: 1; }
    86% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes loaderPulse {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    30% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    60% { opacity: 1; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes loaderCorner {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

@keyframes loaderTechCircle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--rotation)) translateX(200px) rotate(calc(var(--rotation) * -1)) scale(0);
    }
    30%,
    70% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--rotation)) translateX(200px) rotate(calc(var(--rotation) * -1)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(calc(var(--rotation) + 360deg)) translateX(200px) rotate(calc((var(--rotation) + 360deg) * -1)) scale(0);
    }
}

@keyframes loaderLogo {
    0%, 24% { opacity: 0; transform: translate(-50%, -50%) translateY(20px) scale(0.5); }
    44% { opacity: 1; transform: translate(-50%, -50%) translateY(0) scale(1.08); }
    80%, 100% { opacity: 1; transform: translate(-50%, -50%) translateY(0) scale(1); }
}

@keyframes loaderScanner {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    30% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.4); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2.5); }
}

@keyframes loaderStream {
    0% { transform: translateX(-100%); opacity: 0; }
    45% { opacity: 0.5; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes loaderShine {
    from { transform: translateX(-120%); }
    to { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
    .site-loader__line,
    .site-loader__slice,
    .site-loader__square,
    .site-loader__central-fill,
    .site-loader__corner,
    .site-loader__tech-circle,
    .site-loader__glow,
    .site-loader__logo,
    .site-loader__scanner,
    .site-loader__stream,
    .site-loader__shine {
        animation-duration: 0.8s !important;
        animation-delay: 0s !important;
    }
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translate3d(0, 34px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes heroFadeInRight {
    from { opacity: 0; transform: translate3d(42px, 18px, 0) scale(0.96); }
    to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes heroFloatSoft {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -14px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@keyframes heroFeatureLoop {
    0%, 18%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.82;
        box-shadow: 0 0 0 rgba(0, 63, 125, 0);
    }
    8% {
        transform: translateY(-5px) scale(1.03);
        opacity: 1;
        box-shadow: 0 14px 28px rgba(0, 63, 125, 0.14);
    }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.reveal { 
    opacity: 0; 
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); 
    will-change: transform, opacity;
}

.reveal.reveal-up { transform: translateY(50px); }
.reveal.reveal-left { transform: translateX(-80px); }
.reveal.reveal-right { transform: translateX(80px); }

.reveal.active { 
    opacity: 1; 
    transform: translate(0, 0); 
}

#reviews.reveal {
    opacity: 1;
    transform: none;
}


/* -------------Theme settings end------------------------------ */
/* nav--section-----start */
.nav-item {
    margin-left: 10px;
}

.nav-item a {
    color: #454545 !important;
    font-weight: 500 !important;
    font-size: 14px;
    line-height: 21px;
}

.nav-item a:hover {
    color: var(--primary-color) !important;
}

.nav-item a:active {
    color: var(--primary-color) !important;
}

.nav-sec img {
    width: 100%;
}


/* BTN */
.navbar {
    background: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: #ffffff !important;
}

.btn-login {
    background-color: transparent;
    border: 1.5px solid var(--primary-color);
    font-size: 14px;
    font-weight: var(--font-weight-medium) !important;
    color: var(--primary-color) !important;
    border-radius: var(--border-radius-sm);
    padding: 8px 25px;
}

.btn-login:hover {
    background: var(--primary-gradient);
    border-color: transparent !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 63, 125, 0.2);
}

.navbar-nav {
    margin-right: 50px;
}

.navbar {
    box-shadow: 0px 4px 4px rgb(0 0 0 / 15%) !important;
    background-color: #ffff;
}





/* ----------------hero-section-------------------------------- */
.hero {
    margin-top: 0;
    padding: 95px 0 65px 0;
    background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.08) 0%, rgba(0, 163, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 80, 3, 0.05) 0%, rgba(255, 80, 3, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.bring_feature {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--paragraph-color);
    margin-bottom: 30px;
}

.hero-subtitle span {
    color: var(--primary-color);
    font-weight: 400 !important;
}

.free_domain {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 63, 125, 0.05);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.icons-hero {
    margin: 0 !important;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 999px;
}

.icons-hero:hover {
    background: #fff;
    transform: translateY(-5px);
}


.hero-price {
    margin-bottom: 30px;
}

.on-hosting-offer {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.on-hosting-offer h4 {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    min-width: 205px;
}

.on-hosting-offer .hero-offer-text {
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    min-width: 0;
}

@keyframes waveColorShift {
    0% { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-offer-text .offer-get,
.hero-offer-text .offer-free {
    display: inline-block;
    font-weight: 800;
    background: linear-gradient(120deg, #003F7D 0%, #E37434 25%, #003F7D 60%, #E37434 75%, #003F7D 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: waveColorShift 4.6s linear infinite;
    position: relative;
}



.renewal-price {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #003f7d;
    font-weight: 500;
}

.on-hosting-offer h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-price h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 5px;
}

.money-back {
    font-size: 13px !important;
    line-height: 1.4 !important;
}

/* -----search box--------------- */
#frmDomainHomepage {
    position: relative;
    z-index: 8;
    pointer-events: auto !important;
}

.search-box {
    position: relative;
    z-index: 8;
    pointer-events: auto !important;
    background: #fff;
    border: none;
    padding: 8px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(0, 63, 125, 0.1);
    max-width: 600px;
    margin-top: 50px;
}

.search-box input[type="text"] {
    position: relative;
    z-index: 9;
    width: 100%;
    pointer-events: auto !important;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.4;
}

.search-box input[type="text"]::placeholder {
    color: #6f7888;
    opacity: 1;
}

.search-box button[type="submit"] {
    position: relative;
    z-index: 9;
    pointer-events: auto !important;
    border-radius: var(--border-radius-md);
}

.search-box i {
    pointer-events: none !important;
}

.hero-top_img {
    z-index: 1;
    position: relative;
}

.animate-slide-in,
.hero .hero-subtitle,
.hero .hero-price,
.hero .btn-hero,
.hero #frmDomainHomepage,
.hero-image-reveal {
    opacity: 0;
    animation-duration: 0.9s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
}

.hero .bring_feature.animate-slide-in {
    opacity: 1;
    animation: none;
}

.hero .hero-features.animate-slide-in {
    opacity: 1;
    animation: none;
}

.hero .hero-subtitle {
    opacity: 1;
    animation: none;
}

.hero .hero-price {
    opacity: 1;
    animation: none;
}

.hero .btn-hero {
    opacity: 1;
    animation: none;
    position: relative;
    z-index: 5;
}

.hero #frmDomainHomepage {
    opacity: 1;
    animation: none;
}

.hero-image-reveal {
    animation-name: heroFadeInRight;
    animation-delay: 0.32s;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-image-container {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-top_img {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}


/* Floating Shapes */
.floating-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.shape-1 { top: 20%; left: 10%; width: 50px; }
.shape-2 { bottom: 20%; right: 15%; width: 80px; animation: float 6s infinite reverse; }
.shape-3 { top: 15%; right: 10%; width: 30px; animation: pulse-glow 4s infinite; }

/* ---------------- pricing section-------------------------------- */
.prices {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.prices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 63, 125, 0.03) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(255, 80, 3, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.moder_sol {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.moder_sol span {
    color: var(--primary-color);
}

.p_prices {
    max-width: 600px;
    margin: 0 auto 80px auto;
    text-align: center;
    color: var(--paragraph-color);
    font-size: 18px;
}

.hostin_landing_plan {
    background: #fff;
    background-image: radial-gradient(circle at top right, rgba(0, 63, 125, 0.02) 0%, transparent 70%);
    border: 1px solid rgba(0, 63, 125, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.hostin_landing_plan::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 63, 125, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hostin_landing_plan:hover::after {
    opacity: 1;
}

.hostin_landing_plan:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 63, 125, 0.12);
    border-color: var(--primary-color);
}

.hostin_landing_plan.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 1;
}

.hostin_landing_plan.featured .featured-badge {
    position: absolute;
    top: -15px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hostin_landing_plan h3 {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    opacity: 0.8;
}

.landing_discount {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.landing_discount h4 {
    font-size: 16px;
    text-decoration: line-through;
    color: #999;
}

.landing_discount .save {
    padding: 4px 12px;
    background: var(--secondary-gradient);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
}

.span-price-landing {
    font-size: 52px;
    font-weight: 800;
    color: #E37434;
    margin: 5px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.span-price-landing span:first-child {
    font-size: 30px;
    margin-top: 10px;
    margin-right: 2px;
}

.span-price-landing .decimal_price {
    font-size: 24px;
    margin-top: 10px;
}

.span-price-landing span:first-child {
    color: #003f7d;
}

.span-price-landing .decimal_price {
    color: #E37434;
}

.span-price-landing span:last-child {
    font-size: 16px;
    margin-top: 30px;
    margin-left: 4px;
    font-weight: 500;
    color: #777;
}

.hostin_landing_plan p {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
    text-align: center;
}

.view_more {
    width: 100%;
    padding: 14px 30px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.view_more:hover {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 63, 125, 0.2);
}

/* Home pricing redesign */
.home-pricing-showcase {
    padding: 92px 0 110px;
    background: transparent;
    overflow: visible;
}

.home-pricing-showcase::before {
    content: none;
}



.home-pricing-showcase .pricing-intro {
    max-width: 1180px;
    margin: 0 auto 52px;
    display: block;
    text-align: center;
}

.home-pricing-showcase .moder_sol {
    white-space: nowrap;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
    text-align: center;
    color: var(--heding-color);
    text-wrap: balance;
}

.home-pricing-showcase .moder_sol span {
    display: inline;
    white-space: inherit;
    font-weight: 800;
}

.home-pricing-showcase .p_prices {
    max-width: 800px;
    margin: 0 auto 38px auto;
    font-size: 20px;
    line-height: 1.6;
    color: var(--paragraph-color);
    text-align: center;
}

.home-pricing-showcase .pricing-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.motion-scroll-home {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
    transition: transform 0.9s cubic-bezier(0.17, 0.55, 0.55, 1), opacity 0.9s ease;
    will-change: transform, opacity;
}

.motion-scroll-home.motion-scroll-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.home-pricing-showcase .motion-scroll-home {
    transition-delay: 0s;
}

.home-pricing-showcase .pricing-intro.motion-scroll-home {
    transition-delay: 0s;
}

.home-pricing-showcase .pricing-card-cell:nth-child(1) .motion-scroll-home,
.support-hub > a:nth-child(1) .motion-scroll-home,
.services-grid-home > [class*="col-"]:nth-child(1) .motion-scroll-home,
#reviews-carousel .owl-item:nth-child(1) .motion-scroll-home {
    transition-delay: 0.08s;
}

.home-pricing-showcase .pricing-card-cell:nth-child(2) .motion-scroll-home,
.support-hub > a:nth-child(2) .motion-scroll-home,
.services-grid-home > [class*="col-"]:nth-child(2) .motion-scroll-home,
#reviews-carousel .owl-item:nth-child(2) .motion-scroll-home {
    transition-delay: 0.16s;
}

.home-pricing-showcase .pricing-card-cell:nth-child(3) .motion-scroll-home,
.support-hub > a:nth-child(3) .motion-scroll-home,
.services-grid-home > [class*="col-"]:nth-child(3) .motion-scroll-home,
#reviews-carousel .owl-item:nth-child(3) .motion-scroll-home {
    transition-delay: 0.24s;
}

.home-pricing-showcase .pricing-card-cell:nth-child(4) .motion-scroll-home,
.services-grid-home > [class*="col-"]:nth-child(4) .motion-scroll-home,
.service-cta-wrap.motion-scroll-home {
    transition-delay: 0.32s;
}

.home-pricing-showcase .pricing-card-cell {
    display: flex;
}

.home-pricing-showcase .hostin_landing_plan {
    width: 100%;
    min-height: 100%;
    padding: 28px 28px 28px;
    align-items: flex-start;
    text-align: left;
    border-radius: 26px;
    border: 1px solid rgba(0, 63, 125, 0.1);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(7, 36, 87, 0.07);
    overflow: hidden;
}

.home-pricing-showcase .hostin_landing_plan::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 28px;
    width: 54px;
    height: 6px;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b4d90 0%, #E37434 100%);
    transition: width 0.35s ease;
}

.home-pricing-showcase .hostin_landing_plan::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 22px;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.08) 0%, rgba(0, 163, 255, 0) 72%);
    pointer-events: none;
}

.home-pricing-showcase .hostin_landing_plan:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 63, 125, 0.16);
    box-shadow: 0 24px 56px rgba(0, 63, 125, 0.11);
}

.home-pricing-showcase .hostin_landing_plan:hover::before,
.home-pricing-showcase .hostin_landing_plan:focus-within::before {
    width: calc(100% - 56px);
}

.home-pricing-showcase .hostin_landing_plan h3 {
    width: 100%;
    margin: 20px 0 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
    color: #0b4d90;
    text-align: left;
    font-family: inherit;
}

.home-pricing-showcase .landing_discount {
    justify-content: flex-start;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.home-pricing-showcase .landing_discount h4 {
    font-size: 17px;
}

.home-pricing-showcase .landing_discount .save {
    padding: 5px 14px;
    border-radius: 999px;
    background: #ff6b1a;
    font-size: 12px;
    line-height: 1.2;
}

.home-pricing-showcase .span-price-landing {
    justify-content: flex-start;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 0 0 14px;
    width: 100%;
    font-size: 58px;
    font-weight: 800;
    line-height: 0.95;
    font-family: inherit;
}

.home-pricing-showcase .span-price-landing span:first-child {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-right: 4px;
}

.home-pricing-showcase .span-price-landing .decimal_price {
    font-size: 33px;
    font-weight: 700;
    margin-top: 0;
    line-height: 1;
}

.home-pricing-showcase .span-price-landing span:last-child {
    margin-top: 0;
    margin-left: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #71798a;
}

.home-pricing-showcase .hostin_landing_plan p {
    margin-bottom: 30px;
    text-align: left;
    color: #7a8190;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    font-family: inherit;
}

.home-pricing-showcase .hostin_landing_plan .renewal-price {
    color: #003f7d;
    margin-bottom: 18px;
    font-weight: 500;
    line-height: 1.5;
    font-family: inherit;
}

.home-pricing-showcase .hostin_landing_plan > a {
    margin-top: auto;
}

.home-pricing-showcase .view_more {
    width: 100%;
    min-height: 56px;
    border: 0;
    border-radius: 16px;
    background: #0b4d90;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    font-family: inherit;
    box-shadow: 0 14px 30px rgba(0, 63, 125, 0.16);
}

.home-pricing-showcase .view_more:hover,
.home-pricing-showcase .view_more:focus {
    background: #E37434 !important;
    color: #ffffff !important;
    box-shadow: 0 18px 34px rgba(255, 80, 3, 0.22);
}

/* ------------support--------------------------------------- */
.support {
    padding: 72px 0 34px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.support h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 30px;
    color: var(--heding-color);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-wrap: balance;
}

.support h1 span a {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline;
}

.support p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 38px auto;
    color: var(--paragraph-color);
    line-height: 1.6;
}

.support-hub {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.support-card {
    background: #fff;
    border: 1px solid rgba(0, 63, 125, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    min-width: 300px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 63, 125, 0.1);
    border-color: var(--primary-color);
}

.support-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(0, 63, 125, 0.05);
    border-radius: 16px;
}

.support-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.support-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.support-status {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #28a745;
    margin-top: auto;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    animation: pulse-glow 2s infinite;
}


/* --------------------smartway---------------------------------- */
.smart-align {
    max-width: 1200px;
    margin: auto;
}

.smart-way {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.smart-way h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.smart-way p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--paragraph-color);
    margin-bottom: 40px;
    max-width: 550px;
}

.smart-way-content {
    padding: 40px;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 63, 125, 0.05);
}

.smart-way-img-container {
    position: relative;
    z-index: 1;
}

.smart-way .smart-way-content.reveal-left,
.smart-way .smart-way-content.reveal-right {
    transition-delay: 0.08s;
}

.smart-way .smart-way-img-container.reveal-left,
.smart-way .smart-way-img-container.reveal-right {
    transition-delay: 0.22s;
}

.smart-way-img-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 63, 125, 0.05) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.smart-way .img-fluid {
    width: 90%;
    max-width: 450px;
}


/* -------------------------perfect solution---------------------------- */

.perfect_business {
    background: var(--primary-color) url('../images/pattern.svg') center/cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.perfect_business h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.p_dukeoffers {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 60px;
}

.hosting_whitebox {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hosting_whitebox:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.land_domain-box {
    color: #fff;
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
}

.land_domain-box img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1); /* Make icons white */
    margin-right: 15px;
}

.booming {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
    font-weight: 300;
}

.btn-more-service {
    background: var(--secondary-gradient);
    border-radius: var(--border-radius-sm);
    padding: 18px 50px;
    border: none;
    color: #fff;
    font-weight: var(--font-weight-bold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-more-service a {
    color: #ffffff;
}













/* -----------------reviews------------------ */
#reviews {
    padding: 120px 0;
    background: #000e1f;
    position: relative;
    overflow: hidden;
}

#reviews::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    z-index: 0;
}

.t_monial {
    font-size: 52px;
    font-weight: 700;
    color: #fff !important;
    text-align: center;
    margin-bottom: 10px;
}

.t_monial span {
    display: inline;
}

.t-monial-para {
    max-width: 600px;
    margin: 0 auto 60px auto;
    text-align: center;
    color: rgb(255, 255, 255) !important;
    font-size: 18px;
}

.review.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 63, 125, 0.14);
    border-radius: 32px;
    padding: 42px 40px !important;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 226px;
    height: 100%;
    box-shadow: inset 0 -2px 0 rgba(0, 63, 125, 0.12), 0 18px 42px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 20px 10px;
}

.review.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.review.glass-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 140px;
    font-family: serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.review p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 22px;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.review .person {
    margin-top: auto !important;
}

.review .person h5 {
    font-size: 18px;
}

#reviews-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

#reviews-carousel .owl-item {
    display: flex;
    height: auto;
}

#reviews-carousel .owl-item .review {
    width: 100%;
    height: 100%;
}

#reviews-carousel .review.motion-scroll-home,
#reviews-carousel .owl-item.cloned .review.motion-scroll-home {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.person img {
    border: 3px solid rgba(0, 63, 125, 0.3);
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.person h5 {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

/* Custom Carousel Dots */
#reviews-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.2) !important;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

#reviews-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 30px;
}



/* -----------------------------brand-section--------------------------------- */

.logo_brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background: #ffffff;
    box-shadow: 
        0 15px 35px rgba(0, 63, 125, 0.06),
        0 5px 15px rgba(0, 63, 125, 0.03);
    border-radius: 100px;
    padding: 30px 60px;
    border: 1px solid rgba(0, 63, 125, 0.06);
    margin: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 991px) {
    .logo_brand {
        padding: 24px 30px;
        border-radius: 40px;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .logo_brand {
        padding: 20px;
        border-radius: 24px;
        gap: 15px;
    }
    .logo_brand li img {
        max-height: 32px;
    }
}

.logo_brand:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 22px 45px rgba(0, 63, 125, 0.09),
        0 8px 20px rgba(0, 63, 125, 0.04);
}

.logo_brand li {
    padding: 10px;
}

.logo_brand li img {
    max-height: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

.logo_brand li img:hover {
    transform: scale(1.1);
}



.bg-white {
    background: #ecf6ff !important;
    border-radius: 15px;
    height: 240px;
}


/* ---------------footer--------------------------------------------- */


.footer_duke {
    background: var(--primary-color);
    background-position: center;
    background-size: cover;
    margin-top: 70px;
    margin-bottom: 0;
    border-bottom: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
}

.footer_duke::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--primary-color);
    pointer-events: none;
    z-index: 2;
}

.footer_duke p {
    font-weight: 300;
    font-size: 14px;
    max-width: 410px;
}

.footer_duke h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px !important;
}

.footer_duke img[src*="duke-logo-new"],
.footer_duke img[src*="duke-logo-footer"] {
    width: min(100%, 260px) !important;
    max-width: 260px;
    height: auto;
    display: block;
    object-fit: contain;
}

footer ul {
    list-style: none;
}

/* footer li {
    line-height: 2.2rem !important;
} */
footer li {
    line-height: 1.2rem !important;
    margin-bottom: 12px;
    font-size: 14px;
}

footer a {
    color: var(--text-white);
    font-weight: 300;
}

footer a:hover {
    color: #a1d2ff !important;
}

.footer-location {
    color: #ffffff;
}

.footer-location div {
    margin: 10px 0;
}

.footer-location img {
    margin-right: 10px;
}

.footer-top {
    padding-top: 42px;
    padding-bottom: 26px;
}

.footer-bottom {
    margin-top: 0 !important;
    padding-top: 22px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

}

.footer-bottom > .d-flex {
    border-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.Privacy {
    display: flex;
    gap: 24px;

}

.Privacy p {
    margin-right: 30px;

}

.dropdown-menu {
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #b6b6b6;
    border-radius: 0.25rem;
    padding: 1rem 0;
}

.nav-item a:hover {
    color: var(--primary-color) !important;
    background: white;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem auto;
    overflow: hidden;
    border-top: 1px solid rgb(167, 167, 167);
    width: 90%;
    /* margin: auto; */
}

.money-guar {
    display: flex;
    align-items: center;
}

.footer-location div {
    margin: 10px 0;
    font-size: 14px;
    font-weight: 300;
}

.copyrt_policy {
    display: flex;
    justify-content: space-between;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 80%;
    }
}

@media (max-width: 1200px) {
    .hero-features {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .icons-hero {
        margin-right: 0px;
        margin-top: 7px;
        margin-bottom: 5px;
    }

    .btn-hero {
        display: flex;
        align-items: flex-start;
        margin: 20px 0;
        flex-direction: column;
    }

    .money-guar {
        margin-top: 10px;
    }

    .view_more {
        padding: 8px 38px !important;
        margin-bottom: 10px !important;
    }

    .hostin_landing_plan h3 {
        font-size: 14px;
        line-height: 38px;
        font-weight: var(--font-weight-medium);
        color: #454545;
    }

    .landing_discount .save {
        padding: 5px 4px;
        background-color: var(--primary-color);
        font-size: 13px;
    }

    .span-price-landing {
        font-size: 36px;
    }

    .search-box button[type="submit"] {
        /* border: none;
        outline: none;
        background-color: transparent;
        margin-left: 5px;
        cursor: pointer;
        background: var(--primary-color);
        padding: 10px;
        height: 45px;
        width: 100px;
        color: var(--text-white); */
        margin-left: -80px;
    }

    section.hero {
        margin-top: 90px !important;
    }

}

@media (max-width: 991px) {
    h1 {
        font-size: 40px !important;
    }

    .hero-top_img {
        width: 100%;
    }

    .search-box {
        width: 100%;
    }

    .hostin_landing_plan {
        margin-bottom: 20px;
    }

    .view_more {
        padding: 8px 50px !important;
        margin-bottom: 10px !important;
    }

    .smart-way img {
        width: 100%;
    }

    .duke_off-_img {
        width: 100%;
    }

    .logo_brand {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 991px) {



    .nav-sec img {
        width: auto;
    }



    #nav-toggle-button span {
        background-color: rgb(255, 255, 255) !important;
    }

    /* .navbar-nav {
        margin-right: 0px;
    } */

    .top_ban_img {
        width: 100% !important;
    }

    .navbar-brand {
        width: 70%;
    }

    #hero {
        padding-top: 25px;
    }

    .navbar-nav {
        text-align: center !important;
    }

    .navbar-collapse .btn-primary {
        width: 91px;
        margin: auto;
        display: flex !important;
        /* text-align: center !important; */
    }

    li.nav-item {
        border-bottom: 1px dotted #8a8a8a;
        margin-bottom: 8px;
        padding-bottom: 5px;
    }

    .btn_home_loginx {
        display: flex;
        justify-content: center;
        width: 95%;
    }

    .nav-item a {
        text-align: center;
    }




    .moder_sol span {
        line-height: 36px;
    }

    .support h1 span {
        font-size: 30px;
        line-height: 36px;
    }



}

@media (max-width: 768px) {
    .p_prices {
        margin-bottom: 30px !important;
    }

    .hostin_landing_plan h3 {
        font-size: 21px;
        line-height: 38px;
        font-weight: var(--font-weight-medium);
        color: #454545;
        text-align: center;
        line-height: 26px;
    }

    .hostin_landing_plan h3 {
        font-size: 18px;
        line-height: 38px;
        font-weight: var(--font-weight-medium);
        color: #454545;
    }

    .copyrt_policy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .Privacy p {
        margin: 0 10px;
    }

    .Privacy {
        margin-top: 10px;
        display: flex;
        justify-content: space-around;
    }

    .landing_discount .save {
        padding: 5px 8px;
        background-color: var(--primary-color);
        font-size: 14px;
    }
}


@media (max-width: 567px) {
    section {
        margin-top: 55px;
    }

    .hostin_landing_plan {
        width: 80%;
        margin-right: auto;
        margin-left: auto;
    }

    .landing-chatsupport_ {
        flex-direction: column;

    }

    .bring_feature {
        margin-top: 60px;
    }

    .landing-chatsupport_ a {
        margin-bottom: 10px;

    }

    .free_domain {
        font-size: 16px;
        color: var(--paragraph-color);
    }

    .hero-price h4 {
        font-size: 40px;
        color: var(--secondary-color);
        margin-top: 10px;
    }

    h1 {
        font-size: 30px !important;
    }

    .nav-sec img {
        width: 70%;
    }

    .footer-top {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #nav-toggle-button span {
        background-color: rgb(255, 255, 255) !important;
    }

    /* .navbar-nav {
        margin-right: 0px;
    } */

    .top_ban_img {
        width: 100% !important;
    }

    .navbar-brand {
        width: 70%;
    }

    #hero {
        padding-top: 25px;
    }

    .navbar-nav {
        text-align: center !important;
    }

    .navbar-collapse .btn-primary {
        width: 91px;
        margin: auto;
        display: flex !important;
        /* text-align: center !important; */
    }

    li.nav-item {
        border-bottom: 1px dotted #8a8a8a;
        margin-bottom: 8px;
        padding-bottom: 5px;
    }

    .btn_home_loginx {
        display: flex;
        justify-content: center;
        width: 95%;
    }

    .nav-item a {
        text-align: center;
    }

    .fast_secure {
        margin-top: 20px;
    }

    .perfect_business {
        background-color: var(--primary-color);
        padding: 29px 0;
    }

    .p_dukeoffers {
        margin-bottom: 40px;
        margin-top: 17px;
    }

    .hostig_whitebox {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .moder_sol span {
        line-height: 36px;
    }

    .support h1 span {
        font-size: 30px;
        line-height: 36px;
    }

    .support h1 {
        line-height: 36px;
    }

    .support p {
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .smart-way p {
        max-width: 500px;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .perfect_business span {
        line-height: 36px;
    }

    .search-box input[type="text"] {
        font-size: 13px;
    }

    .search-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .brand img {
        width: 90%;
        margin-bottom: 15px;
        width: 80%;
    }

    .logo_brand {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-around;
        margin-left: 8px;
    }

    .hero-top_img {
        width: 80%;
        margin-left: 30px;
    }

    .copyrt {
        /* border: dotted; */
        margin-top: 20px;
        border-top: 0.5px solid white;
        padding-top: 5px;
    }

    .hero {
        margin-left: 8px;
    }

    .container {
        max-width: 98%;
    }

    .landing-chatsupport_ a {
        margin-left: 0px;
        margin-right: 0px;
        display: block;
    }

    .btn-common {
        padding: 10px 50px !important;


    }

    .search-box button[type="submit"] {
        /* border: none;
        outline: none;
        background-color: transparent;
        margin-left: 5px;
        cursor: pointer;
        background: var(--primary-color);
        padding: 10px;
        height: 44px;
        width: 100px;
        color: var(--text-white); */
        margin-left: -50px;
    }

    section.hero {
        margin-top: 40px !important;
    }

}


@media (max-width: 374px) {
    .search-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .search-box button[type="submit"] {
        /* border: none;
        outline: none;
        background-color: transparent;
        margin-left: 5px;
        cursor: pointer;
        background: var(--primary-color);
        padding: 10px;
        height: 44px;
        width: 100px;
        color: var(--text-white); */
        margin-left: -50px;
    }
}

@media (max-width: 350px) {
    .search-box button[type="submit"] {
        /* border: none;
        outline: none;
        background-color: transparent;
        margin-left: 5px;
        cursor: pointer;
        background: var(--primary-color);
        padding: 10px;
        height: 44px;
        width: 100px;
        color: var(--text-white); */
        margin-left: -50px;
    }
}

.hero-price h6 {
    font-size: 28px;
    color: #212529 !important;
    font-weight: 400 !important;
    margin-left: 3PX;
}
.on-hosting-offer{
    display: flex;
   /* align-items: flex-end !important; */
    flex-wrap: wrap;
}
.hero-price h5 {
    font-size: 28px;
    color: #212529 !important;
    font-weight: 400 !important;
    margin-left: 10PX;
}
@media (max-width: 567px) {
    .hero-price h5 {
        font-size: 20px;
        margin-left: 5PX;
        font-size: 24px;
        font-weight: 400 !important;
    }
    .hero-price h4 {
        font-size: 34px !important;
        color: var(--secondary-color);
        margin-top: 0px !important;
    }
    .hero-price h6 {
        font-size: 20px;
        font-weight: 400;
        margin-left: 0PX;
        margin-top: 15px;
    }
}
@media (max-width: 350px) {
    .hero-price h5 {
        font-size: 18px !important;
    }
}

h1.bring_feature {
    font-size: 34px;
}

.hero-price h6 {
    font-size: 26px;
    color: #212529 !important;
    font-weight: 400 !important;
    margin-left: 3PX;
}
.on-hosting-offer{
    display: flex;
    flex-wrap: wrap;
}
.hero-price h5 {
    font-size: 26px;
    color: #212529 !important;
    font-weight: 400 !important;
    margin-left: 10PX;
    margin-top: 21px;
}
@media (max-width: 567px) {
    .hero-price h5 {
        font-size: 20px;
        margin-left: 5PX;
        font-size: 24px;
        font-weight: 400 !important;
    }
    .hero-price h4 {
        font-size: 34px !important;
        color: var(--secondary-color);
        margin-top: 0px !important;
    }
    .hero-price h6 {
        font-size: 20px;
        font-weight: 400;
        margin-left: 0PX;
        margin-top: 15px;
    }
}
@media (max-width: 350px) {
    .hero-price h5 {
        font-size: 18px !important;
    }
}
h1.bring_feature {
    font-size: 34px;
}

.decimal_price{
    font-size: 25px !important;
}

/* Modern header */
.navbar.fixed-top {
    padding: 8px 0 !important;
    background: #ffffff !important;
    border-bottom: 0;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar.fixed-top > .container {
    max-width: 960px;
    padding: 6px 18px;
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, border-radius 0.25s ease;
}

@media (min-width: 1200px) {
    .navbar.fixed-top > .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .navbar.fixed-top > .container {
        max-width: 80%;
    }
}

.navbar.fixed-top.scrolled > .container,
.navbar.fixed-top:has(.navbar-collapse.show) > .container {
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.navbar.fixed-top.scrolled {
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 27, 60, 0.08) !important;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: auto !important;
    max-width: 220px;
    margin-left: 0 !important;
    margin-right: 28px;
}

.navbar-brand img {
    width: 100%;
    /* max-height: 42px; */
    object-fit: contain;
    object-position: left center;
}

.navbar-nav {
    align-items: center;
    gap: 6px;
    margin-right: 18px !important;
}

.navbar .nav-link {
    position: relative;
    padding: 8px 12px !important;
    border-radius: 999px;
    color: #0d2748 !important;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-item.dropdown:hover > .nav-link {
    color: #003f7d !important;
    background: rgba(0, 63, 125, 0.08) !important;
    transform: translateY(-1px);
}

.navbar .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: 0.12em;
    border-top-color: #E37434;
}

.dropdown-menu {
    min-width: 240px;
    margin-top: 0 !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 41, 86, 0.1) !important;
    border-radius: 22px !important;
    box-shadow: 0 24px 60px rgba(0, 27, 60, 0.18);
}

.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}

.dropdown-item {
    padding: 11px 14px !important;
    border-radius: 14px;
    color: #20334d !important;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item {
    font-size: 18px !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #002956 !important;
    background: #eef5ff !important;
    transform: translateX(3px);
}

.dropdown-divider {
    width: calc(100% - 20px);
    margin: 6px auto !important;
    border-top-color: rgba(0, 41, 86, 0.08) !important;
}

.btn_home_loginx {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.btn-login {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 118px;
    max-width: 160px;
    padding: 8px 20px !important;
    background: #002956 !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700 !important;
    box-shadow: 0 12px 26px rgba(0, 41, 86, 0.24);
}

.btn-login:hover,
.btn-login:focus {
    background: #E37434 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 80, 3, 0.28);
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    border: 0 !important;
    border-radius: 50%;
    background: #eef5ff;
    color: #002956;
}

.navbar-toggler i {
    font-size: 18px;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .navbar.fixed-top {
        padding: 8px 0 !important;
        background: #ffffff !important;
        box-shadow: none !important;
        border: 0 !important;
    }

    .navbar.fixed-top > .container {
        max-width: 960px;
        border-radius: 0;
        padding: 6px 18px;
        background: #ffffff !important;
        border: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .navbar-brand {
        max-width: 210px;
        margin-right: 0;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .navbar-collapse {
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid rgba(0, 41, 86, 0.08);
        background: #ffffff !important;
        opacity: 1;
    }

    .navbar-nav {
        align-items: stretch;
        gap: 8px;
        margin-right: 0 !important;
        text-align: left !important;
    }

    li.nav-item {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom: 0 !important;
    }

    .nav-item a {
        text-align: left;
    }

    .navbar .nav-link {
        padding: 12px 14px !important;
        background: transparent;
    }

    .dropdown-menu {
        margin-top: 6px !important;
        background: #ffffff !important;
        box-shadow: none;
        border-radius: 12px !important;
    }

    .btn_home_loginx {
        justify-content: stretch;
        width: 100% !important;
        margin-top: 12px;
    }

    .btn-login {
        width: auto !important;
        min-width: 120px;
        max-width: 180px;
        text-align: center;
        margin: 0 auto;
    }

    .navbar-toggler {
        border-radius: 12px;
        background: transparent;
    }
}

@media (max-width: 575px) {
    .navbar.fixed-top > .container {
        max-width: 100%;
        padding: 6px 14px;
    }

    .navbar-brand {
        max-width: 210px;
    }

    .navbar-brand img {
        max-height: 42px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .btn_home_loginx {
        justify-content: center;
        width: auto !important;
        margin-top: 10px;
    }

    .btn-login {
        width: auto !important;
        min-width: 118px;
        max-width: 160px;
        padding: 10px 24px !important;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 72px;
    }

    .hero .row {
        min-height: auto;
    }

    .hero .col-lg-6:first-child {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero .bring_feature {
        max-width: 640px;
        margin-bottom: 16px;
        font-size: 56px !important;
        line-height: 1.08;
    }

    .hero .hero-subtitle {
        margin-bottom: 26px;
        font-size: 22px;
        line-height: 1.35;
    }

    .hero-features {
        gap: 14px;
        margin-bottom: 34px;
    }

    .icons-hero {
        padding-left: 0 !important;
        padding-right: 0 !important;
        font-size: 16px;
    }

    .hero-price {
        margin-bottom: 26px;
    }

    .hero-price h6 {
        font-size: 18px;
        margin: 0 0 8px;
        letter-spacing: 0.08em;
    }

    .on-hosting-offer {
        align-items: baseline;
        gap: 10px 14px;
    }

    .hero-price h4 {
        font-size: 64px !important;
        line-height: 0.95;
        margin: 0;
    }

    .hero-price h5 {
        margin: 0;
        font-size: 22px !important;
        line-height: 1.2;
    }

    .btn-hero {
        gap: 16px;
        margin: 0 0 30px;
    }

    .btn-hero .btn-common.btn-getdeal {
        min-width: 280px;
        margin-right: 0 !important;
    }

    .money-guar {
        align-items: flex-start;
    }

    .search-box {
        width: 100%;
        max-width: 620px;
        margin-top: 0;
        padding: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-box input[type="text"] {
        flex: 1 1 auto;
        min-width: 0;
        padding: 14px 16px 14px 10px;
    }

    .search-box button[type="submit"] {
        margin-left: 0;
        flex: 0 0 156px;
        min-width: 156px;
        padding: 14px 20px;
    }

    .hero .col-lg-6:last-child {
        display: none;
    }
}

@media (max-width: 420px) {
    .btn-login {
        min-width: 112px;
        max-width: 150px;
        padding: 10px 20px !important;
    }

    h1 {
        font-size: clamp(24px, 6.6vw, 30px) !important;
        line-height: 1.14;
    }

    h2 {
        font-size: clamp(22px, 5.8vw, 28px) !important;
        line-height: 1.16;
    }

    h3 {
        font-size: clamp(17px, 4.8vw, 22px) !important;
        line-height: 1.2;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero .bring_feature {
        max-width: 280px;
        font-size: 28px !important;
    }

    .hero .hero-subtitle {
        font-size: 17px !important;
    }

    .home-pricing-showcase .moder_sol,
    .support h1,
    .smart-way h1,
    .perfect_business h1 {
        font-size: 28px !important;
    }

    .home-pricing-showcase .p_prices,
    .support p,
    .smart-way p,
    .p_dukeoffers {
        font-size: 14px !important;
        line-height: 1.62;
    }
}

@media (max-width: 420px) {
    .navbar-brand {
        max-width: 170px;
    }

    .navbar-brand img {
        max-height: 38px;
    }

    .navbar.fixed-top > .container {
        border-radius: 22px;
    }
}

/* Home hero heading cleanup */
.hero .bring_feature {
    background: none;
    color: var(--primary-color);
    display: block;
    font-size: 60px;
    line-height: 1.25;
    margin: 0 0 14px;
    /* max-width: 760px; */
    overflow: visible;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: var(--primary-color);
}

.hero {
    min-height: 760px;
    padding-top: 104px;
    padding-bottom: 90px;
}

.hero .row {
    min-height: 540px;
}

.hero .hero-subtitle {
    color: #6b7280;
    display: block;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 28px;
    opacity: 1;
    transform: none;
}

.hero .hero-subtitle span {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 767px) {
    .hero {
        min-height: 680px;
        padding-top: 88px;
        padding-bottom: 70px;
    }

    .hero .row {
        min-height: auto;
    }

    .hero .bring_feature {
        font-size: 32px !important;
        margin-top: 30px;
    }

    .hero .hero-subtitle {
        font-size: 22px;
    }
}

.view_more:hover,
.view_more:focus {
    background: #E37434 !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 16px 32px rgba(255, 80, 3, 0.28);
    transform: translateY(-2px);
}

/* GLOBAL SMOOTH REVEAL ANIMATIONS */
.reveal, .reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease-out !important;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.reveal, .reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-up.active {
    opacity: 1;
    transform: translate(0, 0) !important;
}

@media (max-width: 1199px) {
    .home-pricing-showcase .pricing-intro {
        text-align: center;
    }

    .home-pricing-showcase .moder_sol {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .home-pricing-showcase {
        padding: 78px 0 92px;
    }

    .home-pricing-showcase .pricing-intro {
        margin-bottom: 42px;
    }

    .home-pricing-showcase .pricing-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .home-pricing-showcase {
        padding: 70px 0 84px;
    }

    .home-pricing-showcase .pricing-intro {
        margin-bottom: 38px;
    }

    .home-pricing-showcase .moder_sol {
        white-space: normal;
        font-size: 36px;
        line-height: 1.08;
    }

    .home-pricing-showcase .p_prices {
        font-size: 16px;
    }

    .home-pricing-showcase .pricing-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 520px;
        margin: 0 auto;
    }

    .home-pricing-showcase .hostin_landing_plan {
        width: 100%;
        padding: 26px 24px 24px;
        border-radius: 24px;
    }

    .home-pricing-showcase .hostin_landing_plan::before {
        top: 22px;
        left: 24px;
        width: 46px;
    }

    .home-pricing-showcase .hostin_landing_plan h3 {
        font-size: 13px;
        letter-spacing: 1.7px;
        margin-top: 18px;
        margin-bottom: 22px;
    }

    .home-pricing-showcase .span-price-landing {
        font-size: 48px;
    }

    .home-pricing-showcase .span-price-landing .decimal_price {
        font-size: 28px;
    }

    .home-pricing-showcase .view_more {
        min-height: 54px;
        border-radius: 16px;
    }

    .support h1 {
        font-size: 34px;
        line-height: 1.2;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: clamp(28px, 7vw, 36px) !important;
        line-height: 1.15;
    }

    h2 {
        font-size: clamp(24px, 6vw, 32px) !important;
        line-height: 1.18;
    }

    h3 {
        font-size: clamp(18px, 4.8vw, 24px) !important;
        line-height: 1.22;
    }

    p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero {
        margin-top: 0 !important;
        margin-left: 0 !important;
        min-height: auto;
        padding: 108px 0 58px !important;
    }

    section.hero {
        margin-top: 0 !important;
    }

    .hero .container {
        max-width: 100%;
        padding-left: 26px;
        padding-right: 26px;
    }

    .prices .container,
    .support .container,
    .smart-way .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero .row {
        min-height: auto;
    }

    .hero .col-lg-6:first-child {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero .bring_feature {
        max-width: 320px;
        margin: 0 0 14px !important;
        font-size: 32px !important;
        line-height: 1.14;
        text-align: left;
    }

    .hero .hero-subtitle {
        margin: 0 0 22px !important;
        font-size: 18px !important;
        line-height: 1.35;
        text-align: left;
    }

    .hero-features {
        gap: 10px;
        margin-bottom: 24px !important;
        align-items: flex-start;
    }

    .icons-hero {
        padding: 0 !important;
        font-size: 14px;
    }

    .hero-price {
        margin-bottom: 20px !important;
    }

    .hero-price h6 {
        margin: 0 0 8px !important;
        font-size: 14px !important;
        line-height: 1.3;
        letter-spacing: 0.08em;
    }

    .on-hosting-offer {
        gap: 8px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-price h4 {
        margin: 0 !important;
        font-size: 48px !important;
        line-height: 0.98;
    }

    .hero-price h5 {
        margin: 0 !important;
        font-size: 18px !important;
        line-height: 1.25;
    }

    .btn-hero {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin: 0 0 26px !important;
    }

    .btn-hero .btn-common.btn-getdeal {
        width: 100%;
        max-width: 280px;
        margin-right: 0 !important;
    }

    .money-guar {
        align-items: flex-start;
        margin-top: 0 !important;
    }

    .money-back {
        text-align: left;
    }

    .search-box {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 24px;
    }

    .search-box i {
        margin-left: 8px !important;
        flex: 0 0 auto;
    }

    .search-box input[type="text"] {
        flex: 1 1 auto;
        min-width: 0;
        padding: 12px 10px 12px 6px !important;
        font-size: 15px !important;
    }

    .search-box button[type="submit"] {
        flex: 0 0 132px;
        min-width: 132px;
        margin-left: 0 !important;
        padding: 12px 16px !important;
        border-radius: 18px;
    }

    .hero .col-lg-6:last-child {
        display: none;
    }

    .home-pricing-showcase {
        padding: 70px 0 84px;
    }

    .home-pricing-showcase .pricing-intro {
        margin-bottom: 30px;
    }

.home-pricing-showcase .moder_sol {
    white-space: nowrap;
    font-size: 34px;
    line-height: 1.12;
}

    .home-pricing-showcase .p_prices {
        font-size: 15px;
        line-height: 1.65;
    }

    .home-pricing-showcase .pricing-card-grid {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 18px;
    }

    .home-pricing-showcase .hostin_landing_plan {
        width: 100%;
        padding: 24px 20px 22px;
        border-radius: 22px;
    }

    .home-pricing-showcase .hostin_landing_plan::before {
        top: 20px;
        left: 20px;
        width: 44px;
    }

    .home-pricing-showcase .hostin_landing_plan:hover::before,
    .home-pricing-showcase .hostin_landing_plan:focus-within::before {
        width: calc(100% - 40px);
    }

    .home-pricing-showcase .hostin_landing_plan h3 {
        margin: 16px 0 18px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .home-pricing-showcase .span-price-landing {
        font-size: 42px;
    }

    .home-pricing-showcase .span-price-landing .decimal_price {
        font-size: 24px;
    }

    .home-pricing-showcase .hostin_landing_plan p {
        margin-bottom: 22px;
        font-size: 14px;
    }

    .support {
        padding: 54px 0 14px;
    }

    .support h1 {
        font-size: 32px;
        line-height: 1.18;
        margin-bottom: 18px;
    }

    .support p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px;
    }

    .support-card {
        min-width: 100%;
        padding: 28px 24px;
    }

    .smart-way {
        padding: 18px 0 34px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        margin-left: 0 !important;
        min-height: auto !important;
        padding: 122px 0 72px !important;
    }

    .hero .container {
        max-width: 100%;
        padding-left: 26px;
        padding-right: 26px;
    }

    .prices .container,
    .support .container,
    .smart-way .container {
        max-width: 100%;
        padding-left: 28px;
        padding-right: 28px;
    }

    .hero .row {
        min-height: auto !important;
    }

    .hero .col-lg-6:first-child {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero .bring_feature {
        max-width: 620px;
        margin: 0 0 16px !important;
        font-size: 58px !important;
        line-height: 1.08;
        text-align: left;
    }

    .hero .hero-subtitle {
        margin: 0 0 24px !important;
        font-size: 21px !important;
        line-height: 1.35;
        text-align: left;
    }

    .hero-features {
        gap: 12px;
        margin-bottom: 28px !important;
        align-items: flex-start;
    }

    .icons-hero {
        padding: 0 !important;
        margin: 0 !important;
        font-size: 16px;
    }

    .hero-price {
        margin-bottom: 22px !important;
    }

    .hero-price h6 {
        margin: 0 0 8px !important;
        font-size: 16px !important;
        line-height: 1.3;
        letter-spacing: 0.08em;
    }

    .on-hosting-offer {
        gap: 10px 12px;
        align-items: baseline;
        flex-wrap: wrap;
    }

    .hero-price h4 {
        margin: 0 !important;
        font-size: 58px !important;
        line-height: 0.95;
    }

    .hero-price h5 {
        margin: 0 !important;
        font-size: 20px !important;
        line-height: 1.2;
    }

    .btn-hero {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin: 0 0 28px !important;
    }

    .btn-hero .btn-common.btn-getdeal {
        min-width: 280px;
        margin-right: 0 !important;
    }

    .money-guar {
        align-items: flex-start;
        margin-top: 0 !important;
    }

    .money-back {
        text-align: left;
    }

    .search-box {
        width: 100%;
        max-width: 620px;
        margin: 0 !important;
        padding: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-box i {
        margin-left: 10px !important;
        flex: 0 0 auto;
    }

    .search-box input[type="text"] {
        flex: 1 1 auto;
        min-width: 0;
        padding: 14px 12px 14px 6px !important;
        font-size: 15px !important;
    }

    .search-box button[type="submit"] {
        flex: 0 0 156px;
        min-width: 156px;
        margin-left: 0 !important;
        padding: 14px 20px !important;
    }

    .hero .col-lg-6:last-child {
        display: none;
    }

    .home-pricing-showcase {
        padding: 78px 0 92px;
    }

    .home-pricing-showcase .pricing-intro {
        margin-bottom: 40px;
    }

    .home-pricing-showcase .moder_sol {
        font-size: 44px;
        line-height: 1.08;
    }

    .home-pricing-showcase .p_prices {
        max-width: 640px;
        font-size: 17px;
    }

    .home-pricing-showcase .pricing-card-grid {
        --bs-gutter-x: 22px;
        --bs-gutter-y: 22px;
    }

    .support h1 {
        max-width: 860px;
        font-size: 42px;
        line-height: 1.16;
        margin-bottom: 22px;
    }

    .support p {
        font-size: 18px;
        margin-bottom: 38px;
    }

    .perfect_business {
        padding: 68px 0;
    }

    .perfect_business .row {
        row-gap: 34px;
    }

    .perfect_business .col-md-6 {
        width: 100%;
    }

    .perfect_business h1 {
        max-width: 720px;
        margin-bottom: 18px;
        font-size: 46px;
        line-height: 1.15;
    }

    .p_dukeoffers {
        max-width: 680px;
        margin: 0 0 34px;
        font-size: 18px;
        line-height: 1.65;
    }

    .perfect_business .img-fluid.reveal {
        max-width: 420px;
        display: block;
        margin: 0 auto;
    }

    .perfect_business .col-md-6:last-child .row {
        --bs-gutter-x: 22px;
        --bs-gutter-y: 22px;
    }

    .perfect_business .col-md-6:last-child .col-sm-6 {
        width: 50%;
    }

    .hosting_whitebox {
        padding: 30px 24px;
        min-height: 235px;
        border-radius: 24px;
    }

    .land_domain-box {
        font-size: 18px;
        margin-bottom: 14px !important;
    }

    .land_domain-box img {
        width: 26px;
        height: 26px;
        margin-right: 12px;
    }

    .booming {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 0;
    }

    .perfect_business .col-md-6:last-child > a {
        width: 100% !important;
        max-width: 360px;
        margin: 26px auto 0 !important;
    }

    .btn-more-service {
        padding: 16px 28px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero {
        min-height: auto;
        padding: 126px 0 78px;
    }

    .hero .row {
        min-height: auto;
        align-items: center;
    }

    .hero .bring_feature {
        max-width: 560px;
        font-size: 48px !important;
        line-height: 1.1;
    }

    .hero .hero-subtitle {
        max-width: 520px;
        font-size: 22px;
        margin-bottom: 24px;
    }

    .hero-features {
        gap: 12px;
        margin-bottom: 28px;
    }

    .icons-hero {
        font-size: 14px;
    }

    .hero-price {
        margin-bottom: 24px;
    }

    .hero-price h6 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero-price h4 {
        font-size: 58px !important;
    }

    .hero-price h5 {
        font-size: 22px !important;
        margin-top: 10px;
    }

    .btn-hero {
        margin: 0 0 26px;
        gap: 14px;
    }

    .btn-hero .btn-common.btn-getdeal {
        margin-right: 0 !important;
    }

    .search-box {
        max-width: 560px;
        margin-top: 18px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .search-box input[type="text"] {
        flex: 1 1 auto;
        min-width: 0;
        padding: 14px 12px 14px 8px;
        font-size: 15px;
    }

    .search-box button[type="submit"] {
        flex: 0 0 150px;
        min-width: 150px;
        margin-left: 0;
        padding: 14px 18px;
    }

    .hero-top_img {
        width: 100%;
        max-width: 470px;
    }

    .home-pricing-showcase {
        padding: 84px 0 98px;
    }

    .home-pricing-showcase .pricing-intro {
        margin-bottom: 44px;
    }

    .home-pricing-showcase .pricing-card-grid {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 20px;
    }

    .home-pricing-showcase .hostin_landing_plan {
        padding: 24px 20px 22px;
    }

    .home-pricing-showcase .hostin_landing_plan h3 {
        font-size: 12px;
        letter-spacing: 1.3px;
        margin: 16px 0 18px;
    }

    .home-pricing-showcase .span-price-landing {
        font-size: 42px;
        margin-bottom: 12px;
    }

    .home-pricing-showcase .span-price-landing .decimal_price {
        font-size: 24px;
    }

    .home-pricing-showcase .span-price-landing span:first-child {
        font-size: 24px;
    }

    .home-pricing-showcase .span-price-landing span:last-child {
        margin-left: 6px;
        font-size: 14px;
    }

    .home-pricing-showcase .landing_discount {
        gap: 8px;
        margin-bottom: 14px;
    }

    .home-pricing-showcase .landing_discount h4 {
        font-size: 15px;
    }

    .home-pricing-showcase .landing_discount .save {
        padding: 4px 12px;
        font-size: 11px;
    }

    .home-pricing-showcase .hostin_landing_plan p {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.5;
    }

    .home-pricing-showcase .view_more {
        min-height: 50px;
        padding: 12px 18px;
        font-size: 14px;
        letter-spacing: 0.04em;
    }

    .home-pricing-showcase .motion-scroll-home {
        transform: translate3d(-60px, 0, 0);
    }

    .support {
        padding: 68px 0 26px;
    }

    .support h1 {
        max-width: 860px;
        font-size: 42px;
        line-height: 1.16;
    }

    .support p {
        max-width: 760px;
        font-size: 18px;
        margin-bottom: 34px;
    }

    .support-hub {
        gap: 22px;
    }

    .support-card {
        min-width: 270px;
        padding: 34px 28px;
    }

    .smart-way {
        padding: 38px 0;
    }

    .smart-way-content {
        padding: 34px;
    }

    .smart-way h1 {
        font-size: 40px;
        line-height: 1.16;
    }

    .smart-way p {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .smart-way .img-fluid {
        max-width: 390px;
    }

    .perfect_business {
        padding: 72px 0;
    }

    .perfect_business h1 {
        font-size: 42px;
        line-height: 1.15;
    }

    .p_dukeoffers {
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 44px;
    }

    .hosting_whitebox {
        padding: 28px 24px;
    }

    .land_domain-box {
        font-size: 20px;
    }

    .booming {
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .search-box {
        max-width: 600px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .search-box input[type="text"] {
        flex: 1 1 auto;
        min-width: 0;
        padding: 15px 14px 15px 8px;
        font-size: 15px;
    }

    .search-box button[type="submit"] {
        flex: 0 0 165px;
        min-width: 165px;
        margin-left: 0;
        padding: 14px 20px;
    }
}

/* Final redesign: perfect business section */
.perfect_business {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 80, 3, 0.16), transparent 24%),
        linear-gradient(135deg, #0a4d92 0%, #0c4584 52%, #093a73 100%);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.perfect_business::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0%, transparent 42%),
        url('../images/pattern.svg') center/cover;
    opacity: 0.3;
    pointer-events: none;
}

.perfect_business .container,
.perfect_business .row,
.perfect_business .col-lg-5,
.perfect_business .col-lg-7 {
    position: relative;
    z-index: 1;
}

.perfect-business-layout {
    --bs-gutter-x: 36px;
    --bs-gutter-y: 36px;
}

.perfect-business-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 20px 0;
}

.perfect_business h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 680px;
    text-wrap: balance;
}

.perfect_business h1 span {
    color: var(--secondary-color, #E37434); /* Better accent contrast */
}

.p_dukeoffers {
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 540px;
}

.perfect-business-visual {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
}

.perfect-business-visual img {
    display: block;
    filter: drop-shadow(0 28px 44px rgba(0, 16, 47, 0.32));
    margin: 0 auto;
    max-width: 100%;
    width: min(100%, 470px);
}

.services-grid-home {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    position: relative;
    z-index: 1;
}

.perfect_business .hosting_whitebox::before {
    display: none; /* Removed heavy top line for a cleaner look */
}

.perfect_business .hosting_whitebox {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.perfect_business .hosting_whitebox:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px);
}

.service-title-row.land_domain-box,
.perfect_business .land_domain-box {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    gap: 14px;
    line-height: 1.2;
    margin-bottom: 18px !important;
}

.perfect_business .land_domain-box img {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    height: 44px;
    margin-right: 0;
    padding: 10px;
    width: 44px;
    transition: all 0.3s ease;
}

.perfect_business .hosting_whitebox:hover .land_domain-box img {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.perfect_business .booming {
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.service-cta-wrap {
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.perfect_business .btn-more-service {
    background: #E37434;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(227, 116, 52, 0.28);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    min-height: 64px;
    padding: 18px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.perfect_business .btn-more-service:hover,
.perfect_business .btn-more-service:focus {
    background: #d9662a;
    box-shadow: 0 22px 36px rgba(227, 116, 52, 0.32);
    transform: translateY(-2px);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .perfect_business h1 {
        font-size: 44px;
        max-width: 620px;
    }

    .perfect-business-copy {
        padding: 36px 32px 28px;
    }

    .service-card-home.hosting_whitebox,
    .perfect_business .hosting_whitebox {
        min-height: 204px;
        padding: 28px 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .perfect_business {
        padding: 72px 0;
    }

    .perfect-business-layout {
        --bs-gutter-y: 30px;
    }

    .perfect-business-copy {
        padding: 34px 30px 26px;
    }

    .perfect_business h1 {
        font-size: 38px;
        max-width: 100%;
    }

    .p_dukeoffers {
        font-size: 17px;
        max-width: 100%;
    }

    .perfect-business-visual {
        min-height: 280px;
    }

    .services-grid-home {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 20px;
    }

    .service-card-home.hosting_whitebox,
    .perfect_business .hosting_whitebox {
        min-height: 196px;
        padding: 26px 22px;
    }
}

@media (max-width: 767px) {
    .perfect_business {
        padding: 62px 0;
    }

    .perfect-business-layout {
        --bs-gutter-y: 24px;
    }

    .perfect-business-copy {
        border-radius: 24px;
        padding: 28px 22px 24px;
    }

    .perfect_business h1 {
        font-size: 30px;
        max-width: 100%;
        line-height: 1.18;
    }

    .p_dukeoffers {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .perfect-business-visual {
        min-height: auto;
        padding-top: 8px;
    }

    .perfect-business-visual img {
        width: min(100%, 340px);
    }

    .services-grid-home {
        --bs-gutter-x: 0;
        --bs-gutter-y: 18px;
    }

    .service-card-home.hosting_whitebox,
    .perfect_business .hosting_whitebox {
        border-radius: 22px;
        min-height: auto;
        padding: 24px 20px;
    }

    .service-title-row.land_domain-box,
    .perfect_business .land_domain-box {
        font-size: 18px;
        margin-bottom: 14px !important;
    }

    .perfect_business .land_domain-box img {
        border-radius: 12px;
        height: 44px;
        padding: 9px;
        width: 44px;
    }

.perfect_business .btn-more-service {
        border-radius: 16px;
        font-size: 16px;
        min-height: 58px;
    }
}

/* Unified button curve */
.btn-common,
.btn-login,
.view_more,
.btn-more-service,
.search-box button[type="submit"],
.btn-hero .btn-common.btn-getdeal,
.home-pricing-showcase .view_more,
.perfect_business .btn-more-service,
.navbar .btn-login {
    border-radius: 14px !important;
}

.span-price-landing span:first-child,
.home-pricing-showcase .span-price-landing span:first-child {
    font-size: 24px !important;
    font-weight: 700 !important;
}

/* FINAL HOME MOBILE RESPONSIVE PASS */
@media (max-width: 767px) {
    .navbar.fixed-top > .container {
        max-width: 100%;
        padding: 8px 16px;
        border-radius: 0 !important;
    }

    .navbar-brand {
        max-width: 180px;
        margin-right: 0;
    }

    .navbar-brand img {
        max-height: 36px;
    }

    .navbar-collapse {
        margin-top: 10px;
        padding-top: 10px;
    }

    .navbar .nav-link {
        padding: 10px 14px !important;
        font-size: 18px;
    }

    .dropdown-item {
        font-size: 18px;
        padding: 10px 12px !important;
    }

    .hero {
        min-height: auto;
        padding-top: 88px;
        padding-bottom: 56px;
    }

    .hero .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero .bring_feature {
        max-width: 100%;
        font-size: 38px !important;
        line-height: 1.14;
        margin: 8px 0 12px;
    }

    .hero .hero-subtitle {
        font-size: 18px !important;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        margin-bottom: 26px;
    }

    .icons-hero {
        width: auto;
        min-width: 0;
        padding: 0 !important;
        font-size: 14px;
        line-height: 1.4;
    }

    .hero-price {
        margin-bottom: 20px;
    }

    .hero-offer-text,
    .hero-price h4 {
        font-size: 50px !important;
        line-height: 0.98;
    }

    .hero-price h5 {
        font-size: 18px !important;
        line-height: 1.3;
        margin-top: 6px;
    }

    .on-hosting-offer {
        gap: 10px;
    }

    .btn-hero {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 26px;
    }

    .btn-hero .btn-common.btn-getdeal {
        min-width: 0;
        width: 100%;
        margin-right: 0 !important;
    }

    .money-guar {
        width: 100%;
        align-items: flex-start !important;
        gap: 8px;
    }

    .money-back {
        font-size: 14px !important;
        line-height: 1.45;
    }

    .search-box {
        width: 100%;
        max-width: 100%;
        padding: 8px;
        gap: 10px;
    }

    .search-box input[type="text"] {
        min-width: 0;
        padding: 14px 14px 14px 8px;
        font-size: 15px;
    }

    .search-box button[type="submit"] {
        flex: 0 0 150px;
        min-width: 150px;
        padding: 14px 18px;
        margin-left: 0;
    }

    .hero .col-lg-6:last-child {
        display: none;
    }

    .home-pricing-showcase {
        padding: 62px 0 72px;
    }

    .home-pricing-showcase .pricing-intro {
        margin-bottom: 32px;
    }

    .home-pricing-showcase .moder_sol {
        white-space: normal;
        font-size: 34px !important;
        line-height: 1.14;
        letter-spacing: -0.02em;
    }

    .home-pricing-showcase .p_prices {
        font-size: 15px !important;
        line-height: 1.65;
    }

    .home-pricing-showcase .pricing-card-grid {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 18px;
    }

    .home-pricing-showcase .hostin_landing_plan {
        width: 100%;
        padding: 24px 20px 22px;
        border-radius: 20px;
    }

    .home-pricing-showcase .hostin_landing_plan::before {
        top: 18px;
        left: 20px;
        width: 42px;
    }

    .home-pricing-showcase .hostin_landing_plan h3 {
        margin-top: 18px;
        margin-bottom: 16px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .home-pricing-showcase .span-price-landing {
        font-size: 46px;
    }

    .home-pricing-showcase .span-price-landing .decimal_price {
        font-size: 26px;
    }

    .home-pricing-showcase .renewal-price,
    .home-pricing-showcase .hostin_landing_plan p {
        font-size: 15px;
        line-height: 1.55;
    }

    .home-pricing-showcase .view_more {
        min-height: 52px;
    }

    .support {
        padding: 64px 0;
    }

    .support h1 {
        font-size: 32px !important;
        line-height: 1.18;
        max-width: 100%;
    }

    .support p {
        font-size: 15px !important;
        line-height: 1.65;
    }

    .support-hub {
        gap: 18px;
    }

    .support-card {
        padding: 28px 22px;
        min-height: auto;
    }

    .smart-way,
    .perfect_business {
        padding: 64px 0;
    }

    .smart-way h1,
    .perfect_business h1 {
        font-size: 32px !important;
        line-height: 1.18;
    }

    .smart-way p,
    .p_dukeoffers,
    .booming {
        font-size: 15px !important;
        line-height: 1.7;
    }

    .smart-way-content,
    .perfect-business-copy {
        text-align: center;
    }

    .smart-way-content .btn-common,
    .service-cta-wrap .btn-more-service {
        width: 100%;
    }

    .perfect-business-copy {
        margin-bottom: 26px;
    }

    .perfect-business-visual img {
        max-width: 82%;
    }

    .services-grid-home {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .service-card-home,
    .hosting_whitebox {
        min-height: auto;
        padding: 24px 20px;
    }

    #reviews {
        padding: 64px 0;
    }

    .section-title h1,
    .t_monial {
        font-size: 32px !important;
        line-height: 1.18;
    }

    .review {
        padding: 28px 22px !important;
        min-height: auto;
    }

    .review p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .hero .bring_feature {
        font-size: 44px !important;
    }

    .hero-offer-text,
    .hero-price h4 {
        font-size: 60px !important;
    }

    .btn-hero .btn-common.btn-getdeal {
        width: auto;
        min-width: 290px;
    }

    .search-box {
        flex-direction: row;
    }

    .search-box button[type="submit"] {
        flex: 0 0 170px;
        min-width: 170px;
    }
}

@media (max-width: 575px) {
    .hero {
        padding-top: 98px;
        padding-bottom: 52px;
    }

    .hero .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .search-box {
        position: relative;
        display: flex;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        padding: 12px !important;
    }

    .search-box i {
        display: block !important;
        position: absolute;
        left: 24px;
        top: 28px;
        margin: 0 !important;
        z-index: 10;
        pointer-events: none;
        font-size: 18px;
        color: #7aa7eb !important;
        opacity: 1 !important;
    }

    .search-box input[type="text"] {
        width: 100%;
        min-width: 0;
        display: block;
        box-sizing: border-box;
        background: transparent !important;
        padding: 14px 16px 14px 44px !important;
        margin: 0 !important;
    }

    .search-box button[type="submit"] {
        width: 100%;
        min-width: 0;
        flex: 0 0 auto;
        margin: 0 !important;
    }

    .perfect-business-visual img {
        max-width: 74%;
    }
}

@media (max-width: 420px) {
    .navbar.fixed-top > .container {
        padding: 8px 12px;
        border-radius: 0 !important;
    }

    .navbar-brand {
        max-width: 150px;
    }

    .navbar-brand img {
        max-height: 32px;
    }

    .hero .bring_feature {
        font-size: 32px !important;
        line-height: 1.16;
    }

    .hero .hero-subtitle {
        font-size: 16px !important;
    }

    .hero-offer-text,
    .hero-price h4 {
        font-size: 42px !important;
    }

    .hero-price h5 {
        font-size: 16px !important;
    }

    .money-back {
        font-size: 13px !important;
    }

    .home-pricing-showcase .moder_sol,
    .support h1,
    .smart-way h1,
    .perfect_business h1,
    .t_monial {
        font-size: 28px !important;
    }

    .home-pricing-showcase .span-price-landing {
        font-size: 40px;
    }

    .home-pricing-showcase .span-price-landing .decimal_price {
        font-size: 22px;
    }

    .review {
        padding: 24px 18px !important;
    }
}

@media (min-width: 1400px) {
    .hero .btn-hero {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 18px;
        margin: 0 0 24px;
    }

    .hero .btn-hero .btn-common.btn-getdeal {
        flex: 0 0 auto;
        margin-right: 0 !important;
    }

    .hero .money-guar {
        width: auto;
        margin-top: 0 !important;
        align-items: center !important;
        gap: 8px;
    }

    .hero .money-back {
        margin: 0;
        line-height: 1.35 !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home-pricing-showcase .container {
        max-width: 1000px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-pricing-showcase .modern_lives {
        max-width: 940px;
        margin: 0 auto;
    }

    .home-pricing-showcase .pricing-intro {
        max-width: 860px;
        margin: 0 auto 40px;
        text-align: center;
    }

    .home-pricing-showcase .moder_sol {
        white-space: normal;
        font-size: 42px;
        line-height: 1.1;
    }

    .home-pricing-showcase .p_prices {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        font-size: 17px;
    }

    .home-pricing-showcase .pricing-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        max-width: 940px;
        margin: 0 auto;
    }

    .home-pricing-showcase .pricing-card-cell {
        min-width: 0;
    }

    .home-pricing-showcase .hostin_landing_plan {
        padding: 24px 22px 22px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    section.hero,
    .hero {
        margin-top: 0 !important;
        padding-top: 88px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    section.hero,
    .hero {
        margin-top: 0 !important;
        padding-top: 88px !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home-pricing-showcase .container {
        max-width: 1000px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-pricing-showcase .pricing-intro {
        max-width: 860px;
        margin: 0 auto 40px;
    }

    .home-pricing-showcase .moder_sol {
        white-space: normal;
        font-size: 42px;
        line-height: 1.1;
    }

    .home-pricing-showcase .p_prices {
        max-width: 620px;
        font-size: 17px;
    }

    .home-pricing-showcase .pricing-card-grid {
        max-width: 940px;
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .home-pricing-showcase .pricing-card-cell {
        min-width: 0;
    }

    .home-pricing-showcase .hostin_landing_plan {
        padding: 24px 22px 22px;
    }
}











.hero-image-reveal .hero-top_img.animate-float {
    animation: heroFloatSoft 4.8s ease-in-out 1.05s infinite both !important;
}

.hero-image-reveal {
    overflow: hidden;
}


.hero .col-lg-6.text-center.text-lg-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 540px;
}

.hero-image-container {
    display: block;
    width: min(100%, 720px);
    aspect-ratio: 1024 / 969;
}

.hero-top_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Full-width homepage header and hero */
.navbar.fixed-top > .header-fullwidth,
.navbar.fixed-top.scrolled > .header-fullwidth,
.navbar.fixed-top:has(.navbar-collapse.show) > .header-fullwidth {
    width: 100%;
    max-width: 100%;
    padding-left: 48px;
    padding-right: 48px;
}

.hero > .hero-fullwidth {
    width: 100%;
    max-width: 100%;
    padding-left: 48px;
    padding-right: 48px;
}

.prices > .container,
.support > .container,
.smart-way > .container,
.perfect_business > .container,
#reviews > .container,
.brand > .container,
.footer_duke > .footer-top,
.footer_duke > .footer-bottom {
    width: 100%;
    max-width: 100%;
    padding-left: 48px;
    padding-right: 48px;
}

@media (max-width: 991px) {
    .navbar.fixed-top > .header-fullwidth,
    .navbar.fixed-top.scrolled > .header-fullwidth,
    .navbar.fixed-top:has(.navbar-collapse.show) > .header-fullwidth,
    .hero > .hero-fullwidth,
    .prices > .container,
    .support > .container,
    .smart-way > .container,
    .perfect_business > .container,
    #reviews > .container,
    .brand > .container,
    .footer_duke > .footer-top,
    .footer_duke > .footer-bottom {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero .col-lg-6.text-center.text-lg-end {
        min-height: 500px;
    }

    .hero-image-container {
        width: min(100%, 470px);
    }
}


@media (max-width: 991px) {
    .hero .col-lg-6.text-center.text-lg-end {
        display: none !important;
    }
}

