/* ===================
1. TLD Hero Section
====================== */
.tld-hero-sec {
    min-height: 89vh;
    background: #0d0d18;
    color: #fff;
    padding: 5rem 1rem;
}

/* Glow gradient blobs */
.tld-hero-sec::before,
.tld-hero-sec::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.6;
    z-index: 1;
    animation: blobMove 15s infinite alternate ease-in-out;
}

.tld-hero-sec::before {
    top: -200px;
    left: -200px;
    background: linear-gradient(45deg, #1bb1dc, #413e66, #8b45b4);
}

.tld-hero-sec::after {
    bottom: -250px;
    right: -250px;
    background: linear-gradient(135deg, #8b45b4, #413e66, #1bb1dc);
}

@keyframes blobMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -50px) scale(1.1);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}


/* Headline */
.tld-hero-sec .hero-title {
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    position: relative;
    z-index: 2;
}

.tld-shine {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: -200px;
    }

    100% {
        background-position: 200px;
    }
}

/* Subtext */
.tld-hero-sec .hero-subtext {
    max-width: 700px;
    color: #cfd0d8;
    line-height: 1.75;
    margin: 0 auto;
}

/* Search Bar */
.tld-hero-sec .hero-search {
    max-width: 720px;
    margin: 30px auto;
}

