/* ===================
1. Domain Search Hero Section
====================== */

.domain-hero {
    background: linear-gradient(135deg, #0a1c2b, #00556d, #413e66);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    padding: 6rem 1rem;
}

.domain-hero-input-box {
    max-width: 720px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.domain-hero-form .form-floating>.form-control,
.domain-hero-form .form-floating>.form-select {
    padding: 0.65rem 1.2rem;
    font-size: 1rem;
    height: 50px;
    border-radius: 50px;
    font-weight: 600;
}

.domain-hero-form .form-floating>.form-control:focus,
.domain-hero-form .form-floating>.form-select:focus {
    border-color: #1bb1dc;
    box-shadow: 0 0 0 0.25rem rgba(27, 177, 220, 0.25);
}

.domain-hero-form .form-select {
    max-width: 140px;
    min-width: 110px;
}

.domain-hero-form .form-floating>label {
    color: #6c757d;
    font-weight: 500;
    top: -1px;
}

.domain-hero-form .btn-hero-search {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    height: 50px;
    padding: 0 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.domain-hero-form .btn-hero-search:hover {
    background: linear-gradient(135deg, #17a2c1, #2b2652);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.domain-hero-form .form-floating>.form-control-plaintext~label,
.domain-hero-form .form-floating>.form-control:focus~label,
.domain-hero-form .form-floating>.form-control:not(:placeholder-shown)~label,
.domain-hero-form .form-floating>.form-select~label {
    transform: scale(.85) translateY(-.8rem) translateX(0.15rem) !important;
    -webkit-transform: scale(.85) translateY(-.8rem) translateX(0.15rem) !important;
    -moz-transform: scale(.85) translateY(-.8rem) translateX(0.15rem) !important;
    -ms-transform: scale(.85) translateY(-.8rem) translateX(0.15rem) !important;
    -o-transform: scale(.85) translateY(-.8rem) translateX(0.15rem) !important;
}

.domain-hero-trust {
    color: #fff;
    font-size: 0.9rem;
}

/* Individual trust items */
.domain-hero-trust .trust-item {
    background: rgba(255, 255, 255, 0.08);
    /* light transparent pill */
    color: #fff;
    transition: all 0.3s ease;
}

.domain-hero-trust .trust-item i {
    color: #1bb1dc;
}

.domain-hero-trust .trust-item span {
    font-weight: 600;
}

.domain-hero-trust .trust-item:hover {
    background: rgba(27, 177, 220, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.domain-hero-right {
    position: relative;
}

/* Core breathing */
.domain-hero-right .pulse-core {
    animation: corePulse 10s ease-in-out infinite alternate;
}

@keyframes corePulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.85;
    }
}

/* Halo slow expansion */
.domain-hero-right .halo {
    animation: haloExpand 12s ease-in-out infinite alternate;
}

@keyframes haloExpand {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Spinning lines */
.domain-hero-right .spin-lines {
    transform-origin: 250px 250px;
    animation: spinLines 40s linear infinite;
}

@keyframes spinLines {
    to {
        transform: rotate(360deg);
    }
}

/* * Floating TLD texts with rotation and vertical motion */
.domain-hero-right .float-text {
    animation: floatText 7s ease-in-out infinite alternate;
    transform-origin: center;
    fill: #ffffffa4;
    font-weight: 700;
    filter: drop-shadow(0 0 4px #1bb1dc);
    animation: floatText 8s ease-in-out infinite alternate;
    transform-origin: center;
    will-change: transform;
    --angle: 0deg;
    /* default rotation */
    animation: floatText 7s ease-in-out infinite alternate;
    transform-origin: center;
    will-change: transform;
    /* helps smooth animations */
}

.domain-hero-right .float1 {
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.domain-hero-right .float2 {
    animation-delay: 0.5s;
    transform: rotate(3deg);
}

.domain-hero-right .float3 {
    animation-delay: 1s;
    transform: rotate(-2deg);
}

.domain-hero-right .float4 {
    animation-delay: 1.5s;
    transform: rotate(4deg);
}

.domain-hero-right .float5 {
    animation-delay: 2s;
    transform: rotate(-3deg);
}

.domain-hero-right .float6 {
    animation-delay: 2.5s;
    transform: rotate(2deg);
}

@keyframes floatText {
    0% {
        transform: translateY(0px) rotate(var(--angle, 0deg));
    }

    25% {
        transform: translateY(-14px) rotate(calc(var(--angle, 0deg) - 2deg));
    }

    50% {
        transform: translateY(0px) rotate(var(--angle, 0deg));
    }

    75% {
        transform: translateY(14px) rotate(calc(var(--angle, 0deg) + 2deg));
    }

    100% {
        transform: translateY(0px) rotate(var(--angle, 0deg));
    }
}

/* Set each text’s angle via CSS variable */
.domain-hero-right .float1 {
    --angle: -5deg;
    animation-delay: 0s;
}

.domain-hero-right .float2 {
    --angle: 3deg;
    animation-delay: 0.5s;
}

.domain-hero-right .float3 {
    --angle: -2deg;
    animation-delay: 1s;
}

.domain-hero-right .float4 {
    --angle: 4deg;
    animation-delay: 1.5s;
}

.domain-hero-right .float5 {
    --angle: -3deg;
    animation-delay: 2s;
}

.domain-hero-right .float6 {
    --angle: 2deg;
    animation-delay: 2.5s;
}

@keyframes floatText {
    0% {
        transform: translateY(0px) rotate(var(--angle));
    }

    25% {
        transform: translateY(-14px) rotate(calc(var(--angle) - 2deg));
    }

    50% {
        transform: translateY(0px) rotate(var(--angle));
    }

    75% {
        transform: translateY(14px) rotate(calc(var(--angle) + 2deg));
    }

    100% {
        transform: translateY(0px) rotate(var(--angle));
    }
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .domain-hero-trust {
        justify-content: center;
    }

    .domain-hero-trust .trust-item {
        flex: auto;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .domain-hero {
        padding: 3rem 1rem;
    }

    .domain-hero-form .form-floating>.form-control,
    .domain-hero-form .form-floating>.form-control-plaintext,
    .domain-hero-form .form-floating>.form-select {
        height: calc(3rem + calc(var(--bs-border-width) * 2));
        min-height: calc(3rem + calc(var(--bs-border-width) * 2));
        line-height: 1.25;
    }

    .domain-hero-form .btn-hero-search {
        height: 45px;
        padding: 0 1.5rem;
    }

    .domain-hero-form .form-floating>label {
        top: -4px;
    }

    .domain-hero-svg {
        width: 100%;
        height: 280px;
    }
}


/* ===================
2. Recommended Domain Section
====================== */

.recommended-domains {
    background: linear-gradient(135deg, rgba(27, 177, 220, 0.05), rgba(65, 62, 102, 0.08));
    font-family: 'Inter', sans-serif;
    color: #413e66;
}

.recommended-domains .domain-features {
    padding-left: 0;
    color: #413e66;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Highlight Domain */
.recommended-domains .highlight-domain {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    box-shadow: 0 12px 30px rgba(27, 177, 220, 0.2);
    padding: 3rem 2rem;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.recommended-domains .highlight-domain:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(27, 177, 220, 0.35);
}

/* Smart Suggestion Cards */
.recommended-domains .suggestion-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.5rem;
    box-shadow: 0 6px 18px rgba(27, 177, 220, 0.12);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommended-domains .suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(27, 177, 220, 0.25);
}

/* TLD Badge */
.recommended-domains .tld-badge {
    background: #1bb1dc;
    color: #fff;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 1rem;
    width: 4rem;
}

/* Text */
.recommended-domains .domain-name {
    font-weight: 700;
    color: #413e66;
    font-size: 1.25rem;
}

.recommended-domains .domain-benefit {
    font-size: 0.9rem;
    color: #5c5c70;
    margin-bottom: 0.8rem;
}

.recommended-domains .domain-price {
    font-weight: 700;
    color: #1bb1dc;
}

.recommended-domains ul li {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

/* Buttons */
.recommended-domains .btn-gradient-primary {
    background: linear-gradient(90deg, #222526, #413e66);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
}

.recommended-domains .btn-gradient-primary:hover {
    background: linear-gradient(90deg, #413e66, #1bb1dc);
}

.recommended-domains .btn-outline-primary {
    border: 1px solid #1bb1dc;
    color: #1bb1dc;
    border-radius: 50px;
    font-weight: 600;
}

.recommended-domains .btn-outline-primary:hover {
    background: #1bb1dc;
    color: #fff;
}

/* HOT Ribbon */
.recommended-domains .hot-ribbon {
    position: absolute;
    top: 15px;
    left: -40px;
    background: #ff4d4f;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 2.5rem;
    transform: rotate(-45deg);
    font-size: 0.75rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .recommended-domains .highlight-domain {
        text-align: center;
    }

    .recommended-domains .highlight-domain .d-flex {
        justify-content: center !important;
        gap: 1rem !important;
    }
}

@media (max-width: 575px) {
    .recommended-domains .domain-name {
        font-size: 1.1rem;
    }

    .recommended-domains .domain-benefit {
        font-size: 0.85rem;
    }

    .recommended-domains .domain-price {
        font-size: 1rem;
    }
}

/* ===================
3. TLDs Made for Innovation Section
====================== */

.ox-tlds-section {
    background: linear-gradient(145deg, #f0faff 0%, #e0f7ff 100%);
    font-family: 'Inter', sans-serif;
    color: #413e66;
    position: relative;
}

/* Gradient Shapes for Premium Look */
.ox-tlds-section::before,
.ox-tlds-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.ox-tlds-section::before {
    width: 250px;
    height: 250px;
    background: #1bb1dc;
    top: -50px;
    left: -50px;
}

.ox-tlds-section::after {
    width: 300px;
    height: 300px;
    background: #413e66;
    bottom: -80px;
    right: -80px;
}

/* Header Gradient Text */
.ox-tlds-header h2 .text-gradient {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.ox-tld-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    min-height: 380px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 30px 60px rgba(27, 177, 220, 0.12);
    transition: all 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    cursor: pointer;
    border: 1.5px solid rgba(27, 177, 220, 0.2);
    position: relative;
    z-index: 1;
}

/* Card Hover */
.ox-tld-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 60px 100px rgba(27, 177, 220, 0.25);
    border: 1.5px solid #1bb1dc;
}

/* Smooth Floating Animation */
@keyframes ox-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -4px, 0);
    }

    /* subtle float */
}

.ox-tld-card {
    animation: ox-float 6s ease-in-out infinite;
    will-change: transform;
    /* GPU acceleration */
}

/* Stagger animation delay for each card */
.ox-tld-card:nth-child(1) {
    animation-delay: 0s;
}

.ox-tld-card:nth-child(2) {
    animation-delay: 1.2s;
}

.ox-tld-card:nth-child(3) {
    animation-delay: 2.4s;
}

.ox-tld-card:nth-child(4) {
    animation-delay: 3.6s;
}


/* Badge */
.ox-tld-badge {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #1bb1dc;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 1.5rem;
    text-transform: uppercase;
    box-shadow: 0 5px 25px rgba(27, 177, 220, 0.3);
    z-index: 2;
}

/* TLD Name */
.ox-tld-name {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.07);
}

/* Tagline */
.ox-tld-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #1bb1dc;
    margin-bottom: 0.5rem;
}

/* Benefit */
.ox-tld-benefit {
    font-size: 1.05rem;
    color: #5f5f7a;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Price */
.ox-tld-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1bb1dc;
    margin-bottom: 1rem;
}

.ox-tld-price span {
    font-size: 0.9rem;
    color: #6c6c80;
    font-weight: 500;
}

/* Button */
.ox-btn-gradient {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    color: #fff;
    border: none;
    padding: 0.7rem 1.7rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.ox-btn-gradient:hover {
    opacity: 0.9;
    color: #b2e6f5;
}

/* Responsive Typography & Cards */
@media (max-width: 992px) {
    .ox-tld-name {
        font-size: 2.5rem;
    }

    .ox-tld-benefit {
        font-size: 0.95rem;
    }

    .ox-tld-price {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .ox-tld-name {
        font-size: 2.2rem;
    }

    .ox-tld-benefit {
        font-size: 0.9rem;
    }

    .ox-tld-price {
        font-size: 1.05rem;
    }

    .ox-tlds-header h2 {
        font-size: 2rem;
    }

    .ox-tlds-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .ox-tld-card {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }

    .ox-tld-name {
        font-size: 2rem;
    }

    .ox-tld-benefit {
        font-size: 0.85rem;
    }

    .ox-tld-price {
        font-size: 1rem;
    }

    .ox-tlds-header h2 {
        font-size: 1.75rem;
    }

    .ox-tlds-header p {
        font-size: 0.9rem;
    }
}


/* ===================
4. Cta Section
====================== */
.cta-box.domain-search-cta-box {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 576px) {
    .cta-box.domain-search-cta-box {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* ===================
5. Oxnames Trust Section
====================== */

.oxnames-trust-section {
    background: #fdfdfd;
    color: #413e66;
    position: relative;
    overflow: hidden;
}

/* Floating Shapes */
.oxnames-trust-section .oxnames-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 1;
}

.oxnames-trust-section .shape1 {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    top: -120px;
    left: -120px;
    animation: floatShape 12s ease-in-out infinite alternate;
}

.oxnames-trust-section .shape2 {
    width: 460px;
    height: 460px;
    background: linear-gradient(135deg, #413e66, #1bb1dc);
    bottom: -140px;
    right: -140px;
    animation: floatShape 14s ease-in-out infinite alternate-reverse;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Gradient Text */
.oxnames-trust-section .oxnames-text-gradient {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stats Circles */
.oxnames-trust-section .oxnames-trust-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(27, 177, 220, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.oxnames-trust-section .oxnames-trust-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 40px 80px rgba(27, 177, 220, 0.3);
}

.oxnames-trust-section .oxnames-trust-number {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
    background: linear-gradient(90deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.oxnames-trust-section .oxnames-trust-label {
    font-size: .9rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

/* Client Logos Carousel */
.oxnames-trust-section #oxnamesClientCarousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.oxnames-trust-section #oxnamesClientCarousel .item img {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: 0.3s ease;
}

.oxnames-trust-section #oxnamesClientCarousel .item img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.oxnames-trust-section .owl-carousel .owl-nav,
.oxnames-trust-section .owl-carousel .owl-dots {
    display: none;
}

/* Testimonials */
.oxnames-trust-section .oxnames-testimonial-card {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(27, 177, 220, 0.15);
    padding: 2rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.oxnames-trust-section .oxnames-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(27, 177, 220, 0.18);
}

.oxnames-trust-section .oxnames-testimonial-card p {
    font-size: 1rem;
    color: #5f5f7a;
}

.oxnames-trust-section .oxnames-testimonial-card h3 {
    color: #413e66;
    margin-top: 0.8rem;
    font-size: 0.95rem;
}

@media (max-width: 576px) {

    /* Stats Circles */
    .oxnames-trust-section .oxnames-trust-circle {
        width: 150px;
        height: 150px;
    }
}

/* ===================
6. Trending TLDs Section
====================== */

/* Floating Background Elements */
.trending-tld-section {
    position: relative;
    background: linear-gradient(145deg, #f4f7fb, #e6ecf3);
    background: linear-gradient(145deg, #f4f7fb, #cee7f1);
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.trending-tld-section .floating-bg::before,
.trending-tld-section .floating-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 177, 220, 0.3), transparent);
    width: 300px;
    height: 300px;
    animation: float 12s linear infinite alternate;
    z-index: 0;
}

.trending-tld-section .floating-bg::after {
    top: 50%;
    left: 80%;
    width: 500px;
    height: 500px;
    animation-duration: 16s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(20px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}


.trending-tld-section .tld-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    position: relative;
    border: 1px solid rgba(27, 177, 220, 0.25);
    box-shadow: 0 10px 25px rgba(27, 177, 220, 0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
}

.trending-tld-section .tld-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 25px 50px rgba(27, 177, 220, 0.25);
    border: 1px solid #1bb1dc;
}

.trending-tld-section .tld-card.featured {
    border: 2px solid #1bb1dc;
    background: rgba(27, 177, 220, 0.05);
    box-shadow: 0 15px 40px rgba(27, 177, 220, 0.3);
}

.trending-tld-section .tld-card .badge {
    position: absolute;
    top: -12px;
    right: 12px;
    background: #1bb1dc;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 1rem;
    text-transform: uppercase;
}

/* Text */
.trending-tld-section .tld-name {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1bb1dc;
    margin-bottom: 0.4rem;
    background: linear-gradient(90deg, #1bb1dc, #00e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trending-tld-section .tld-price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.trending-tld-section .tld-price span {
    font-size: 0.85rem;
    color: #6c6c80;
}

.tld-benefit {
    font-size: 0.9rem;
    color: #6c6c80;
    margin-bottom: 1rem;
}

/* Buttons */
.trending-tld-section .tld-card .btn-primary {
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    border: none;
    padding: 0.5rem 1.3rem;
    font-size: 0.9rem;
    transition: 0.3s ease;
    border-radius: 100px;

}

/* ===================
7. Domain Features Section
====================== */

.domain-features-section {
    background: linear-gradient(180deg, #ffffff 0, #f6f9ff 100%);
}

.domain-features-section .feature {
    gap: 30px;
    border-top: 2px dashed #1bb1dc;
}

.domain-features-section .feature-item {
    flex: 1 1 25%;
    padding: 20px 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-features-section .feature-item i {
    font-size: 2rem;
    color: #413e66;
    margin-bottom: 15px;
    height: 4rem;
    width: 4rem;
    padding: .6rem;
    border-radius: 100px;
    background: radial-gradient(circle, rgba(27, 177, 220, 0.2), transparent);
}

.domain-features-section .feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #413e66;
}

.domain-features-section .feature-item p {
    color: #5d6481;
}

.domain-features-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(27, 177, 220, 0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .domain-features-section .feature-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .domain-features-section .feature-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .domain-features-section .feature {
        gap: 10px;
    }
}


/* ===================
8. Ox Timeline Section
====================== */

.ox-timeline-section {
    background: linear-gradient(180deg, #ffffff 0, #f6f9ff 100%);
}

.ox-timeline-section .container {
    max-width: 980px;
}

.ox-timeline-section .ox-title {
    font-weight: 800;
    color: #413e66;
    letter-spacing: -0.01em;
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 10px;
}

.ox-timeline-section .ox-sub {
    color: #5c6280;
    margin-bottom: 40px;
}

.ox-timeline-section .ox-timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 7px;
}

.ox-timeline-section .ox-timeline:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(#1bb1dc, #413e66);
    opacity: .4;
}

.ox-timeline-section .tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: start;
    gap: 16px;
    margin-bottom: 26px;
}

.ox-timeline-section .tl-dot {
    grid-column: 1/2;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #413e66, #1bb1dc);
    box-shadow: 0 0 0 4px rgba(27, 177, 220, .15);
    margin-left: -3px;
}

.ox-timeline-section .tl-card {
    grid-column: 2/3;
    background: linear-gradient(135deg, #413e66, #1bb1dc);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 14px 40px rgba(27, 177, 220, .10);
    border: 1px solid rgba(65, 62, 102, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ox-timeline-section .tl-card h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
}

.ox-timeline-section .tl-card p {
    margin: 0;
    color: #ffffff;
}

.ox-timeline-section .tl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(27, 177, 220, .16);
}

.ox-timeline-section .highlight {
    color: #1bb1dc;
    font-weight: 700;
    cursor: pointer;
}

.ox-timeline-section .cta-text {
    color: #1bb1dc;
    font-weight: 700;
    margin-top: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.ox-timeline-section .cta-text:hover {
    color: #bab8d1;
}

/* ===================
9. Domain Hosting Section
====================== */
.domain-hosting {
    background: linear-gradient(145deg, #e1f0fa, #c2e4f3);
    position: relative;
    overflow: hidden;
}

/* Floating Shapes Behind Cards */
.domain-hosting .bg-shapes {
    z-index: 0;
}

.domain-hosting .bg-shapes span.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: float 12s ease-in-out infinite;
}

.domain-hosting .shape-1 {
    width: 200px;
    height: 200px;
    background: #1bb1dc;
    top: 10%;
    left: 5%;
}

.domain-hosting .shape-2 {
    width: 260px;
    height: 260px;
    background: #413e66;
    top: 50%;
    left: 75%;
}

.domain-hosting .shape-3 {
    width: 120px;
    height: 120px;
    background: #1bb1dc;
    top: 80%;
    left: 20%;
}

.domain-hosting .shape-4 {
    width: 150px;
    height: 150px;
    background: #413e66;
    top: 30%;
    left: 60%;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Card z-index above shapes */
.domain-hosting .hosting-card-alt {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    z-index: 1;
    /* ensures above shapes */
    backdrop-filter: blur(5px);
    /* subtle glass effect */
}

/* Featured Plan Enhancement */
.domain-hosting .featured-plan {
    border: 2px solid #1bb1dc;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 60px rgba(27, 177, 220, 0.2);
}

.domain-hosting .hosting-card-alt {
    background: #ffffff;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}

.domain-hosting .hosting-card-alt:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.domain-hosting .ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    background: #1bb1dc;
    color: #fff;
    padding: 0.5rem 1.6rem;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.domain-hosting .icon svg {
    transition: transform 0.3s;
}

.domain-hosting .hosting-card-alt:hover .icon svg {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
}

.domain-hosting h3 {
    font-size: 20px;
}

.domain-hosting ul li {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.domain-hosting .btn-gradient {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.domain-hosting .btn-gradient:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(27, 177, 220, 0.5);
}

.domain-hosting .btn-glow {
    box-shadow: 0 4px 25px rgba(27, 177, 220, 0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 4px 20px rgba(27, 177, 220, 0.5);
    }

    100% {
        box-shadow: 0 8px 30px rgba(27, 177, 220, 0.7);
    }
}

.domain-hosting .text-gradient {
    background: linear-gradient(90deg, #1bb1dc, #413e66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}