/*
[Custom Stylesheet]
Project: CloudServer - Responsive HTML5 Technology, Web Hosting and WHMCS Template
Version: 1.0
Author : themelooks.com
*/

/* GoDaddy-like Font Family Style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400..700;1,400..700&family=Outfit:wght@400;600;800&display=swap');

/* --- Base Typography --- */
body {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

/* Specific heading refinements */
.section-title h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

/* --- Features Slider Enhancements --- */
#featuresTab {
    padding: 100px 0;
}

#featuresTab .features-nav-container {
    bottom: -40px;
    /* Offset to float slightly outside the content area */
}

#featuresTab .features-nav-container ul {
    background: #288feb;
    /* Inactive background color */
    border-radius: 12px;
    /* overflow: hidden; Removed to allow the top arrow to be visible */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    display: flex !important;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

#featuresTab .features-nav-container ul li {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle white border */
    position: relative;
    z-index: 1;
    /* Ensure positioning context is high enough */
}

/* Maintain rounded corners since overflow:hidden is gone */
#featuresTab .features-nav-container ul li:first-child,
#featuresTab .features-nav-container ul li:first-child p {
    border-radius: 12px 0 0 12px;
}

#featuresTab .features-nav-container ul li:last-child,
#featuresTab .features-nav-container ul li:last-child p {
    border-radius: 0 12px 12px 0;
    border-right: none;
}

#featuresTab .features-nav-container ul li p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 10px;
    color: #fff;
    /* Inactive text color */
    background-color: #288feb;
    text-align: center;
    /* Center the text */
    transition: all 0.3s ease;
    margin: 0;
}

#featuresTab .features-nav-container ul li.active p,
#featuresTab .features-nav-container ul li:hover p {
    background-color: #fff;
    /* Active background color */
    color: #288feb;
    /* Active text color */
}

/* --- Active Top Arrow Indicator (^) --- */
#featuresTab .features-nav-container ul li.active::before {
    content: '\f106';
    /* FontAwesome angle-up */
    font-family: 'FontAwesome';
    position: absolute;
    top: -24px;
    left: 50%;
    width: 30px;
    /* Explicit width for reliable centering */
    text-align: center;
    transform: translateX(-50%);
    color: #288feb;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    z-index: 20;
    opacity: 1;
    pointer-events: none;
    animation: bounceArrow 2s infinite ease-in-out;
}

@keyframes bounceArrow {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -6px);
    }
}

#featuresTab .features-tab--img img {
    width: 100%;
    max-width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#featuresTab .features-tab--item:hover .features-tab--img img {
    transform: scale(1.05) translateY(-10px);
}

#featuresTab h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

#featuresTab .features-tab--content ul {
    margin-top: 25px;
    padding-left: 0;
    list-style: none;
}

#featuresTab .features-tab--content ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#featuresTab .features-tab--content ul li i {
    color: #090909;
    font-size: 14px;
}

/* --- Layout Helpers --- */
.reset-gutter {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.reset-gutter>[class*="col-"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* --- Footer Links Zoom Effect --- */
#footer .footer-widget ul li a {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #b0b0b0;
    /* Light gray for inactive footer links */
}

#footer .footer-widget ul li a:hover {
    transform: scale(1.05) translateX(5px);
    color: #fff;
    text-decoration: none;
}

#footer .footer-widget h4 {
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

/* --- Features Slider Entrance Animations --- */
.owl-item.active .features-tab--content h3 {
    animation: fadeInUp 1s ease-out both;
}

.owl-item.active .features-tab--content p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.owl-item.active .features-tab--content ul {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Slide-in from side for images */
.owl-item.active .features-tab--img {
    animation: fadeIn 1.2s ease-out both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Mobile Pagination Dots for Features Slider --- */
#featuresTab .owl-pagination {
    display: none !important;
    /* Hide on desktop */
}

@media screen and (max-width: 767px) {
    #featuresTab .owl-pagination {
        display: block !important;
        margin-top: 15px;
        text-align: center;
    }

    #featuresTab .owl-page {
        display: inline-block;
        margin: 0 5px;
    }

    #featuresTab .owl-page span {
        display: block;
        width: 12px;
        height: 12px;
        background: #ccc;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    #featuresTab .owl-page.active span {
        background: #288feb;
        transform: scale(1.3);
    }

    #featuresTab {
        padding: 40px 0 !important;
        /* Tighten section padding */
    }

    #featuresTab .features-tab--content h3 {
        font-size: 23px !important;
        margin-bottom: 12px;
        /* Less gap below heading */
        color: #202736;
        line-height: 1.2;
    }

    #featuresTab .features-tab--content h3 span {
        display: block;
        color: #288feb;
        font-size: 16px;
        margin-bottom: 4px;
    }

    #featuresTab .features-tab--content p {
        font-size: 14px !important;
        color: #666;
        line-height: 1.5;
        margin-bottom: 15px;
        /* Less gap below paragraph */
    }

    #featuresTab .features-tab--content ul {
        margin-top: 10px;
    }

    #featuresTab .features-tab--content ul li {
        justify-content: center;
        font-size: 14px !important;
        margin-bottom: 6px;
        /* Tighter list items */
    }

    #featuresTab .features-tab--img {
        margin-top: 20px;
        /* Pull image closer to text */
    }

    #featuresTab .features-tab--img img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }


}