.search-form {
    border-radius: 70px;
    overflow: hidden;
    background: rgba(27, 27, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(27, 177, 220, 0.3);
    box-shadow: 0 15px 60px rgba(27, 177, 220, 0.12);
    transition: all 0.3s ease;
}

.search-form:hover {
    box-shadow: 0 25px 80px rgba(27, 177, 220, 0.25);
}

.search-input {
    padding: 22px 28px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: #fff;
}

.search-input::placeholder {
    color: #a0a3b1;
}

.search-input:focus {
    box-shadow: none;
    outline: none;
}

.search-btn {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    color: #fff;
    padding: 0 50px;
    font-weight: 600;
    font-size: 1.15rem;
    border: none;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(27, 177, 220, 0.4);
}

/* Stats */
.hero-stats {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 2;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats strong {
    display: block;
    font-size: 1.85rem;
    font-weight: 900;
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stats span {
    font-size: 1rem;
    color: #a0a3b1;
}

/* Floating .COM above H1 */
.floating-tld-top {
    display: inline-block;
    margin-bottom: 1rem;
}

.floating-tld-top span {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: floatTop 6s ease-in-out infinite alternate;
}

@keyframes floatTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-subtext {
        max-width: 600px;
    }

    .search-input {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .search-btn {
        padding: 0 40px;
        font-size: 1.05rem;
    }

    .hero-stats strong {
        font-size: 1.6rem;
    }

    .floating-tld-top span {
        font-size: 2.2rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-subtext {
        max-width: 500px;
    }

    .hero-stats {
        gap: 2rem;
        margin-top: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .tld-hero-sec {
        min-height: unset;
        height: auto;
        padding: 3rem 1rem;
    }

    .hero-subtext {
        max-width: 90%;
    }

    .floating-tld-top span {
        font-size: 1.8rem;
    }

    .search-input {
        padding: 15px 15px;
        font-size: 1rem;
    }

    .search-btn {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-stats strong {
        font-size: 1.4rem;
    }

    .hero-stats span {
        font-size: 0.9rem;
    }
}

/* ===================
2. Why Choose Section
====================== */
.why-choose-sec {
    background: #ffffff;
}

/* Glow gradient blobs */
.why-choose-sec::before,
.why-choose-sec::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.8;
    z-index: 1;
    animation: blobMove 15s infinite alternate ease-in-out;
}

.why-choose-sec::before {
    top: -100px;
    left: -100px;
    background: linear-gradient(145deg, #1bb1dc, #8b45b4)
}

.why-choose-sec::after {
    bottom: -250px;
    right: -250px;
    background: linear-gradient(135deg, #8b45b4, #413e66, #1bb1dc);
}

/* Subtle background glow */
.whychoose-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -150px;
    right: -150px;
    background: radial-gradient(circle, rgba(27, 177, 220, 0.25), transparent 70%);
    filter: blur(180px);
    z-index: 0;
}

/* Title */
.why-choose-title span {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Checklist */
.tld-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tld-check-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #444;
}

.tld-check-list li i {
    color: #1bb1dc;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Buttons */
.premium-btn-1 {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(27, 177, 220, 0.25);
    transition: 0.3s ease;
    padding: 16px 24px;
}

.premium-btn-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(27, 177, 220, 0.35);
}

.premium-btn-2 {
    background: #f4f6fb;
    border-radius: 50px;
    font-weight: 600;
    color: #413e66;
    border: 1px solid rgba(65, 62, 102, 0.15);
    transition: 0.3s ease;
    padding: 16px 24px;
}

.premium-btn-2:hover {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Step Items */
.whychoose-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 45px;
    padding-bottom: 35px;
    position: relative;
}

.whychoose-step:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Left numbers */
.whychoose-step .step-number {
    font-size: 2.4rem;
    font-weight: 900;
    min-width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(27, 177, 220, 0.25);
    margin-right: 25px;
    position: relative;
    z-index: 3;
}

/* Connecting vertical line */
.whychoose-step::after {
    content: "";
    position: absolute;
    left: 37px;
    top: 95px;
    width: 3px;
    height: calc(100% - 95px);
    background: linear-gradient(#1bb1dc, #413e66);
    opacity: 0.25;
}

.whychoose-step:last-child::after {
    display: none;
}

/* Step Content */
.whychoose-step .step-content h3 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: #2a2a39;
}

.whychoose-step .step-content p {
    color: #626276;
    line-height: 1.75;
    max-width: 460px;
}


/* Responsive */
@media(max-width:769px) {

    .premium-btn-1,
    .premium-btn-2 {
        padding: 10px 22px;
        font-size: 15px;
    }

    .whychoose-step .step-number {
        font-size: 1.8rem;
        min-width: 61px;
        height: 61px;
    }

    .whychoose-step::after {
        left: 30px;
    }

    .whychoose-step {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}

@media(max-width: 576px) {
    .whychoose-step .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .tld-check-list li {
        font-size: .95rem;
    }

    .whychoose-step .step-content h3 {
        font-size: 1.1rem;
    }
}

/* ===================
3. Why Brands Section
====================== */
.why-brands-sec {
    background: #f8fafc;
    background: linear-gradient(135deg, #1bb1dc20, #413e6620);
}

.why-brands-sec .bg-shape-left,
.why-brands-sec .bg-shape-right {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.35;
    z-index: 1;
}

.why-brands-sec .bg-shape-left {
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, #1bb1dc, #413e66);
}

.why-brands-sec .bg-shape-right {
    bottom: -80px;
    right: -80px;
    background: radial-gradient(circle, #8b45b4, #413e66);
}

/* Title */
.whybrands-title span {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.whybrands-card {
    background: rgba(255, 255, 255, 0.918);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(27, 177, 220, 0.12);
    border-radius: 1.8rem;
    padding: 2rem;
    transition: all 0.35s ease, transform 0.35s ease;
}

/* Hover Effect */
.whybrands-card:hover {
    transform: translateY(-12px);
    border-color: rgba(27, 177, 220, 0.4);
    box-shadow: 0 40px 100px rgba(27, 177, 220, 0.22);
}

/* Icon Circle */
.whybrands-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #1bb1dc, #413e66);
    box-shadow: 0 25px 55px rgba(27, 177, 220, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 34px;
}

/* Titles */
.whybrands-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2a2a39;
}

/* Text */
.whybrands-card p {
    color: #5a5a6e;
    line-height: 1.75;
}

/* Responsive */
@media(max-width: 769px) {
    .whybrands-card {
        padding: 40px 28px;
    }

    .whybrands-card .card-title {
        font-size: 1.13rem;
    }
}

@media(max-width: 576px) {
    .whybrands-card {
        padding: 32px 18px;
    }

    .whybrands-card .card-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}

/* ===================
4. Tld Pricing Section
====================== */

/* Glow gradient blobs */
.tld-pricing-sec::before,
.tld-pricing-sec::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(200px);
    opacity: 0.8;
    z-index: 1;
    animation: blobMove 15s infinite alternate ease-in-out;
}

.tld-pricing-sec::before {
    top: -100px;
    left: -100px;
    background: linear-gradient(145deg, #1bb1dc, #8b45b4)
}

.tld-pricing-sec::after {
    bottom: -250px;
    right: -250px;
    background: linear-gradient(135deg, #8b45b4, #1bb1dc);
}

/* Premium Table Container */
.table-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(27, 177, 220, 0.12);
    transition: all 0.3s ease;
}

/* Table Base */
.tld-table {
    width: 100%;
    border-collapse: collapse;
}

/* Table Header */
.tld-table thead {
    background: linear-gradient(135deg, #1bb1dc, #413e66, #8b45b4);
    color: #fff;
}

.tld-table thead th {
    padding: 20px 15px;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(156, 156, 156, 0.623);
}

.tld-table td:first-child {
    font-weight: 600;
    text-align: left;
    color: #413e66;
    background: linear-gradient(135deg, #e0f7ff, #ffffff);
    border-right: 1px solid rgba(27, 177, 220, 0.2);
    box-shadow: 3px 0 10px rgba(27, 177, 220, 0.08);
    z-index: 2;
    transition: all 0.3s ease;
    border-radius: 0;
    padding-left: 20px;
}


.tld-table tbody tr:hover td:first-child {
    background: linear-gradient(135deg, #b8ecff, #ffffff);
    color: #1bb1dc;
}

tbody tr:hover td:first-child {
    background: linear-gradient(135deg, #d0f0ff, #ffffff);
    box-shadow: 3px 0 15px rgba(27, 177, 220, 0.12);
}

/* Table Body */
.tld-table tbody tr {
    background: #fefefe;
    transition: all 0.3s ease;
    cursor: default;
}

.tld-table tbody tr:hover {
    background: rgba(27, 177, 220, 0.05);
}

.tld-table tbody td {
    text-align: center;
    padding: 18px 12px;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tld-table tbody tr:last-child td {
    border-bottom: none;
}

.tld-table small.text-success {
    display: block;
    font-size: 0.8rem;
    margin-top: 3px;
    color: #1bb1dc;
}


/* Responsive */
@media(max-width: 992px) {

    .tld-table thead th,
    .tld-table tbody td {
        padding: 14px 8px;
        font-size: 0.95rem;
    }

}

@media(max-width: 576px) {

    .tld-table thead th,
    .tld-table tbody td {
        font-size: 0.85rem;
        padding: 12px 6px;
    }

    .com-register-btn {
        font-size: 0.95rem;
        padding: 12px 0;
    }
}

/* ===================
5. Tld Usecases Section
====================== */
.tld-usecases-sec {
    background: #f5f7fb;
    position: relative;
}

/* Subtle background glow */
.usecases-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(27, 177, 220, 0.2), transparent 70%);
    filter: blur(160px);
    z-index: 0;
}

/* Title */
.usecases-title span {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.usecase-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: left;
    border: 1px solid rgba(65, 62, 102, 0.08);
    box-shadow: 0 25px 70px rgba(27, 177, 220, 0.12);
    transition: all 0.4s ease;
}

.usecase-card:hover {
    transform: translateY(-10px);
    border-color: rgba(27, 177, 220, 0.4);
    box-shadow: 0 40px 100px rgba(27, 177, 220, 0.22);
}

/* Card Icon */
.usecase-card .usecase-card-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: none;
}

.usecase-card .usecase-card-icon i {
    color: #1bb1dc;
    font-size: 2.5rem;
}

/* Card Titles */
.usecase-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2a2a39;
}

/* Card Text */
.usecase-card p {
    color: #5a5a6e;
    line-height: 1.7;
}

/* Responsive */
@media(max-width: 992px) {
    .tld-usecases-sec {
        padding: 90px 0;
    }
}

@media(max-width: 576px) {
    .usecase-card {
        padding: 30px 20px;
    }

    .usecase-card .usecase-card-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* ===================
6. Showcase Section
====================== */
.showcase-sec {
    background: linear-gradient(135deg, #1bb1dc20, #413e6620);
}

.showcase-sec h2 .text-gradient {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #444;
    position: relative;
    transition: all 0.3s ease;
}

.showcase-list li i {
    color: #1bb1dc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Button */
.showcase-btn {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    transition: all 0.3s ease;
}

.showcase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(27, 177, 220, 0.25);
}

/* Image Styling */
.showcase-img-wrap {
    position: relative;
    display: inline-block;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1bb1dc20, #413e6620);
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-img-wrap img {
    border-radius: 1rem;
}

.showcase-img-wrap:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 60px rgba(27, 177, 220, 0.15);
}

/* Responsive */
@media(max-width:769px) {

    .showcase-btn {
        padding: 10px 22px;
        font-size: 15px;
    }
}

@media(max-width: 576px) {

    .showcase-list li {
        font-size: 0.95rem;
    }
}

/* ===================
7. Boost Domain Section
====================== */
.boost-sec {
    background: #f9faff;
}

.boost-feature {
    background: #fff;
    padding: 25px 25px 25px 25px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(27, 177, 220, 0.08);
    transition: all 0.3s ease;
}

.boost-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(27, 177, 220, 0.15);
}

.boost-feature .feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.bg-hosting {
    background: #1bb1dc;
}

.bg-ssl {
    background: #413e66;
}

.bg-dns {
    background: #8b45b4;
}

.bg-email {
    background: #ff6f61;
}

.boost-feature .feature-content h3 {
    font-weight: 700;
    font-size: 1.35rem;
    color: #413e66;
    margin-bottom: 0.3rem;
}

.boost-feature .feature-content p {
    color: #5a5a6e;
    line-height: 1.65;
    margin-bottom: 0.6rem;
}

.boost-feature .feature-content .price {
    font-weight: 600;
    color: #1bb1dc;
    margin-bottom: 0.8rem;
}

.boost-feature .feature-content a.btn {
    font-size: 0.95rem;
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    border: 1px solid #1bb1dc;
    color: #1bb1dc;
    transition: all 0.3s ease;
}

.boost-feature .feature-content a.btn:hover {
    background: #1bb1dc;
    color: #fff;
    box-shadow: 0 12px 35px rgba(27, 177, 220, 0.3);
    transform: translateY(-2px);
}

@media(max-width: 992px) {
    .boost-feature {
        flex-direction: column !important;
        text-align: left !important;
    }

    .boost-feature .feature-icon {
        margin-bottom: 15px;
    }
}


/* ===================
8. Cta Domain Search Section
====================== */
.cta-domain-search {
    background: linear-gradient(135deg, #0d0d18 0%, #121126 100%);
    color: #fff;
}

.cta-domain-search::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -150px;
    background: radial-gradient(circle, rgba(27, 177, 220, 0.3), transparent 70%);
    filter: blur(180px);
    z-index: 0;
}

/* Heading */
.cta-domain-search h2 {
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-domain-search h2 span {
    background: linear-gradient(90deg, #1bb1dc, #413e66, #8b45b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtext */
.cta-domain-search p {
    color: #cfd0d8;
    max-width: 700px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 2;
}

/* Search Form */
.cta-domain-search .search-form {
    max-width: 700px;
    margin: 0 auto;
}

.cta-domain-search .search-form:hover {
    box-shadow: 0 25px 80px rgba(27, 177, 220, 0.25);
}

/* Input Field */
.cta-domain-search .search-input {
    flex: 1;
    padding: 20px 25px;
    font-size: 1.2rem;
    border: none;
    background: transparent;
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .cta-domain-search .search-input {
        font-size: 1.1rem;
        padding: 18px 20px;
    }
}

@media(max-width: 576px) {

    .cta-domain-search .search-input {
        padding: 15px 15px;
        font-size: 1rem;
    }
}