/* --- Modern cPanel Service Section --- */
.modern-cpanel-section {
    padding: 0 0 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.modern-cpanel-section .sub-title {
    display: inline-block;
    color: #288feb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.modern-cpanel-section .modern-h2 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 42px !important;
    line-height: 1.2 !important;
    color: #202736 !important;
    margin-bottom: 30px !important;
    text-align: left !important;
    border: none !important;
}

.modern-cpanel-section .modern-h2 span {
    color: #288feb;
}

.modern-cpanel-section .section-title {
    margin-top: 0;
    margin-bottom: 20px;
}

.modern-cpanel-section .section-title h2::before {
    bottom: -10px;
}

.glass-content-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 25px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.glass-content-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
}

.glass-content-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.glass-content-card p:last-child {
    margin-bottom: 0;
}

.cpanel-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    border-color: #288feb;
    box-shadow: 0 8px 20px rgba(40, 143, 235, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: #288feb;
    font-size: 20px;
}

.feature-item span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

.cpanel-cta {
    margin-top: 10px;
}

.btn-custom-modern {
    background: #288feb;
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(40, 143, 235, 0.2);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-custom-modern i {
    transition: transform 0.3s ease;
}

.btn-custom-modern:hover {
    background: #202736;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(32, 39, 54, 0.25);
}

.btn-custom-modern:hover i {
    transform: translateX(5px);
}

.cpanel-image-container {
    position: relative;
    padding: 20px;
}

.image-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(40, 143, 235, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.floating-animation {
    animation: floating 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transform: scale(1.15);
    width: 100%;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
    }
}

@media (max-width: 1199px) {
    .modern-cpanel-section .modern-h2 {
        font-size: 36px !important;
    }
}

@media (max-width: 991px) {
    .modern-cpanel-section {
        text-align: center;
        padding: 50px 0;
    }

    .modern-cpanel-section .modern-h2 {
        text-align: center !important;
    }

    .modern-cpanel-section .section-title h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .cpanel-image-container {
        margin-top: 60px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .cpanel-features-list {
        grid-template-columns: 1fr;
    }

    .modern-cpanel-section .modern-h2 {
        font-size: 28px !important;
    }

    .glass-content-card {
        padding: 25px;
    }
}


/* --- Modern Benefits Section (2nd cPanel Section) --- */
.modern-benefits-section {
    padding: 15px 0 60px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.modern-benefits-section .section-title {
    margin-top: 0;
}

.modern-h2-centered {
    font-family: 'Outfit', sans-serif !important;
    font-size: 42px !important;
    color: #202736 !important;
    margin-bottom: 35px !important;
    text-align: center !important;
    position: relative;
    padding-bottom: 20px;
}

.modern-h2-centered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #288feb;
    border-radius: 3px;
}

.modern-h2-centered span {
    color: #288feb;
}

.benefits-image-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(40, 143, 235, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.floating-img-2 {
    animation: floating-alt 6s ease-in-out infinite;
    max-width: 100%;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.12));
}

@keyframes floating-alt {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 18px 25px;
    border-radius: 24px;
    background: #fcfdfe;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
    background: #ffffff;
    transform: translateX(15px);
    box-shadow: 0 20px 40px rgba(40, 143, 235, 0.08);
    border-color: rgba(40, 143, 235, 0.3);
}

.benefit-icon {
    min-width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #288feb 0%, #1a73e8 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 26px;
    box-shadow: 0 10px 20px rgba(40, 143, 235, 0.25);
}

.benefit-info h4 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-bottom: 8px;
    color: #202736;
    letter-spacing: -0.01em;
}

.benefit-info p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .benefit-card:hover {
        transform: translateX(10px);
    }
}

@media (max-width: 991px) {
    .modern-benefits-section {
        padding: 50px 0;
    }

    .benefits-image-wrapper {
        margin-bottom: 60px;
    }

    .benefit-card:hover {
        transform: translateY(-5px) translateX(0);
    }
}

@media (max-width: 767px) {
    .modern-h2-centered {
        font-size: 32px !important;
        margin-bottom: 40px !important;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 20px;
    }

    .benefit-icon {
        margin: 0 auto;
    }
}


/* --- Modern Domain Section (Refined) --- */
.modern-domain-section {
    padding: 20px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.modern-domain-section .glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 143, 235, 0.08);
    padding: 35px;
    border-radius: 28px;
    box-shadow: none;
}

.compact-feature-grid-wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.feature-pill {
    background: rgba(40, 143, 235, 0.05);
    padding: 12px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-pill:hover {
    background: #fff;
    border-color: rgba(40, 143, 235, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0px 0px rgba(247, 247, 247, 0.794);
}

.feature-pill i {
    color: #288feb;
    font-size: 14px;
}

.feature-pill span {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
}

.domain-image-box {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(40, 143, 235, 0.05) 0%, rgba(40, 143, 235, 0) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-img-v3 {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    animation: floatVertical 5s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


@media (max-width: 1199px) {
    .compact-feature-grid-wide {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .modern-domain-section .glass-card {
        padding: 30px;
    }

    .modern-domain-section {
        padding: 60px 0;
    }

    .compact-feature-grid-wide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .compact-feature-grid-wide {
        grid-template-columns: 1fr;
    }
}