@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.heading-section {
    min-height: 500px;
    background: var(--dark-purple-color);
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.heading-section .banner-wrapper {
    padding-top: 30px;
}

.colocationBtn {
    font-weight: 700;
    color: white;
    background-color: var(--yellow-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
}

.sub-heading-section {
    min-height: 400px;
}


.sub-heading-section .banner-wrapper {
    padding-top: 36px;
}

.heading-section .geometric-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 100px 100px;
    background-color: var(--dark-purple-color);
    opacity: 0.1;
}

.heading-section .banner-content {
    position: relative;
    z-index: 2;
}

.heading-section .banner-wrapper {
    color: white;
}

.heading-section .decorative-icon {
    font-size: 3rem;
    color: var(--yellow-color);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.heading-section .text-gradient {
    background: linear-gradient(90deg, #ffffff, var(--yellow-color), #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s linear infinite;
}

.heading-section .description-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    background: rgba(145, 10, 103, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(234, 150, 17, 0.1);
    backdrop-filter: blur(5px);
}

.heading-section .glow-effect {
    position: absolute;
    top: -75%;
    left: -50%;
    width: 200%;
    height: 250%;
    background: radial-gradient(circle at center,
            rgba(234, 150, 17, 0.1) 0%,
            transparent 70%);
    pointer-events: none;
}

.heading-section .breadcrumb-wrapper {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(60, 7, 83, 0.3);
    border-radius: 30px;
    display: inline-block;
}

.heading-section .breadcrumb {
    margin: 0;
    padding: 0;
}

.heading-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    line-height: 2;
}

.heading-section .breadcrumb-item a:hover {
    color: var(--yellow-color);
    background: rgba(234, 150, 17, 0.1);
}

.heading-section .breadcrumb-item.active a {
    color: var(--yellow-color);
    background: rgba(234, 150, 17, 0.2);
}

.heading-section .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .heading-section {
        padding: 60px 0;
    }

    .heading-section .description-box {
        padding: 1rem;
    }

    .heading-section .breadcrumb-wrapper {
        margin-top: 1rem;
        padding: 0.5rem;
    }
}

@media (max-width: 992px) {
    .heading-section {
        min-height: 400px;
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .heading-section h1.display-4 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .heading-section {
        min-height: 350px;
        padding-top: 60px;
    }

    .heading-section h1.display-4 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem !important;
        margin-top: 40px;
    }

    .heading-section .description-box {
        max-width: 95% !important;
        padding: 12px !important;
    }

    .heading-section .description-box p.lead {
        font-size: 1rem;
        margin-bottom: 0.75rem !important;
    }

    .heading-section .description-box p.fs-6 {
        font-size: 0.875rem !important;
    }

    .heading-section .breadcrumb-wrapper {
        margin-top: 1.5rem !important;
        padding: 0.75rem !important;
        border-radius: 20px !important;
    }

    .heading-section .breadcrumb-item a {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .heading-section {
        min-height: 300px;
        padding-top: 40px;
    }

    .heading-section h1.display-4 {
        font-size: 1.75rem;
        margin-top: 60px;
    }

    .heading-section .description-box {
        backdrop-filter: none;
    }

    .heading-section .glow-effect {
        display: none;
    }

    .heading-section .breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .heading-section .breadcrumb::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 375px) {
    .heading-section h1.display-4 {
        font-size: 1.5rem;
    }

    .heading-section .breadcrumb-item a {
        font-size: 0.8125rem;
    }
}
@media (max-width:800px){
    #loc-card{
         column-count: 2 !important;
    }
}









/* Modern Dedicated Section Styling */
.heading-dedicated-section {
    min-height: auto;
    background: var(--dark-purple-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Geometric background pattern */
.heading-dedicated-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Add animated particles */
.heading-dedicated-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, var(--yellow-color) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, var(--yellow-color) 1px, transparent 1px),
        radial-gradient(circle at 60% 60%, var(--yellow-color) 1px, transparent 1px);
    background-size: 120px 120px, 90px 90px, 60px 60px;
    animation: floatingParticles 60s linear infinite;
    opacity: 0.1;
    z-index: 1;
}

@keyframes floatingParticles {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 120px 120px, 90px 90px, 60px 60px; }
}

/* Content wrapper */
.heading-dedicated-section .banner-wrapper {
    padding: 8.5rem 1rem 3rem 8rem;
    position: relative;
    z-index: 2;
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heading-dedicated-section .colocation-banner-wrapper {
    padding: 11rem 1rem 3rem 8rem;
}

/* Modern title styling with animated gradient */
.heading-dedicated-section h1 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    letter-spacing: -0.03em;
}

.heading-dedicated-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: var(--yellow-color);
    border-radius: 5px;
    animation: pulseWidth 3s ease-in-out infinite;
}

@keyframes pulseWidth {
    0%, 100% { width: 120px; }
    50% { width: 160px; }
}

.heading-dedicated-section .text-gradient {
    background: linear-gradient(90deg, #ffffff 0%, var(--yellow-color) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Enhanced description box */
.heading-dedicated-section .description-box {
    max-width: 100%;
    margin: 0 0 30px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(234, 150, 17, 0.6);
    box-shadow: -8px 0 15px -5px rgba(0, 0, 0, 0.1);
    background: rgba(60, 7, 83, 0.2);
    border-radius: 0 8px 8px 0;
    padding: 15px 20px 15px 25px;
}

.heading-dedicated-section .description-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--yellow-color), rgba(234, 150, 17, 0.3));
    border-radius: 2px;
}

.heading-dedicated-section .description-box p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* Modern breadcrumb styling */
.heading-dedicated-section .breadcrumb-wrapper {
    padding: 0.75rem 1.5rem;
    background: rgba(41, 5, 57, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    border: 1px solid rgba(234, 150, 17, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    display: flex;
    width: fit-content;
    justify-content: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.heading-dedicated-section .breadcrumb-wrapper:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    border-color: rgba(234, 150, 17, 0.5);
}

.heading-dedicated-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.heading-dedicated-section .breadcrumb-item a:hover {
    color: var(--yellow-color);
    background: rgba(234, 150, 17, 0.15);
    transform: translateY(-2px);
}

.heading-dedicated-section .breadcrumb-item.active a {
    color: var(--yellow-color);
    background: rgba(234, 150, 17, 0.15);
    font-weight: 700;
}

/* Enhanced continent section */
.heading-dedicated-section .heading-continent-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 30px;
}

.heading-dedicated-section .heading-continent-section a{
        text-decoration: none;
}

.heading-dedicated-section .heading-continent {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background: rgba(41, 5, 57, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(234, 150, 17, 0.25);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    gap: 16px;
    width: 200px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.heading-dedicated-section .heading-continent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(234, 150, 17, 0.2) 0%, rgba(60, 7, 83, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.heading-dedicated-section .heading-continent-active {
    background: rgba(114, 4, 85, 0.7);
    border-color: rgba(234, 150, 17, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.heading-dedicated-section .heading-continent-active::before {
    opacity: 1;
}

.heading-dedicated-section .heading-continent i {
    font-size: 24px;
    color: var(--yellow-color);
    transition: all 0.3s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.heading-dedicated-section .heading-continent-active i {
    transform: scale(1.15) rotate(15deg);
    color: #ffb52e;
}

.heading-dedicated-section .heading-continent p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.heading-dedicated-section .heading-continent-active p {
    transform: translateX(3px);
}

/* Image section enhancement */
.heading-dedicated-section .col-lg-6 {
    padding: 0 !important;
    height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.heading-dedicated-section .colocation-banner-side {
    height: 500px;
}

.heading-dedicated-section .heading-image-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.heading-dedicated-section .heading-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
    filter: brightness(0.95) contrast(1.05);
    transform: scale(1.01);
}

.heading-dedicated-section .heading-image-section:hover img {
    transform: scale(1.05);
}

.heading-dedicated-section .heading-image-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(60, 7, 83, 1) 10%, 
        rgba(60, 7, 83, 0.95) 20%, 
        rgba(60, 7, 83, 0.9) 30%, 
        rgba(60, 7, 83, 0.7) 45%, 
        rgba(60, 7, 83, 0.4) 60%, 
        rgba(60, 7, 83, 0) 80%);
    z-index: 2;
    pointer-events: none;
}


/* Responsive styles */
@media (min-width: 1199px) and (max-width: 1476px) {
    .heading-dedicated-section .col-lg-6{
        height: 750px;
    }
    
    .heading-dedicated-section .colocation-banner-side {
        height: 585px !important;
    }
}


@media (max-width: 1200px) {
    .heading-dedicated-section .col-lg-6{
        height: 750px;
    }
    
    .heading-dedicated-section .banner-wrapper {
        padding: 10rem 2rem 3rem 4rem;
    }
    
    .heading-dedicated-section .colocation-banner-wrapper {
        padding: 10rem 2rem 3rem 4rem !important;
    }
    
    .heading-dedicated-section .heading-continent {
        width: 170px;
    }
}


@media (min-width: 991px) and (max-width: 1158px) {
    .heading-dedicated-section .col-lg-6{
        height: 850px;
    }
    
    .heading-dedicated-section .banner-wrapper {
        padding: 10rem 2rem 3rem 4rem;
    }
    
    .heading-dedicated-section .heading-continent {
        width: 170px;
    }
}

@media (max-width: 991px) {
    .heading-dedicated-section {
        min-height: auto;
    }
    
    .heading-dedicated-section .colocation-banner-side {
        height: 585px !important;
    }
    
    .heading-dedicated-section .banner-wrapper {
        padding: 7rem 2rem 0rem;
        text-align: center;
    }
    
    .heading-dedicated-section .description-box {
        text-align: left;
    }
    
    .heading-dedicated-section .breadcrumb-wrapper,
    .heading-dedicated-section .heading-continent-section {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .heading-dedicated-section h1 {
        font-size: 2.75rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .heading-dedicated-section h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .heading-dedicated-section .col-lg-6 {
        height: auto;
    }
    
    .heading-dedicated-section .heading-image-section {
        display: none;
    }
}

/* Medium devices (tablets) */
@media (max-width: 767px) {
    .heading-dedicated-section .banner-wrapper {
        padding: 7rem 1.5rem 0rem;
    }
    
    .heading-dedicated-section h1 {
        font-size: 2.25rem;
    }
    
    .heading-dedicated-section .description-box p {
        font-size: 1rem;
    }
    
    .heading-dedicated-section .heading-continent {
        width: 160px;
        padding: 10px 12px;
    }
    
    .heading-dedicated-section .heading-continent i {
        font-size: 20px;
    }
    
    .heading-dedicated-section .heading-continent p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .heading-dedicated-section .banner-wrapper {
        padding: 6.5rem 1rem 0rem;
    }
    
    .heading-dedicated-section h1 {
        font-size: 1.8rem;
    }
    
    .heading-dedicated-section .description-box {
        padding: 12px 15px 12px 20px;
    }
    
    .heading-dedicated-section .description-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .heading-dedicated-section .breadcrumb-wrapper {
        padding: 0.5rem 1rem;
    }
    
    .heading-dedicated-section .breadcrumb-item  {
        margin-top: 10px;
    }
    
    .heading-dedicated-section .breadcrumb-item a {
        padding: 0.3rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .heading-dedicated-section .heading-continent-section {
        gap: 10px;
    }
    
    .heading-dedicated-section .heading-continent {
        width: 140px;
        padding: 8px 10px;
        gap: 10px;
    }
    
    .heading-dedicated-section .heading-continent i {
        font-size: 18px;
    }
    
    .heading-dedicated-section .heading-continent p {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .heading-dedicated-section h1 {
        font-size: 1.5rem;
    }
    
    .heading-dedicated-section .heading-continent {
        width: 130px;
        padding: 8px;
        gap: 8px;
    }
    
    .heading-dedicated-section .heading-continent i {
        font-size: 16px;
    }
    
    .heading-dedicated-section .heading-continent p {
        font-size: 11px;
    }
}

/* Specific adjustments for colocation section */
.heading-dedicated-section .colocation-banner-side {
    height: 500px;
}

.heading-dedicated-section .colocation-banner-wrapper {
    padding: 11rem 1rem 3rem 8rem;
}

/* Fix media queries for better responsiveness */
@media (min-width: 1199px) and (max-width: 1476px) {
    .heading-dedicated-section .colocation-banner-side {
        height: 585px;
    }
}

@media (max-width: 1200px) {
    .heading-dedicated-section .colocation-banner-wrapper {
        padding: 10rem 2rem 3rem 4rem;
    }
    
    .heading-dedicated-section .colocation-banner-side {
        height: 585px;
    }
}

/* Medium breakpoint adjustments */
@media (max-width: 991px) {
    /* Hide image at md size as requested */
    .heading-dedicated-section .colocation-banner-side:nth-child(2) {
        display: none;
    }
    
    /* First column takes full width */
    .heading-dedicated-section .colocation-banner-side:first-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .heading-dedicated-section .colocation-banner-wrapper {
        padding: 7rem 2rem 3rem;
        text-align: center;
    }
    
    /* Center content on smaller screens */
    .heading-dedicated-section .colocation-banner-wrapper h1,
    .heading-dedicated-section .colocation-banner-wrapper .description-box {
        text-align: center;
    }
    
    .heading-dedicated-section .colocation-banner-wrapper h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .heading-dedicated-section .colocation-banner-wrapper .breadcrumb-wrapper,
    .heading-dedicated-section .colocation-banner-wrapper .heading-continent-section {
        margin: 0 auto 25px;
    }
}

/* Small device adjustments */
@media (max-width: 767px) {
    .heading-dedicated-section .colocation-banner-wrapper {
        padding: 6rem 1.5rem 2.5rem;
    }
    
    .heading-dedicated-section .colocation-banner-side {
        height: auto !important;
        min-height: 450px;
    }
}

/* Extra small device adjustments */
@media (max-width: 576px) {
    .heading-dedicated-section .colocation-banner-wrapper {
        padding: 5rem 1rem 2rem;
    }
    
    .heading-dedicated-section .colocation-banner-side {
        min-height: 400px;
    }
}

@media (max-width: 400px) {
    .heading-dedicated-section .colocation-banner-side {
        min-height: 380px;
    }
}


.map-section .container {
    max-width: 1500px !important;
}


.map-section .map-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-section .distribution-map {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: antiquewhite;
    border-radius: 10px;
}

.map-section {
    padding: 30px 0px;
}

.map-section .distribution-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-section .pin {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: var(--dark-purple-color);
    border: 2px solid var(--pink-color);
    animation: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-section .pin.active {
    animation: pulse 1.5s ease-in-out infinite, glow 1.5s ease-in-out infinite;
}

/* Map Card Styling */
.map-section .map-card {
    position: relative;
    display: flex;
    flex-direction: column;
    column-count: 2;
    overflow: hidden;
    border-radius: 20px;
    background: var(--card-bg, #f9f9f9);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
    margin: auto;
    height: 100%;
}

.map-section .map-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Image Section */
.map-section .map-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 2px solid var(--yellow-color, #6a0dad);
}

.map-section .map-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.map-section .map-card:hover .map-image-container img {
    transform: scale(1.1);
}

/* Overlay Button */
.map-section .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-section .map-card:hover .overlay {
    opacity: 1;
}

.map-section .col a {
    text-decoration: none;
}

.map-section .view-more-btn,
.map-section .view-more-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow-color, #ff5a5f);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 90, 95, 0.3);
    transition: transform 1s ease, box-shadow 1s ease;
}

.map-section .view-more-btn i,
.map-section .view-more-button i {
    font-size: 1.2rem;
}

.map-section .view-more-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 90, 95, 0.4);
}

/* Details Section */
.map-details {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.continent-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color, #333);
    margin: 0;
}

.continent-subtitle {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--yellow-color);
    margin: 0;
}

.map-description {
    font-size: 1rem;
    color: var(--subtext-color, #666);
    margin-top: 0.5rem;
}

/* Starting Price Badge */
.starting-price {
    position: absolute;
    top: 35px;
    left: -60px;
    transform: rotate(-45deg);
    background: var(--yellow-color, #ff5a5f);
    color: white;
    font-weight: bold;
    padding: 5px 41px;
    box-shadow: 0 4px 10px rgba(255, 90, 95, 0.3);
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

.starting-price span {
    font-size: 30px;
}




/* Section Styling */
.specility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(60, 7, 83, 0.03) 0%, rgba(114, 4, 85, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.specility-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 150, 17, 0.03) 0%, rgba(234, 150, 17, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.specility-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 10, 103, 0.03) 0%, rgba(145, 10, 103, 0) 70%);
    bottom: -200px;
    left: -200px;
    z-index: 0;
}

.specility-section .container {
    max-width: 1500px;
    padding: 0 25px;
    position: relative;
    z-index: 1;
}

/* Heading Styling */
.specility-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    padding-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--dark-purple-color), var(--pink-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    letter-spacing: -0.5px;
    position: relative;
}

.specility-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--yellow-color);
    bottom: 20px;
    left: 0;
    border-radius: 2px;
}

/* Card Styling */
.specility-card {
    padding: 0 40px 40px 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(60, 7, 83, 0.05);
    padding: 25px;
    overflow: hidden;
}

.specility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(60, 7, 83, 0.1);
}

.specility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--dark-purple-color), var(--pink-color));
    transition: height 0.3s ease;
}

.specility-card:hover::before {
    height: 100%;
}

.specilityline {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--pink-color), var(--yellow-color));
    margin: 15px 0;
    opacity: 0.8;
    border-radius: 1px;
}

/* Card Heading and Icon */
.specility-card h3 {
    font-size: 20px !important;
    font-weight: 700;
    color: var(--dark-purple-color);
    margin: 0;
    transition: color 0.3s ease;
}

.specility-card:hover h3 {
    color: var(--yellow-color);
}

.specility-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(60, 7, 83, 0.08);
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.specility-card:hover .specility-card-icon {
    transform: rotate(5deg) scale(1.1);
    background-color: rgba(234, 150, 17, 0.15);
}

.specility-card-icon img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(0) saturate(100%) invert(10%) sepia(100%) saturate(4000%) hue-rotate(280deg);
    transition: filter 0.3s ease;
}

.specility-card:hover .specility-card-icon img {
    filter: grayscale(0%) brightness(100%) saturate(100%);
}

/* Card Text */
.specility-card p {
    margin-top: 15px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .specility-section h2 {
        font-size: 2.25rem;
    }
    .specility-card {
        padding: 20px;
    }
    .specility-card h3 {
        font-size: 1.35rem !important;
    }
}

@media (max-width: 992px) {
    .specility-section {
        padding: 60px 0;
    }
    .specility-section h2 {
        font-size: 2rem;
        padding-bottom: 25px;
    }
    .specility-card {
        padding: 20px;
    }
    .specility-card-icon {
        width: 50px;
        height: 50px;
    }
    .specility-card h3 {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 768px) {
    .specility-section {
        padding: 50px 0;
    }
    .specility-section .container {
        padding: 0 20px;
    }
    .specility-section h2 {
        font-size: 1.75rem;
        padding-bottom: 20px;
    }
    .specility-section h2::after {
        width: 60px;
        height: 3px;
        bottom: 12px;
    }
    .specility-card {
        padding: 20px !important;
        margin-bottom: 15px;
    }
    .specilityline {
        margin: 12px 0;
    }
    .specility-card h3 {
        font-size: 1.25rem !important;
    }
    .specility-card-icon {
        width: 45px;
        height: 45px;
        padding: 10px;
    }
    .specility-card p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    /* Adjusting the layout for mobile */
    .specility-card .d-flex.flex-row {
        display: grid !important;
        grid-template-columns: auto 45px;
        align-items: center !important;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .specility-section {
        padding: 40px 0;
    }
    .specility-section h2 {
        font-size: 1.5rem;
        padding-bottom: 15px;
    }
    .specility-card {
        padding: 15px !important;
        margin-bottom: 12px;
    }
    .specility-card-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    .specility-card p {
        font-size: 0.875rem;
        margin-top: 10px;
    }
    .specilityline {
        margin: 10px 0;
        height: 1.5px;
    }
    .specility-section h2::after {
        width: 50px;
        height: 3px;
        bottom: 10px;
    }
}

@media (max-width: 375px) {
    .specility-section h2 {
        font-size: 1.375rem;
    }
    .specility-card h3 {
        font-size: 1.15rem !important;
    }
    .specility-card-icon {
        width: 35px;
        height: 35px;
        padding: 7px;
    }
    .specility-card p {
        font-size: 0.8125rem;
    }
    .specility-section .container {
        padding: 0 15px;
    }
}




.feature-section {
    background-color: var(--background-color);
    padding: 60px 0px;
}

.feature-section .table-container {
    max-width: 1500px !important;
}

.feature-section .feature-section-title {
    font-size: xx-large;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-section .card {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    transition: 0.3s;
}

.feature-section .benefit-image {
    position: absolute;
    top: -35px;
    right: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    height: 70px;
    width: 70px;
    padding: 10px;
    background-color: white;
}

.feature-section .benefits-card-title {
    font-size: large;
    font-weight: 700;
}

.feature-section .card:hover {
    color: white;
    background-color: var(--primary-color);
}

.projectFactsWrap .item i {
    font-size: 50px;
    margin-bottom: 10px;
}

.projectFactsWrap .item p.number {
    font-size: 40px;
    font-weight: bold;
}

.projectFactsWrap .item span {
    display: block;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    margin: 5px auto;
}

.projectFactsWrap .item p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .projectFactsWrap .item {
        margin-bottom: 20px;
    }
}




.technology-section {
    padding: 60px 0;
    background: linear-gradient(to right, #FFF6E8, #FFECD6); /* Subtle gradient */
    position: relative;
    overflow: hidden;
}

.technology-section .container{
    max-width: 1500px;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(60, 7, 83, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.technology-section .technology-section-title {
    color: var(--dark-purple-color);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.technology-section .technology-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--pink-color);
    border-radius: 2px;
}

.technology-section .technology-section-description {
    color: #555;
    text-align: center;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.technology-section .technology-section-points {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.technology-section .technology-section-point {
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    width: 149px;
    text-align: center;
    position: relative;
}

.technology-section .technology-section-point img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.technology-section .technology-section-point p {
    color: var(--light-purple-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

@media (max-width: 768px) {
    .technology-section .technology-section-title {
        font-size: 1.6rem;
    }
    .technology-section .technology-section-description {
        font-size: 1rem;
    }
    .technology-section .technology-section-points {
        flex-direction: column;
        align-items: center;
    }
    .technology-section .technology-section-point {
        width: 90%;
        justify-content: center;
    }
}







.dedicated-server-definition-section {
    background-color: var(--dark-purple-color);
    color: white;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.dedicated-server-definition-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(135deg, var(--light-purple-color), transparent);
    transform: rotate(-15deg);
    opacity: 0.6;
    z-index: 1;
}

.dedicated-server-definition-section .definition-content {
    max-width: 1500px;
    position: relative;
    z-index: 2;
}

.dedicated-server-definition-section .definition-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--yellow-color);
    padding-left: 20px;
    line-height: 1.2;
}

.dedicated-server-definition-section .definition-content h2 span {
    color: #ff8049;
    display: inline-block;
    position: relative;
}

.dedicated-server-definition-section .definition-content h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--yellow-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}

.dedicated-server-definition-section:hover .definition-content h2 span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.dedicated-server-definition-section .definition-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.dedicated-server-definition-section .choose-reason {
    background: linear-gradient(90deg, var(--light-purple-color), var(--pink-color));
    border-radius: 10px;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dedicated-server-definition-section .choose-reason h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.dedicated-server-definition-section .choose-reason h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--yellow-color);
    margin-top: 10px;
}

.dedicated-server-definition-section .choose-reason p {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
    font-size: 1rem;
}

.dedicated-server-definition-section .choose-reason p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--yellow-color);
}

.dedicated-server-definition-section .choose-reason p span {
    color: #ffb798;
    font-weight: 600;
}

.dedicated-server-definition-section .definition-image {
    position: relative;
    overflow: hidden;
}

.dedicated-server-definition-section .definition-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--dark-purple-color) 0%, transparent 20%);
    z-index: 1;
}

.dedicated-server-definition-section .definition-image img {
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) saturate(1.2);
    transition: transform 10s ease;
}

.dedicated-server-definition-section .definition-image:hover img {
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .dedicated-server-definition-section {
        min-height: auto;
    }
    
    .dedicated-server-definition-section .definition-content h2 {
        font-size: 2.5rem;
    }
    
    .definition-image {
        height: 400px !important;
    }
    
    .definition-content {
        padding: 40px 20px !important;
    }
    
    .dedicated-server-definition-section::before {
        opacity: 0.4;
    }
}

@media (max-width: 575px) {
    .definition-image {
        height: 300px !important;
    }
    
    .dedicated-server-definition-section .definition-content h2 {
        font-size: 2rem;
    }
    
    .dedicated-server-definition-section .choose-reason {
        padding: 15px 20px;
    }
}








.dedicated-server-owner-map-section {
    padding-top: 50px;
}

.dedicated-server-owner-map-section .dedicated-server-owner-title{
    color: var(--yellow-color);
}


.dedicated-server-owner-map-section .container {
    max-width: 1500px;
}

.dedicated-server-owner-map-section .owner-advantage-card-icon {
    width: 50px;
    height: auto;
}

.dedicated-server-owner-map-section .owner-advantage-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.dedicated-server-owner-map-section .owner-advantage-card {
    border-radius: 20px;
    background-color: #fff0e9;
    border: 1px solid var(--yellow-color);
    height: 90%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.dedicated-server-owner-map-section .owner-advantage-card:hover {
    /* transform: rotate(-2deg); */
    background-color: var(--yellow-color);
    /* Change to the desired hover color */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    /* Optional for a more dramatic effect */
}






/* dedicated-servers-north-amarica */
.country-section {
    padding: 60px 0px;
    background-color: #FFF7EA;
}

.country-section .container{
    max-width: 1600px !important;
}

.country-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.country-section .description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Country Buttons */
.country-section .button-group {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.country-section .button-group-specific {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.country-section .country-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    font-size: 25px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgb(60 64 67 / 1%) 0px 1px 2px 0px, rgb(60 64 67 / 24%) 0px 2px 6px 2px;
    position: relative;
    color: black;
    background-color: white;
}

.country-section .country-button-specific {
    flex: 0 278px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 10px;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: rgb(60 64 67 / 1%) 0px 1px 2px 0px, rgb(60 64 67 / 24%) 0px 2px 6px 2px;
    position: relative;
    color: black;
    background-color: white;
}

.country-section .country-button-specific p ,
.country-section .country-button p {
    padding: 0;
    margin: 0;
}


.country-section .country-button-specific h3{
     padding: 0;
    margin: 0;
    font-size: 19px;
    font-weight: 600;
}

/* Button Hover Effects */
.country-section .country-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.country-section .country-button:hover i,
.country-section .country-button-specific:hover i{
    transform: translateX(5px);
}

/* Flag Styling */
.country-section .country-button img {
    width: 85px;
    border: 2px solid #FFC974;
    padding: 2px;
    border-radius: 5px;
}

.country-section .country-button-specific img {
    width: 68px;
    border: 2px solid #FFC974;
    padding: 2px;
    border-radius: 5px;
}

.city-card img.aus{
    width: 68px;
    border-radius: 5px;
}

/* Arrow Icon */
.country-section .country-button i,
.country-section .country-button-specific i{
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .country-section .button-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .country-section .button-group-specific {
        flex: 0 0;
        width: fit-content;
        /* flex-direction: column; */
        gap: 15px;
    }
}


.server-quality-section {
    background: linear-gradient(135deg, var(--dark-purple-color) 57%, var(--light-purple-color) 80%, var(--pink-color) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.server-quality-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.server-quality-section h2 {
    color: white;
    padding: 0 15px 60px;
    letter-spacing: 1px;
    position: relative;
}

.server-quality-section h2::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-purple-color), var(--yellow-color));
    border-radius: 2px;
}

.server-quality-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.server-quality-card {
    position: relative;
    flex: 1;
    max-width: 700px;
    margin: 0 15px;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    display: flex;
    flex-direction: column;
    max-height: 462px;
}

.server-quality-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.1);
    filter: brightness(0.5);
    border-radius: 35px;
}

.server-quality-card:hover img {
    filter: saturate(1.3) brightness(1.1);
    transform: translateY(-10px);
}

.server-quality-content {
    position: relative;
    margin-top: -120px;
    margin-left: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 0;
    border-left: 5px solid var(--yellow-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 90%;
    z-index: 2;
}

.server-quality-card:hover .server-quality-content {
    transform: translateX(10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.server-quality-content.business, 
.server-quality-content.developer {
    left: 0;
    right: auto;
    top: -243px;
}

.server-quality-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-purple-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.server-quality-content h3::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(234, 150, 17, 0.2);
    top: -8px;
    left: -10px;
    z-index: -1;
}

.server-quality-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
    position: relative;
}

.server-quality-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, transparent 50%, var(--yellow-color) 50%);
    transition: all 0.3s ease;
}

.server-quality-card:nth-child(2) .server-quality-content {
    border-left-color: var(--yellow-color);
}

.server-quality-card:nth-child(2) .server-quality-content::after {
    background: linear-gradient(135deg, transparent 50%, var(--yellow-color) 50%);
}

@media (max-width: 1200px) {
    .server-quality-section .d-flex.flex-lg-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 60px;
    }
    
    .server-quality-card {
        margin: 0 10px 30px;
        max-width: 600px;
    }
}

@media (max-width: 992px) {
    .server-quality-card {
        margin: 0 0 60px;
    }
    
    .server-quality-content {
        width: 95%;
    }
    
    .server-quality-section h2 {
        font-size: clamp(1.5rem, 4vw, 2rem) !important;
        padding-bottom: 40px !important;
    }
}

@media (max-width: 576px) {
    .server-quality-section {
        padding: 60px 0;
    }
    
    .server-quality-content {
        padding: 20px;
        margin-top: -30px;
        margin-left: 10px;
    }
    
    .server-quality-content h3 {
        font-size: 1.25rem !important;
    }
    
    .server-quality-content p {
        font-size: 0.875rem !important;
    }
    
    .server-quality-card {
        margin: 0 0 -115px;
    }
    
    .server-quality-section h2::after {
        bottom: 25px;
        width: 80px;
    }
}




.our-dedicated-server-section {
    padding: 50px 0px 0px;
}

.our-dedicated-server-section .container {
    max-width: 1500px !important;
}

.our-dedicated-server-section .container h2 {
    margin-bottom: 20px;
    color: var(--yellow-color);
}
.our-dedicated-server-section .our-dedicated-server-image {
    width: 900px;
}

.our-dedicated-server-section .our-dedicated-server-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.our-dedicated-server-section .our-dedicated-server-content i {
    font-size: 30px;
    color: var(--yellow-color);
}

.our-dedicated-server-section .our-dedicated-server-content h3 {
    font-size: 20px;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .our-dedicated-server-section .our-dedicated-server-image {
        /*width: 600px;*/
        display: none;
    }
}

@media (max-width: 992px) {
    .our-dedicated-server-section .our-dedicated-server-image {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .our-dedicated-server-section .d-flex.flex-row {
        flex-direction: column;
        align-items: center;
    }

    .our-dedicated-server-section .our-dedicated-server-image {
        display: none;
        /* Hide image on mobile */
    }

    .our-dedicated-server-section .our-dedicated-server-content {
        width: 100% !important;
        padding: 0 15px;
    }

    .our-dedicated-server-content h3 {
        font-size: 18px !important;
    }

    .our-dedicated-server-content p {
        font-size: 14px !important;
    }

    .our-dedicated-server-content i {
        font-size: 24px !important;
    }
}

@media (max-width: 576px) {
    .our-dedicated-server-section {
        padding: 50px 0 20px;
    }

    .our-dedicated-server-section h2 {
        font-size: 1.5rem !important;
        padding: 0 15px !important;
    }

    .our-dedicated-server-content .d-flex {
        gap: 2rem !important;
    }
}





.server-feature-section {
    padding: 30px 0px;
}

.server-feature-section .container {
    max-width: 1500px !important;
    margin: 35px auto;
}

.server-feature-section .container .row .col-12 {
    margin-bottom: 10px;
}

.server-feature-section .server-feature-header {
    width: 70%;

}

.server-feature-section .server-features-heading h2 {
    color: var(--dark-purple-color);
}

.server-feature-section .server-features-heading .line {
    height: 3px;
    flex: 1;
    background-color: var(--yellow-color);
}

.server-feature-section .server-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-top: 5px solid var(--yellow-color);
    background-color: white;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    gap: 10px;
    height: 100%;
}

.server-feature-section .server-feature-card i {
    font-size: 55px;
    color: var(--yellow-color);
    padding-bottom: 10px;
}

.server-feature-section .server-feature-card h3 {
    font-size: 20px;
}

.server-feature-section .server-feature-card p {
    font-size: 15px;
}


.server-feature-section .server-feature-accordions {
    padding: 0px 30px;
}

.server-feature-section .accordion {
    border: 1px solid grey;
    background-color: white;
    color: var(--pink-color);
    cursor: pointer;
    padding: 18px;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.server-feature-section .active,
.server-feature-section .accordion:hover {
    background-color: #ccc;
}

.server-feature-section .server-feature-acco {
    border-bottom: 1px solid grey;
}

.server-feature-section .panel {
    padding: 20px 18px 0px 0px;
    display: none;
    background-color: white;
    overflow: hidden;
    transition: 0.4s;
}

.server-feature-section .panel i {
    padding-right: 10px;
    color: var(--pink-color);
}

@media (max-width: 768px) {
    .server-feature-section .server-feature-header {
        width: 100%;
    }
    
    .server-feature-section .server-feature-card {
        padding: 20px;
    }
    
    .server-feature-section .server-feature-card h3 {
        font-size: 18px;
    }
    
    .server-feature-section .server-feature-card p {
        font-size: 14px;
    }
    
    .server-feature-section .server-feature-accordions {
        padding: 0 15px;
    }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    .server-feature-section {
        padding: 30px 0;
    }
    
    .server-feature-section .container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .server-feature-section .server-feature-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .server-feature-section .server-feature-card i {
        font-size: 45px;
    }
    
    .server-feature-section .server-feature-card h3 {
        font-size: 16px;
        text-align: center;
    }
    
    .server-feature-section .server-feature-card p {
        font-size: 13px;
        text-align: center;
    }
    
    .server-feature-section .accordion {
        padding: 12px;
        font-size: 14px;
    }
    
    .server-feature-section .panel {
        padding: 15px 12px 0 0;
    }
}

/* Small mobile devices (360px and below) */
@media (max-width: 360px) {
    .server-feature-section .server-feature-card {
        padding: 10px;
    }
    
    .server-feature-section .accordion {
        font-size: 13px;
    }
    
    .server-feature-section .panel {
        font-size: 12px;
    }
}

/* Adjust grid layout for mobile */
@media (max-width: 992px) {
    .server-feature-section .row {
        flex-wrap: wrap;
        margin: 0 -10px;
    }
    
    .server-feature-section .col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px;
    }
}





.server-location-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fdf6ff 0%, #FFF6E8 100%);
    position: relative;
    overflow: hidden;
}

.server-location-section .container{
    max-width: 1500px;
}

/* Modern abstract shapes in background */
.server-location-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(145, 10, 103, 0.08);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    animation: float 15s ease-in-out infinite alternate;
}

.server-location-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(234, 150, 17, 0.06);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(30px);
    animation: float 12s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 20px) rotate(5deg); }
}

.server-location-section .location-title {
    color: var(--dark-purple-color);
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.server-location-section .location-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--light-purple-color), var(--pink-color), var(--yellow-color));
    border-radius: 4px;
}

.server-location-section .location-description {
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.server-location-section .location-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-purple-color);
    margin: 40px 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.server-location-section a{
    text-decoration: none;
}

.server-location-section .globe-icon {
    font-size: 1.6rem;
    color: var(--pink-color);
    display: flex;
    align-items: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.server-location-section .location-card {
    background: var(--dark-purple-color); /* Dark background */
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 18px 22px;
    transition: all 0.4s ease-in-out;
    border: 2px solid var(--light-purple-color); /* Dark border */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.server-location-section .location-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(145, 10, 103, 0.2), rgba(234, 150, 17, 0.15));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.server-location-section .location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(234, 150, 17, 0.2);
    border-color: var(--yellow-color); /* Gold border on hover */
}

.server-location-section .location-card:hover::before {
    opacity: 1;
}

.server-location-section .check-icon {
    font-size: 1.4rem;
    color: var(--yellow-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.server-location-section .location-card:hover .check-icon {
    transform: translateX(6px);
    color: #FFF;
}

.server-location-section .location-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #FFF; /* Clear white text */
}

.server-location-section .cta-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.server-location-section .explore-btn,
.server-location-section .contact-btn {
    padding: 12px 24px;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.server-location-section .explore-btn {
    background-color: var(--yellow-color);
    border-color: var(--yellow-color);
    color: white;
}

.server-location-section .contact-btn {
    background-color: rgba(145, 10, 103, 0.1);
    border-color: rgba(145, 10, 103, 0.2);
    color: var(--light-purple-color);
}

.server-location-section .explore-btn::before,
.server-location-section .contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    z-index: -1;
    transition: left 0.6s ease;
}

.server-location-section .explore-btn:hover,
.server-location-section .contact-btn:hover {
    transform: translateY(-3px);
}

.server-location-section .explore-btn:hover {
    background-color: #d88a0f;
    border-color: #d88a0f;
}

.server-location-section .contact-btn:hover {
    background-color: rgba(145, 10, 103, 0.15);
    border-color: rgba(145, 10, 103, 0.3);
}

.server-location-section .explore-btn:hover::before,
.server-location-section .contact-btn:hover::before {
    left: 100%;
}

.server-location-section .btn-icon {
    margin-right: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.server-location-section .explore-btn:hover .btn-icon,
.server-location-section .contact-btn:hover .btn-icon {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .server-location-section {
        padding: 50px 0;
    }
    
    .server-location-section .location-title {
        font-size: 1.8rem;
    }
    
    .server-location-section .location-subtitle {
        font-size: 1.2rem;
    }
    
    .server-location-section .location-card {
        padding: 18px;
    }
    
    .server-location-section .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .server-location-section .explore-btn,
    .server-location-section .contact-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 !important;
    }
}






.country-selection-section {
    object-fit: contain;
    background-repeat: no-repeat;
    padding: 30px 0px;
    background-color: rgba(225, 225, 225, 0.3) !important;
}

.country-selection-section .table-container {
    border-radius: 10px;
    padding: 30px;
    background-image: url(/asset/images/amaricacity.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.country-selection-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.country-selection-content {
    flex: 1;
    margin-left: 20px;
}

.country-selection-content div {
    margin-bottom: 20px;

}

.country-selection-content .country {
    position: relative;
    background-color: #000000;
    border: 2px solid #1A1A1A;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    width: 200px;
}

.country-selection-content button {
    position: relative;
    background-color: white;
    border: 2px solid #1A1A1A;
    color: #1A1A1A;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    width: 200px;
}

.country-selection-content i {
    margin-left: 10px;
}

.country-selection-content .country .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
}

.country-selection-content .country .dropdown img {
    width: 50px;
}

.country-selection-content .country:hover .dropdown {
    display: block;
}

.country-selection-content .country .dropdown li {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
}

.country-selection-content .country .dropdown li a {
    text-decoration: none;
    color: black;
    display: block;
}

.country-selection-content .country .dropdown li:hover {
    background-color: var(--background-color);
    color: var(--primary-color);
}

.country-selection-content .country .dropdown li a:hover {
    color: var(--primary-color);
}

.country-selection-content .country-selection {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(225, 225, 225, 0.3);
    border-radius: 10px;
}

/* Dedicated-servers-usa */
.city-section {
    padding: 60px 0;
}

.city-section a {
    text-decoration: none;
}

.city-section .container {
    max-width: 1600px;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 0px;
}

.search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.search-input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    color: #374151;
    font-size: 16px;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-input:focus {
    outline: none;
    border-color: #d946ef;
    box-shadow: 0 0 0 2px rgba(217, 70, 239, 0.2);
}

.city-section .city-card {
    border: 1px solid #bfbfbf;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 15rem;
    margin: 0 auto;
    text-align: left;
    /* Align content to the left */
    display: flex;
    /* Make it a flex container */
    align-items: center;
    /* Center items vertically */
    gap: 22px;
    /* Space between image and text */
}

.city-section .city-card:hover {
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    background: #330344;
}

.city-section .city-card p {
    padding: 0;
    margin: 0;
}

.city-section .city-card:hover p {
    color: white;
}

.city-section .city-image {
    width: 62px;
    /* Adjust size as needed */
    height: 60px;
    border-radius: 6px 0px 0px 6px;
    /* Optional: Round the image */
    object-fit: cover;
    /* Ensure the image fits well */
}

.city-section .city-info {
    display: flex;
    flex-direction: column;
}

.city-section .city-name {
    font-size: 19px;
    font-weight: 600;
    color: black;
}

.city-section .region-badge {
    font-size: 16px;
    border-radius: 4px;
    color: black;
    display: inline-block;
}

.city-section .page-title {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.city-section .row {
    margin: -10px;
}

.city-section .col {
    padding: 10px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .city-section .city-card {
        width: 224px !important;
    }
}
.city-section .state-card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 24px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

@media(min-width: 540px) {
  .city-section .state-card-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media(min-width: 960px) {
  .city-section .state-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width: 1200px) {
  .city-section .state-card-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}



.city-section .location-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(60, 7, 83, 0.15);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.city-section .location-card:hover {
  transform: translateY(-8px);
}

.city-section .location-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.city-section .location-card-image {
  position: relative;
  width: 100%;
  height: 75%;
  overflow: hidden;
}

.city-section .location-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.city-section .location-card:hover .location-card-image img {
  transform: scale(1.1);
}

.city-section .location-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(to bottom, */
  /*  rgba(60, 7, 83, 0) 0%, */
  /*  rgba(114, 4, 85, 0.5) 100%);*/
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.city-section .location-card:hover .location-card-overlay {
  opacity: 0.95;
}

.city-section .location-card-content {
  position: relative;
  padding: 1.5rem;
  background-color: #ffffff;
  height: 37%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.city-section .location-badge {
  display: inline-block;
  background-color: #3C0753;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.city-section .location-card:hover .location-badge {
  background-color: #ff6c2c;
}

.city-section .location-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #720455;
  margin: 0;
  transition: color 0.3s ease;
}

.city-section .location-card:hover .location-name {
  color: #910A67;
}

.city-section .location-card-arrow {
  position: absolute;
  bottom: 46px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border-radius: 50%;
  color: #3C0753;
  transition: all 0.3s ease;
      border: 2px solid #3c0753;
}



.city-section .location-card:hover .location-card-arrow {
  background-color: #910A67;
  color: #ffffff;
  
}

.city-section .location-card:hover .location-card-arrow i{
  background-color: #910A67;
  color: #ffffff;
  transform: rotate(45deg);
  
}

@media (max-width: 768px) {
  .city-section .location-card {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .city-section .location-card-content {
    padding: 1.25rem;
  }
  
  .city-section .location-name {
    font-size: 1.25rem;
  }
}

.city-description-section{
    padding-bottom: 60px;
}



.wordpress-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.wordpress-section .container {
    max-width: 1500px !important;
}

.wordpress-section .row {
    margin-top: 30px;
}

.wordpress-section .wordpress-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.wordpress-section .wordpress-card:hover {
    transform: translateY(-5px);
}

.wordpress-section .active {
    background: linear-gradient(135deg, #92007d, var(--dark-purple-color));
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.wordpress-section .wordpress-card i {
    font-size: 65px;
    margin: 15px 0;
    color: #92007d;
    transition: color 0.3s ease;
}

.wordpress-section .active i {
    color: #ffffff;
}

.wordpress-section .wordpress-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wordpress-section .wordpress-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.wordpress-section .active p {
    color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .wordpress-section .wordpress-card i {
        font-size: 50px;
    }

    .wordpress-section .wordpress-card h3 {
        font-size: 16px;
    }

    .wordpress-section .wordpress-card p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .wordpress-section {
        padding: 40px 0;
    }

    .wordpress-section .row {
        margin-top: 15px;
    }

    .wordpress-section .wordpress-card {
        padding: 20px;
    }

    .wordpress-section .wordpress-card i {
        font-size: 40px;
        margin: 10px 0;
    }

    .wordpress-section .wordpress-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .wordpress-section .wordpress-card p {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 575px) {
    .wordpress-section h2 {
        font-size: 24px;
    }

    .wordpress-section .wordpress-card {
        padding: 15px;
    }
}




.table-section {
    display: flex;
    flex-direction: column;
    padding: 60px 0px;
    align-items: center;
    justify-content: center;
    background-color: white;
    font-size: 18px;
}

/* Page Wrapper/Container Style */
.table-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Table Style */
.responsive-table {
    color: black;
    background-color: white;
    border-collapse: collapse;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
}

.responsive-table__row {
    display: grid;
    border-bottom: 1px solid #edeef2;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .responsive-table__row {
        /* grid-template-columns: 2fr 1fr 2fr 2fr 1fr 2fr; */
        grid-template-columns: 2fr 1fr 2fr 1fr 2fr 2fr;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .responsive-table__row {
        grid-template-columns: 1fr 2fr 1fr;
    }
}

.responsive-table__row th,
.responsive-table__row td {
    padding: 1rem;
}

.responsive-table__head {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 991px) {
    .responsive-table__head {
        display: none;
    }
}

.responsive-table__head__title {
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: capitalize;
}

.responsive-table__body .responsive-table__row {
    transition: 0.1s linear;
    transition-property: color, background;
}

.responsive-table__body .responsive-table__row:last-child {
    border-bottom: none;
}

.responsive-table__body .responsive-table__row:hover {
    color: black;
    background-color: var(--background-color);
}

.responsive-table__body__text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.responsive-table__body__text::before {
    margin-right: 1rem;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .responsive-table__body__text::before {
        content: attr(data-title) " :";
    }
}

@media (max-width: 400px) {
    .responsive-table__body__text::before {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.responsive-table__body__text--name {
    font-weight: 600;
}

@media (min-width: 768px) {
    .responsive-table__body__text--name::before {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .responsive-table__body__text--name {
        grid-column: 1/2;
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .responsive-table__body__text--status,
    .responsive-table__body__text--types,
    .responsive-table__body__text--update {
        grid-column: 2/3;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .responsive-table__body__text--country {
        grid-column: 3/-1;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .responsive-table__body__text--name,
    .responsive-table__body__text--country {
        grid-row: 2;
    }
}

.buynow-button {
    background-color: var(--error-color);
    border: 1px solid transparent;
    border-radius: .75rem;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    flex: 0 0 auto;
    /* font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5rem;
    padding: .75rem 1.2rem;
    text-align: center;
    text-decoration: none #6B7280 solid;
    text-decoration-thickness: auto;
    transition-duration: .2s;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
}

.buynow-button:hover {
    background-color: var(--primary-color);
}

.buynow-button:focus {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .buynow-button {
        padding: .75rem 1.5rem;
    }
}

.buynow-button i {
    padding-right: 5px;
}





/* Colocation css */
/* Colocation Packages Section - Modern Redesign */
.colocation-packages-section {
    padding: 50px 0px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #f1f2f6);
    overflow: hidden;
}

/* Decorative elements */
.colocation-packages-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(145, 10, 103, 0.05);
    z-index: 0;
}

.colocation-packages-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 108, 44, 0.05);
    z-index: 0;
}

/* Section heading */
.colocation-packages-section .colocation-packages-heading {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-bottom: 1rem;
}

.colocation-packages-section .colocation-packages-heading h2 {
    color: var(--dark-purple-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.colocation-packages-section .colocation-packages-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--dark-purple-color), var(--light-purple-color));
    border-radius: 2px;
}

.colocation-packages-section .colocation-packages-heading p {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
}

/* Card container */
.colocation-packages-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px !important;
}

.colocation-packages-section .row {
    margin: 0 -12px;
}

.colocation-packages-section .col-xl-3 {
    padding: 12px;
}

/* Package card redesign */
.colocation-packages-section .package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background-color: white;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(60, 7, 83, 0.08);
}

.colocation-packages-section .package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(60, 7, 83, 0.15);
}

.colocation-packages-section .package-card_bg {
    height: 80px;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-purple-color), var(--light-purple-color));
    position: relative;
    transform: none;
    border-radius: 0;
    z-index: 1;
}

/* Card content */
.colocation-packages-section .package-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
    background: white;
    margin-top: -40px;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.colocation-packages-section .package-card:hover .package-card-content {
    background: var(--dark-purple-color);
    color: white;
}

/* Card title */
.colocation-packages-section .package-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark-purple-color);
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
    transition: all 0.4s ease;
}

.colocation-packages-section .package-card:hover .package-card-content h3 {
    color: white;
}

.colocation-packages-section .package-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--yellow-color);
    border-radius: 2px;
}

/* Check list items */
.colocation-packages-section .package-card-content p {
    margin: 0;
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    font-size: 0.95rem;
}

.colocation-packages-section .package-card-content i {
    color: var(--yellow-color);
    padding-right: 12px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.colocation-packages-section .package-card:hover .package-card-content i {
    color: var(--yellow-color);
}

/* Button styling */
.colocation-packages-section .button-43 {
    background: linear-gradient(135deg, var(--yellow-color), #FF8A50);
    border-radius: 8px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-size: 0.95rem;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    padding: 0.85rem 1.25rem;
    text-decoration: none;
    width: 100%;
    border: 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 108, 44, 0.2);
    margin-top: auto;
}

.colocation-packages-section .button-43:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 108, 44, 0.3);
    background: linear-gradient(135deg, #FF8A50, var(--yellow-color));
}

.colocation-packages-section .button-43::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    top: -80px;
    left: -100px;
    transition: all 0.6s ease;
}

.colocation-packages-section .button-43:hover::after {
    left: 120%;
}

/* Add card counter badge */
.colocation-packages-section .package-card::before {
    content: '';
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    border-radius: 0 0 60px 0;
    background: var(--yellow-color);
    transition: all 0.4s ease;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.colocation-packages-section .col-xl-3:nth-child(1) .package-card::after {
    content: '1U';
    position: absolute;
    top: 5px;
    left: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 4;
}

.colocation-packages-section .col-xl-3:nth-child(2) .package-card::after {
    content: '1/4';
    position: absolute;
    top: 5px;
    left: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 4;
}

.colocation-packages-section .col-xl-3:nth-child(3) .package-card::after {
    content: '1/2';
    position: absolute;
    top: 5px;
    left: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 4;
}

.colocation-packages-section .col-xl-3:nth-child(4) .package-card::after {
    content: 'Full';
    position: absolute;
    top: 5px;
    left: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 4;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .colocation-packages-section .row {
        justify-content: center;
    }
    
    .colocation-packages-section .col-xl-3 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .colocation-packages-section {
        padding: 3rem 0 2rem;
    }
    
    .colocation-packages-section .colocation-packages-heading h2 {
        font-size: 1.8rem;
    }
    
    .colocation-packages-section .colocation-packages-heading p {
        font-size: 1rem;
    }
    
    .colocation-packages-section .package-card-content h3 {
        font-size: 1.2rem;
    }
    
    .colocation-packages-section .package-card-content p {
        font-size: 0.9rem;
    }
}

/* Add staggered card animation */
@keyframes cardFloat {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.colocation-packages-section .package-card {
    opacity: 0;
    animation: cardFloat 0.5s ease forwards;
}

.colocation-packages-section .col-xl-3:nth-child(1) .package-card { animation-delay: 0.1s; }
.colocation-packages-section .col-xl-3:nth-child(2) .package-card { animation-delay: 0.2s; }
.colocation-packages-section .col-xl-3:nth-child(3) .package-card { animation-delay: 0.3s; }
.colocation-packages-section .col-xl-3:nth-child(4) .package-card { animation-delay: 0.4s; }





/* Colocation Advantage Section - Modern Redesign */
.colocation-advantage-section {
    background-color: var(--dark-purple-color);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Add decorative elements */
.colocation-advantage-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 108, 44, 0.1), rgba(255, 108, 44, 0.05));
    z-index: 0;
}

.colocation-advantage-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(145, 10, 103, 0.1), rgba(114, 4, 85, 0.05));
    z-index: 0;
}

/* Layout container */
.colocation-advantage-section .d-flex {
    position: relative;
    z-index: 1;
}

/* Content area */
.colocation-advantage-section .advantage-content {
    color: white;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Heading style */
.colocation-advantage-section h2 {
    margin-bottom: 1.5rem;
    color: #ffac87;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.2;
}

.colocation-advantage-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #FF6C2C, rgba(255, 108, 44, 0.7));
    border-radius: 2px;
}

/* Advantages paragraph styling */
.colocation-advantage-section p {
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.colocation-advantage-section p:last-child {
    margin-bottom: 0;
}

.colocation-advantage-section p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--yellow-color);
}

/* Bold text highlighting */
.colocation-advantage-section .advantage-content p span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffac87;
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* Image container */
.colocation-advantage-section .advantage-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin: 0 2rem;
    max-width: 45%;
    flex-shrink: 0;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.colocation-advantage-section .advantage-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Image styling */
.colocation-advantage-section .advantage-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

.colocation-advantage-section .advantage-image:hover img {
    transform: scale(1.05);
}

/* Custom container width */
.colocation-advantage-section .container {
    max-width: 1400px;
}

/* Add animated gradient border to image */
.colocation-advantage-section .advantage-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    z-index: -1;
    background: linear-gradient(90deg, #720455, #910A67, #FF6C2C, #720455);
    background-size: 300% 100%;
    border-radius: 14px;
    animation: borderAnimation 6s infinite alternate;
}

@keyframes borderAnimation {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .colocation-advantage-section .advantage-content {
        padding: 2rem 1.5rem;
    }
    
    .colocation-advantage-section .advantage-image {
        margin: 0 1.5rem;
    }
}

@media (max-width: 1055px) {
    .colocation-advantage-section {
        padding: 3rem 0;
    }
    
    .colocation-advantage-section .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .colocation-advantage-section .advantage-content {
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .colocation-advantage-section h2 {
        font-size: 2rem !important;
        text-align: center;
    }
    
    .colocation-advantage-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .colocation-advantage-section .advantage-image {
        max-width: 85%;
        margin: 0 auto 2rem;
        transform: none;
    }
}

@media (max-width: 767px) {
    .colocation-advantage-section {
        padding: 2.5rem 0;
    }
    
    .colocation-advantage-section .advantage-content {
        padding: 1.5rem 1rem;
    }
    
    .colocation-advantage-section h2 {
        font-size: 1.75rem !important;
    }
    
    .colocation-advantage-section .advantage-image {
        max-width: 100%;
    }
    
    .colocation-advantage-section p {
        font-size: 0.95rem;
    }
    
    .colocation-advantage-section .advantage-content p span {
        font-size: 1rem;
    }
}

/* Add staggered fade-in animation for paragraphs */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.colocation-advantage-section p {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.colocation-advantage-section p:nth-child(1) { animation-delay: 0.2s; }
.colocation-advantage-section p:nth-child(2) { animation-delay: 0.4s; }
.colocation-advantage-section p:nth-child(3) { animation-delay: 0.6s; }
.colocation-advantage-section p:nth-child(4) { animation-delay: 0.8s; }






.description-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.description-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: rgba(60, 7, 83, 0.05);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.description-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: rgba(114, 4, 85, 0.04);
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    z-index: 0;
}

.description-section .container {
    max-width: 1640px !important;
    position: relative;
    z-index: 1;
}

.description-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--dark-purple-color);
}

.description-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--yellow-color);
    border-radius: 2px;
}

.description-section h3 {
    font-size: 20px;
    color: var(--light-purple-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.description-section p {
    font-size: 16px;
    color: black;
    max-width: 90%;
}

.description-section i {
    font-size: 28px;
    color: var(--yellow-color);
    transition: transform 0.3s ease;
}

/* Additional decorative elements for visual interest */
.description-section .container::before {
    content: "";
    position: absolute;
    right: -40px;
    top: 30%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(145, 10, 103, 0.03);
    z-index: -1;
}

.description-section .container::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: 10%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(234, 150, 17, 0.04);
    z-index: -1;
}


/* Card-like styling for the arrow section */
.description-section .description-details-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Additional decorative elements for visual interest */
.description-section .container::before {
    content: "";
    position: absolute;
    right: -40px;
    top: 30%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(145, 10, 103, 0.03);
    z-index: -1;
}

.description-section .container::after {
    content: "";
    position: absolute;
    left: -60px;
    bottom: 10%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(234, 150, 17, 0.04);
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .description-section h2 {
        font-size: 2rem;
    }
    
    .description-section h3 {
        font-size: 1.5rem;
    }
    
    .description-section p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .description-section .description-details-section {
        padding: 20px;
    }
}







/* Custom Card Styles */
/* Corporate Color Variables */
:root {
    --primary-purple: #3C0753;
    --secondary-purple: #720455;
    --tertiary-purple: #910A67;
    --accent-gold: #EA9611;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --white: #ffffff;
    --shadow-color: rgba(60, 7, 83, 0.15);
}

/* Base Section Styling */
.colocation-feacture-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.colocation-feacture-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3C0753, #910A67);
}

.colocation-feacture-section .container {
    max-width: 1700px !important;
    position: relative;
    z-index: 1;
}

/* Section Title */
.colocation-feacture-section h2 {
    font-weight: 700;
    color: #3C0753;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.colocation-feacture-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #EA9611;
}

/* Icon Styling */
.colocation-feacture-section i {
    background: linear-gradient(45deg, #3C0753, #910A67);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 60px;
    margin-bottom: 1.5rem;
}

/* Modern Card Styling */
.colocation-feacture-section .card-modern {
    border: none;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(60, 7, 83, 0.15);
    transition: all 0.3s ease-in-out;
    height: 100%;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.colocation-feacture-section .card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(60, 7, 83, 0.15);
    border-top: 4px solid #EA9611;
}

.colocation-feacture-section .card-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Card Title */
.colocation-feacture-section .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #720455;
    margin-bottom: 1.25rem;
    position: relative;
}

.colocation-feacture-section .card-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #EA9611;
    margin: 12px auto 0;
}

/* Card Text */
.colocation-feacture-section .card-text {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.7;
    text-align: center;
}

/* Row Spacing */
.colocation-feacture-section .row {
    margin-left: -1rem;
    margin-right: -1rem;
}

.colocation-feacture-section [class*="col-"] {
    padding: 1rem;
}

/* Media Queries for Responsive */
@media (max-width: 767px) {
    .colocation-feacture-section {
        padding: 2rem 0;
    }
    
    .colocation-feacture-section .card-body {
        padding: 1.5rem;
    }

    .colocation-feacture-section .card-title {
        font-size: 1.125rem;
    }

    .colocation-feacture-section .card-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .colocation-feacture-section i {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .colocation-feacture-section .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .colocation-feacture-section h2 {
        font-size: 1.75rem;
    }
}

/* Add subtle grid pattern to background for corporate feel */
.colocation-feacture-section {
    background-image: linear-gradient(rgba(248, 249, 250, 0.97) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(248, 249, 250, 0.97) 1px, transparent 1px);
    background-size: 25px 25px;
    background-position: center center;
}



/* Popup Container */
.g-popup-modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999; /* Increased z-index to ensure it's above everything */
    justify-content: center;
    align-items: center;
}

.g-popup-modal-container.active,
.g-popup-modal-container[style*="display: block"] {
    display: flex !important; /* Force display as flex when active or display:block is set */
    opacity: 1;
}


/* Modal Content */
.g-popup-modal {
    background: white;
    width: 95%;
    max-width: 800px;
    border-radius: 16px;
    border-bottom-right-radius: 0;
    box-shadow: 0 20px 40px rgba(60, 7, 83, 0.2);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    position: relative; /* Ensure positioning context */
    margin: auto; /* Center horizontally */
    transform: none; /* Remove transform that might cause issues */
}

.g-popup-modal-container.active .g-popup-modal {
    transform: translateY(0);
}

/* Modal Header - Fixed */
.g-popup-modal-header {
    padding: 15px 24px;
    background: linear-gradient(135deg, var(--dark-purple-color), var(--light-purple-color));
    color: white;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.g-popup-modal-header-title {
    font-size: 1.1rem;
    /* Reduced font size */
    font-weight: 600;
}

.pop-up-close-btn {
    cursor: pointer;
    padding: 6px;
    font-size: 1.1rem;
    color: white;
    transition: transform 0.2s ease;
}

/* Modal Body - Scrollable */
.g-popup-modal-body {
    padding: 28px 32px;
    overflow-y: auto;
    flex: 1;
    background: white; /* Ensure background is visible */
}

.g-popup-modal-para {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
    /* Reduced font size */
}

/* Form Styling - Compact */
.g-popup-modal-body-form-label {
    font-weight: 500;
    color: var(--dark-purple-color);
    margin-bottom: 4px;
    /* Reduced margin */
    display: block;
    font-size: 0.9rem;
}

.g-popup-modal-body-form-input,
.g-popup-modal-body-form-select {
    width: 100%;
    padding: 8px 12px;
    /* Reduced padding */
    border: 1px solid rgba(60, 7, 83, 0.2);
    border-radius: 8px;
    transition: border-color 0.2s ease;
    font-size: 0.9rem;
}

.g-popup-modal-body-form-eachinputs-main-div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    /* Reduced gap */
    margin-bottom: 15px;
    /* Reduced margin */
}

/* Compact spacing for form containers */
.g-popup-modal-body-form-eachinputs-container {
    margin-bottom: 10px;
}

/* Submit Button - Adjusted size */
.g-popup-modal-submit-btn {
    background: var(--yellow-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

/* Checkbox area - Compact */
.g-popup-modal-body-form-options-div {
    margin-top: 15px;
    margin-bottom: 15px;
}

.g-popup-modal-body-form-eachinputs-container-footer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.g-popup-modal-body-form-eachinputs-container-footer p {
    font-size: 0.85rem;
    margin: 0;
}

/* Scrollbar Styling */
.g-popup-modal-body::-webkit-scrollbar {
    width: 6px;
}

.g-popup-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.g-popup-modal-body::-webkit-scrollbar-thumb {
    background: var(--light-purple-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .g-popup-modal {
        width: 95%;
        margin: 10px;
        max-height: 85vh;
    }

    .g-popup-modal-header-title {
        font-size: 1rem;
    }

    .g-popup-modal-body {
        padding: 15px;
    }
}

/* Textarea specific styling */
textarea.g-popup-modal-body-form-input {
    min-height: 80px;
    /* Reduced height */
    resize: vertical;
}










/* contact us css */
.contact-us-body-section {
    padding: 60px 0px;
}

.contact-us-body-section .container {
    max-width: 1500px !important;
}

.contact-us-body-section .contact-form-section {
    padding: 50px;
    background-color: #F2F2F5;
}

.contact-us-body-section .contact-form-section .form-group {
    margin-bottom: 30px;
}

.contact-us-body-section .contact-form-section .form-control {
    font-size: 16px;
    padding: 10px;
    border-radius: 0;
    border: none;
    outline: none;
}

.contact-us-body-section .contact-form-section .form-control:focus {
    border: none;
    outline: none;
}

.contact-us-body-section .contact-form-section .form-control::placeholder {
    color: black;
    opacity: 1;
}

.contact-us-body-section .contact-form-section .form-control:focus {
    border: none;
}

.contact-us-body-section .contact-form-section .form-control:focus::placeholder {
    color: lightgray;
}

.contact-us-body-section .contact-form-section textarea {
    resize: none;
}


.send-me-button {
    appearance: none;
    background-color: var(--yellow-color);
    border: 2px solid var(--yellow-color);
    border-radius: 15px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 16px 8px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    will-change: transform;
    margin-top: 30px !important;
}

.send-me-button:disabled {
    pointer-events: none;
}

.send-me-button:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.send-me-button:active {
    box-shadow: none;
    transform: translateY(0);
}

.contact-us-body-section .contact-deatils-section {
    margin: auto;
}

.contact-us-body-section .contact-details-section .contact-image {
    align-self: center;
    width: 500px;
    display: flex;
    margin-bottom: 20px;
}

.contact-us-body-section .contact-details-section .contact-image img {
    align-self: center;
    width: 500px;
    display: flex;
    margin-bottom: 20px;
}

.contact-us-body-section .contact-details-section h2 {
    color: var(--yellow-color);
}

.contact-us-body-section .contact-details-section i {
    font-size: 30px;
    color: var(--pink-color);
}

.contact-us-body-section .contact-details-component {
    border-left: 3px solid var(--yellow-color);
    padding: 10px 30px;
}

.contact-us-body-section .contact-details-section {
    padding: 0px 60px;
}

.contact-details-section .container {
    justify-content: space-between;
    align-items: center;
}

/* Existing CSS remains the same */

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) {
    .contact-us-body-section .contact-details-section {
        padding: 0px 30px;
        margin-top: 40px;
    }

    .contact-us-body-section .contact-form-section {
        padding: 30px;
    }

    .contact-details-component {
        padding: 10px 15px !important;
    }

    .contact-us-body-section .contact-details-component p {
        font-size: 16px !important;
    }
}

/* Small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .contact-us-body-section .contact-image {
        display: none !important;
    }

    .contact-us-body-section .contact-details-section {
        padding: 0px 15px;
    }

    .contact-us-body-section .contact-form-section {
        padding: 20px;
    }

    .contact-details-component {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .contact-us-body-section .contact-details-component i {
        font-size: 24px;
    }

    .send-me-button {
        min-height: 50px;
        font-size: 14px;
        margin-top: 20px !important;
    }

    .contact-us-body-section .contact-details-section h2 {
        font-size: 24px;
    }

    .contact-us-body-section .contact-details-section p {
        font-size: 14px;
    }

    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left;
    }
}




/* OTP Modal */
.otp-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease-in-out;
}

.otp-modal-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center it using transform */
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

/* Heading */
.modal-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

/* OTP Input */
.otp-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: border 0.3s;
}

.otp-input:focus {
    border-color: var(--dark-purple-color);
    outline: none;
}

/* Buttons */
.btn-verify {
    background-color: var(--yellow-color);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-verify:hover {
    background-color: #ff9c00;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 30px;
    color: #888;
    cursor: pointer;
}

.close-btn:hover {
    color: #333;
}

/* Fade In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



.gpu-advantage-section .container {
    justify-content: center;
    gap: 90px;
    margin: 0px auto;
}

.gpu-advantage-section .container h2 {
    margin-bottom: 30px;
}

.gpu-advantage-section img {
    width: 350px;
    height: auto;
}

.gpu-advantage-section .container i {
    padding-right: 30px;
    font-size: 20px;
    animation: slideArrow 1.5s infinite;
}

@keyframes slideArrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0);
    }
}




/* GPU solutions section - Modern redesign */
.gpu-solutions-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #f1f2f6);
    position: relative;
    overflow: hidden;
}

.gpu-solutions-section .container{
    max-width: 1600px;
}

/* Decorative elements */
.gpu-solutions-section::before {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(145, 10, 103, 0.05);
    z-index: 0;
}

.gpu-solutions-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 108, 44, 0.05);
    z-index: 0;
}

.gpu-solutions-section .section-title {
    color: #3C0753;
    font-weight: 700;
    position: relative;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    padding-bottom: 1rem;
}

.gpu-solutions-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #720455, #910A67);
    border-radius: 2px;
}

/* Feature card redesign */
.gpu-solutions-section .gpu-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(60, 7, 83, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    height: 100%;
}

.gpu-solutions-section .row > div {
    margin-bottom: 1.5rem;
}

.gpu-solutions-section .active {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(60, 7, 83, 0.1);
    border-left: 4px solid #910A67;
}

/* Icon redesign */
.gpu-solutions-section .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(114, 4, 85, 0.1), rgba(145, 10, 103, 0.15));
    border-radius: 12px;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.gpu-solutions-section .active .feature-icon {
    background: linear-gradient(135deg, #720455, #910A67);
}

.gpu-solutions-section .feature-icon i {
    color: #910A67;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.gpu-solutions-section .active .feature-icon i {
    color: white;
}

/* Content styling */
.gpu-solutions-section .feature-content {
    flex-grow: 1;
}

.gpu-solutions-section .feature-title {
    color: #3C0753;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.15rem;
}

.gpu-solutions-section .feature-description {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .gpu-solutions-section {
        padding: 3rem 0;
    }
    
    .gpu-solutions-section .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .gpu-solutions-section .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .gpu-solutions-section .section-title {
        font-size: 1.8rem;
    }
}

/* Add staggered animation effect */
@keyframes featureAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gpu-solutions-section .gpu-feature {
    opacity: 0;
    animation: featureAppear 0.5s ease forwards;
}

.gpu-solutions-section .row > div:nth-child(1) .gpu-feature { animation-delay: 0.1s; }
.gpu-solutions-section .row > div:nth-child(2) .gpu-feature { animation-delay: 0.2s; }
.gpu-solutions-section .row > div:nth-child(3) .gpu-feature { animation-delay: 0.3s; }
.gpu-solutions-section .row > div:nth-child(4) .gpu-feature { animation-delay: 0.4s; }
.gpu-solutions-section .row > div:nth-child(5) .gpu-feature { animation-delay: 0.5s; }
.gpu-solutions-section .row > div:nth-child(6) .gpu-feature { animation-delay: 0.6s; }
.gpu-solutions-section .row > div:nth-child(7) .gpu-feature { animation-delay: 0.7s; }
.gpu-solutions-section .row > div:nth-child(8) .gpu-feature { animation-delay: 0.8s; }








/* Main styles for GPU server section */
.gpu-definition-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(60, 7, 83, 0.1);
  overflow: hidden;
  position: relative;
}

.gpu-definition-section .container{
  max-width: 1500px;
}

.gpu-definition-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 108, 44, 0.1) 0%, rgba(255, 108, 44, 0) 70%);
  z-index: 0;
}

.gpu-definition-section .gpu-definition {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .gpu-definition-section .gpu-definition {
    flex-direction: row;
    align-items: center;
  }
  
  .gpu-definition-section .gpu-definition-heading-section {
    flex: 1;
    padding-right: 2rem;
  }
  
  .gpu-definition-section .gpu-definition-image-section {
    flex: 0 0 40%;
  }
}

/* Typography styles */
.gpu-definition-section .gpu-definition-heading {
  color: #3C0753;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.gpu-definition-section .gpu-definition-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #720455 0%, #910A67 100%);
  border-radius: 4px;
}

.gpu-definition-section .gpu-definition-subheading {
    color: #720455 !important;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0rem !important;
    letter-spacing: 0.5px;
    border: none !important;
    padding-left: 0 !important;
}

.gpu-definition-section .gpu-definition-heading-section p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 30px;
  border-left: 3px solid rgba(145, 10, 103, 0.2);
}

/* Image section styles */
.gpu-definition-section .gpu-definition-image-section {
  position: relative;
}

.gpu-definition-section .gpu-definition-image-section img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 25px rgba(114, 4, 85, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gpu-definition-section .gpu-definition-image-section::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px dashed #FF6C2C;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
}

.gpu-definition-section .gpu-definition-image-section:hover img {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(114, 4, 85, 0.2);
}

/* Add a call-to-action button */
.gpu-definition-section .gpu-definition-heading-section {
  position: relative;
}

.gpu-definition-section .gpu-btn {
  display: inline-block;
  background: linear-gradient(90deg, #910A67 0%, #FF6C2C 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.gpu-definition-section .gpu-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(145, 10, 103, 0.2);
  color: white;
}

/* Add a pulsing dot for visual interest */
.gpu-definition-section .pulse-dot {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  background-color: #FF6C2C;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255, 108, 44, 0.4);
  animation: pulse 2s infinite;
}

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








/* Main section styling with subtle gradient background */
.optimization-section {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.optimization-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,108,44,0.05) 0%, rgba(255,108,44,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.optimization-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(60,7,83,0.03) 0%, rgba(60,7,83,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.optimization-section .container {
  max-width: 1600px;
  position: relative;
  z-index: 1;
}

/* Main title styling with animated underline */
.optimization-section .main-title {
  color: #3C0753;
  font-weight: 800;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
}

.optimization-section .main-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3C0753, #FF6C2C);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.optimization-section:hover .main-title::after {
  width: 120px;
}

/* Hexagon layout for GPU solutions */
.optimization-section .opt-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 3.5rem;
  position: relative;
  border-radius: 0;
  border-left: none;
  transition: all 0.3s ease;
  height: calc(100% - 3.5rem);
  display: flex;
  flex-direction: column;
}

.optimization-section .opt-card::before {
  display: none;
}

.optimization-section .opt-number {
    width: fit-content;
    height: 100px;
    margin-bottom: 12px;
        z-index: 10;
}

.optimization-section .opt-number img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icon styling with hexagon shape */
.optimization-section .opt-image {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: absolute;
    bottom: 0;
    opacity: 0.1;
    z-index: 0;
}

.optimization-section .opt-card:hover .opt-image {
  transform: rotate(30deg) scale(1.1);
}

.optimization-section .opt-image img {
  width: 65%;
  height: 65%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.optimization-section .opt-card:hover .opt-image img {
  transform: rotate(-30deg);
}

/* Title styling with gradient text */
.optimization-section .opt-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0;
  background: linear-gradient(90deg, #3C0753, #910A67);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
    z-index: 10;
}

.optimization-section .opt-card:hover .opt-title {
  transform: translateX(8px);
}

/* Text styling with animated left border */
.optimization-section .opt-text {
  color: black;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  padding-left: 15px;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.optimization-section .opt-card:hover .opt-text {
  border-left: 2px solid #FF6C2C;
  padding-left: 20px;
}

/* Add subtle animated dot pattern in background */
.optimization-section .row {
  position: relative;
}

.optimization-section .row::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(145,10,103,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.optimization-section:hover .row::before {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .optimization-section .main-title {
    font-size: 2.2rem;
  }
  
  .optimization-section .opt-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .optimization-section {
    padding: 3rem 0;
  }
  
  .optimization-section .main-title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  
  .optimization-section .opt-title {
    font-size: 1.3rem;
  }
  
  .optimization-section .opt-card {
    margin-bottom: 2.5rem;
  }
  
  .optimization-section .opt-image {
    display: none;
  }
}





.knowledge-section {
    position: relative;
    background: linear-gradient(135deg, black 0%, var(--dark-purple-color) 100%);
    padding: 50px 0;
    background-image: url("/asset/images/knowledge-section-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.knowledge-section .container{
    max-width: 1500px
}

.knowledge-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust opacity for darkness */
    z-index: 1;
}

.knowledge-section * {
    position: relative;
    z-index: 2;
}

.knowledge-section .knowledge-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.knowledge-section .knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(234, 150, 17, 0.3);
}

.knowledge-section .domain-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    color: #fff;
    transform: rotate(15deg);
}

.knowledge-section .knowledge-title {
    color:#ffb798;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
    position: relative;
}

.knowledge-section .knowledge-title::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 50%;
    width: 1rem;
    height: 2px;
    background: var(--light-purple-color);
}

.knowledge-section .knowledge-text {
    color: white;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.knowledge-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    display: inline-block;
}

.knowledge-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--light-purple-color), var(--yellow-color));
}

.knowledge-section .title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .knowledge-section .knowledge-card {
        padding: 2rem;
    }

    .knowledge-section .knowledge-title::before {
        left: -2rem;
    }
}








.gpu-introduction-section {
    padding: 30px 0px;
}

.gpu-introduction-section h2 {
    margin-bottom: 20px;
}

.gpu-solution-section {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.gpu-solution-section h2 {
    color: white;
}

.gpu-solution-section .gpu-solution-card {
    background-color: white;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.gpu-solution-section .gpu-solution-card:hover {
    transform: translateY(-10px);
}

.gpu-solution-section .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0px;
}

.gpu-solution-section .container p {
    margin-top: 20px;
}

.gpu-solution-section .col {
    flex: 1;
}


/* datacenter css */
.datacenter-introduction-section {
    padding: 40px 0;
}

.datacenter-introduction-section .container {
    max-width: 1400px !important;
}

.datacenter-introduction-section .section-heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-purple-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.datacenter-introduction-section .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--yellow-color);
    border-radius: 2px;
}

.datacenter-introduction-section .section-text {
    color: #505965;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.datacenter-introduction-section .datacenter-quality-card {
    background: white;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--light-purple-color) 0%, var(--pink-color) 100%) border-box;
    border: 2px solid transparent;
    overflow: hidden;
}

.datacenter-introduction-section .datacenter-quality-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(60, 7, 83, 0.08);
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--yellow-color) 0%, var(--pink-color) 100%) border-box;
}

.datacenter-introduction-section .card-inner {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.datacenter-introduction-section .card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--light-purple-color), var(--pink-color));
    border-radius: 0 2px 2px 0;
}

.datacenter-introduction-section .card-icon {
    color: var(--yellow-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.datacenter-introduction-section .card-icon i {
    font-size: 50px;
}

.datacenter-introduction-section .datacenter-quality-card h3 {
    color: var(--dark-purple-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
}

.datacenter-introduction-section .datacenter-quality-card p {
    color: #505965;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 0.95rem;
    padding-left: 1rem;
}

/* Add subtle background accent */
.datacenter-introduction-section .datacenter-quality-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(234, 150, 17, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: 0;
}

@media (max-width: 991.98px) {
    .datacenter-introduction-section .section-heading h2 {
        font-size: 1.8rem;
    }

    .datacenter-introduction-section {
        padding: 30px 0;
    }
}

@media (max-width: 767.98px) {
    .datacenter-introduction-section .section-heading h2 {
        font-size: 1.6rem;
    }

    .datacenter-introduction-section .card-inner {
        padding: 1.2rem;
    }
}











.datacenter-feature-section {
    width: 100%;
    background: linear-gradient(135deg, var(--dark-purple-color), var(--light-purple-color));
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.datacenter-feature-section .datacenter-feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--pink-color), transparent);
    opacity: 0.4;
    pointer-events: none;
}

.datacenter-feature-section .datacenter-feature-title .line {
    height: 4px;
    width: 40px;
    background-color: var(--yellow-color);
    border-radius: 2px;
}

.datacenter-feature-section .datacenter-feature-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.datacenter-feature-section .feature-button-set {
    position: relative;
    padding: 20px 0;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.datacenter-feature-section .feature-button-set .button {
    display: inline-block;
    padding: 12px 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.datacenter-feature-section .feature-button-set .button:hover {
    color: var(--yellow-color);
}

.datacenter-feature-section .feature-button-set .button.active {
    color: var(--yellow-color);
    border-bottom: 2px solid var(--yellow-color);
}

.datacenter-feature-section .feature-content-set {
    margin-top: 40px;
    min-height: 150px;
}

.datacenter-feature-section .feature-content-set .content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.datacenter-feature-section .feature-content-set .content.active {
    display: block;
    opacity: 1;
}

.datacenter-feature-section .feature-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.datacenter-feature-section .feature-title h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--yellow-color);
    margin-bottom: 1rem;
    min-width: 200px;
}

.datacenter-feature-section .vertical-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--yellow-color), transparent);
    margin: 0 20px;
}

.datacenter-feature-section .feature-description p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 991.98px) {
    .datacenter-feature-section .feature-button-set {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .datacenter-feature-section .feature-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .datacenter-feature-section .vertical-line {
        width: 100px;
        height: 2px;
        margin: 10px 0;
    }

    .datacenter-feature-section .feature-title h3 {
        min-width: unset;
    }
}

@media (max-width: 767.98px) {
    .datacenter-feature-section .datacenter-feature-title h2 {
        font-size: 2rem;
    }

    .datacenter-feature-section .feature-button-set .button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}





.datacenter-speciality-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.datacenter-speciality-section .container {
    max-width: 1500px !important;
}

.datacenter-speciality-section .speciality-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}

.datacenter-speciality-section .card-content {
    padding: 20px;
    flex-grow: 1;
}

.datacenter-speciality-section .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top: 4px solid var(--yellow-color);
}

.datacenter-speciality-section .icon-wrapper {
    width: 55px;
    height: 55px;
    background: var(--dark-purple-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
    transition: 0.3s;
}

.datacenter-speciality-section .speciality-card:hover .icon-wrapper {
    background: var(--yellow-color);
}

.datacenter-speciality-section .speciality-card h3 {
    font-weight: 700;
    color: var(--dark-purple-color);
    margin-bottom: 10px;
}

.datacenter-speciality-section .speciality-card p {
    color: #505965;
    font-size: 0.95rem;
    line-height: 1.5;
}








.network-partners-section {
    padding: 60px 0px;
}

.network-partners-section .container {
    max-width: 1500px !important;
}

.network-partners-section .network-partners-section-title {
    font-weight: 700;
    margin-bottom: 50px;
}

.network-partners-section .card {
    position: relative;
    border: 1px solid var(--yellow-color);
    border-radius: 10px;
    padding: 50px 20px 20px 20px;
}

.network-partners-section .benefit-image {
    position: absolute;
    top: -35px;
    border: 1px solid var(--yellow-color);
    padding: 10px;
    background-color: #FFF6E8;
}

.network-partners-section .benefits-card-title {
    font-size: large;
    font-weight: 700;
}






.network-features-section {
    padding: 50px 0;
    background: white;
}

.network-features-section .container {
    max-width: 1500px !important;
}

.network-features-section .network-section-heading {
    margin-bottom: 3rem;
    position: relative;
}

.network-features-section .network-section-heading h2 {
    color: var(--dark-purple-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.network-features-section .network-section-heading p {
    color: var(--light-purple-color);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

.network-features-section .network-feature-card {
    background: #eae3ed;
    border-radius: 1rem;
        padding: 15px 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(60, 7, 83, 0.1);
}

.network-features-section .network-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(60, 7, 83, 0.1);
}

.network-features-section .network-feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.network-features-section .network-feature-card h3 {
    color: var(--dark-purple-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.network-features-section .network-feature-card p {
    color: var(--light-purple-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.85;
}

.network-features-section .network-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}





.need-solution-network-section {
    position: relative;
    background: url('/asset/images/dark-purple-bg.webp') no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
}

.need-solution-network-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Adjust the opacity as needed */
    z-index: 1;
}

.need-solution-network-section .container {
    position: relative;
    z-index: 2;
    /* Ensures the content appears above the overlay */
    max-width: 1500px !important;
}

.need-solution-network-section .container h2 {
    color: var(--yellow-color);
}

.need-solution-network-section .container button {
    align-items: center;
    background-color: var(--yellow-color);
    border: 0;
    border-radius: 100px;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 20px;
    min-width: 0px;
    overflow: hidden;
    padding: 15px 30px;
    text-align: center;
    touch-action: manipulation;
    transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    width: fit-content;
}

.need-solution-network-section .container button:hover,
.need-solution-network-section .container button:focus {
    background-color: #b36e00;
    color: #ffffff;
}

.need-solution-network-section .container button:active {
    background: #b36e00;
    color: rgb(255, 255, 255, .7);
}

.need-solution-network-section .container button:disabled {
    cursor: not-allowed;
    background: rgba(0, 0, 0, .08);
    color: rgba(0, 0, 0, .3);
}




/* about us css */
.our-vision-section {
    padding: 60px 0px;
}

.our-vision-section .container {
    max-width: 1500px !important;
}

.our-vision-section .our-vision-heading .sideline {
    width: 20px;
    background-color: var(--yellow-color);
}

.our-vision-section .our-vision-heading .about-heading-image {
    border-radius: 10px;
    margin: 20px;
    width: 100%;
}

.our-vision-section .our-vision-content {
    margin: 20px 40px;
    padding: 0px 20px;
}

@media (max-width: 1200px) {
    .our-vision-section .our-vision-heading .hero-title {
        font-size: 28px;
    }

    .our-vision-section .count-section {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center !important;
    }

    .our-vision-section .count {
        width: 45%;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .our-vision-section .our-vision-heading {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .our-vision-section .our-vision-heading>div {
        width: 100% !important;
    }

    .our-vision-section .about-heading-image {
        margin: 10px !important;
    }

    .our-vision-section .our-vision-content {
        margin: 15px !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .our-vision-section .our-vision-description>div {
        flex-direction: column !important;
    }

    .our-vision-section .our-vision-description>div>div {
        width: 100% !important;
    }

    .our-vision-section .our-vision-heading .d-flex.flex-row.gap-3 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .our-vision-section .about-heading-image {
        width: 45%;
        margin: 5px !important;
    }

    .our-vision-section .hero-title {
        font-size: 24px !important;
    }
}

@media (max-width: 576px) {
    .our-vision-section {
        padding: 40px 0;
    }

    .our-vision-section .count {
        width: 100%;
    }

    .our-vision-section .about-heading-image {
        width: 100%;
        margin: 10px 0 !important;
    }

    .our-vision-section .our-story {
        font-size: 14px;
    }

    .our-vision-section .hero-title {
        font-size: 20px !important;
    }

    .our-vision-section .our-vision-content p {
        font-size: 14px;
    }

    .our-vision-section .count p:first-child {
        font-size: 24px !important;
    }

    .our-vision-section .sideline {
        width: 15px !important;
    }
}

/* Additional Mobile Optimizations */
.about-heading-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.our-vision-heading .d-flex.flex-row.gap-3 {
    justify-content: flex-start;
}







.our-mision-section {
    padding: clamp(20px, 4vw, 80px) 0;
    position: relative;
    background-color: var(--dark-purple-color);
    color: white;
    overflow: hidden;
}

/* Hero Content */
.our-mision-section .hero-content {
    max-width: min(600px, 100%);
    margin: 0 auto;
}

.our-story {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: clamp(15px, 2vw, 20px);
}

.hero-title {
    font-size: clamp(24px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(20px, 3vw, 30px);
}

.hero-description {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.6;
    margin-bottom: clamp(30px, 4vw, 40px);
    opacity: 0.9;
}

/* Timeline Styles */
.our-mision-section .timeline {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.timeline-line {
    position: absolute;
    top: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--yellow-color);
}

.timeline-points {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 300px;
    gap: clamp(10px, 3vw, 30px);
    padding: 0 20px;
}

.point-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.timeline-point {
    width: clamp(10px, 2vw, 16px);
    height: clamp(10px, 2vw, 16px);
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--yellow-color);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.timeline-point.active {
    background-color: var(--yellow-color);
    transform: scale(1.2);
}

.timeline-date {
    color: white;
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

.timeline-content {
    color: white;
    font-size: clamp(10px, 1.2vw, 14px);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 150px;
    word-wrap: break-word;
}

.timeline-content.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .timeline-points {
        gap: clamp(10px, 2vw, 20px);
    }
}

@media (max-width: 992px) {
    .timeline-points {
        gap: clamp(8px, 1.5vw, 15px);
    }

    .timeline-content {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .timeline {
        padding-bottom: 60px;
    }

    .timeline-points {
        gap: clamp(5px, 1vw, 10px);
        min-width: 400px;
    }

    .timeline-point {
        width: clamp(8px, 1.5vw, 12px);
        height: clamp(8px, 1.5vw, 12px);
    }

    .timeline-date,
    .timeline-content {
        font-size: 10px;
        max-width: 100px;
    }

    .timeline-line {
        top: 12px;
    }
}

@media (max-width: 576px) {
    .timeline {
        padding-bottom: 40px;
    }

    .timeline-points {
        min-width: 300px;
        gap: 10px;
    }

    .point-wrapper {
        width: 50px;
        /* Compact width for mobile */
    }

    .timeline-point {
        width: 8px;
        height: 8px;
    }

    .timeline-date {
        font-size: 9px;
        margin-bottom: 5px;
    }

    .timeline-content {
        font-size: 9px;
        max-width: 80px;
        display: none;
        /* Hide content by default */
    }

    /* Show content for active point */
    .point-wrapper.active .timeline-content {
        display: block;
        position: static;
        transform: none;
        width: 100%;
        text-align: center;
        margin-top: 5px;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 400px) {
    .timeline-points {
        min-width: 250px;
        gap: 5px;
    }

    .point-wrapper {
        width: 40px;
    }

    .timeline-point {
        width: 6px;
        height: 6px;
    }

    .timeline-date,
    .timeline-content {
        font-size: 8px;
    }
}

/* Horizontal Scroll Indicators */
.timeline {
    position: relative;
}

.timeline::before,
.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 1;
}

.timeline::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-purple-color) 0%, transparent 100%);
}

.timeline::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-purple-color) 0%, transparent 100%);
}

/* Touch Device Scroll Hints */
@media (hover: none) {
    .timeline {
        cursor: grab;
        scrollbar-width: thin;
        scrollbar-color: var(--yellow-color) rgba(255, 255, 255, 0.1);
    }

    .timeline::-webkit-scrollbar {
        height: 4px;
    }

    .timeline::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }

    .timeline::-webkit-scrollbar-thumb {
        background: var(--yellow-color);
        border-radius: 2px;
    }
}

/* Featured Image */
.featured-image {
    position: relative;
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Media Queries */
@media (min-width: 993px) {
    .our-mision-section .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .featured-image {
        margin-top: 0;
    }
}

@media (max-width: 992px) {
    .our-mision-section .container {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    /* .timeline {
        margin: 0 -20px;
        padding: 0 20px 80px;
    } */

    /* .timeline-points {
        min-width: 600px;
    } */
}

@media (max-width: 576px) {
    /* .timeline-points {
        min-width: 500px;
    }

    .point-wrapper {
        min-width: 80px;
    }

    .timeline-content {
        width: 100px;
        font-size: 11px;
    }

    .timeline-content br {
        display: none;
    } */
}

/* Touch Device Optimizations */
@media (hover: none) {
    /* .timeline {
        cursor: grab;
    }

    .timeline:active {
        cursor: grabbing;
    } */
}











.portfolio-section .container{
    max-width: 1600px;
}

.portfolio-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-section .section-title h2 {
    color: var(--yellow-color);
}

.portfolio-section .feature-card {
    background: white;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: black;
}

.portfolio-section .active {
    background-color: var(--yellow-color);
    transform: translateY(-10px);
    color: white;
}

.portfolio-section .active i,
.portfolio-section .active .feature-title,
.portfolio-section .active .feature-description {
    color: white;
}

.portfolio-section .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.portfolio-section .feature-icon i {
    font-size: 50px;
}


.portfolio-section .feature-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-section .feature-description {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.portfolio-section .white-bg {
    color: black;
}

.portfolio-section .arrow-icon {
    font-size: 20px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

@media (max-width: 768px) {
    .portfolio-section .feature-card {
        min-height: 200px;
    }
}

/* privacy policy css */
.privacy-policy-body {
    padding: 60px 0px;
}

.privacy-policy-body .privacy-section {
    padding-bottom: 30px;
}

.privacy-policy-body .container {
    max-width: 1600px !important;
}

.privacy-policy-body h2,
.privacy-policy-body h3 {
    font-weight: 700;
}

.privacy-policy-body i {
    padding-right: 10px;
    color: var(--yellow-color);
}

.privacy-policy-body span {
    font-weight: 600;
}

.terms-button {
    appearance: none;
    background-color: var(--dark-purple-color);
    border: 2px solid var(--dark-purple-color);
    border-radius: 15px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    /* font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; */
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    padding: 6px;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    will-change: transform;
}

.download {
    border: 2px solid var(--yellow-color);
    background-color: var(--yellow-color);
}

.terms-button:disabled {
    pointer-events: none;
}

.terms-button:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
    transform: translateY(-2px);
}

.terms-button:active {
    box-shadow: none;
    transform: translateY(0);
}

.privacy-policy-body .privacy-details-section .container {
    background-color: #FFF6E8;
    padding: 50px;
}

/* 404 page css */
.page-not-found-section {
    height: 700px;
    margin-top: 70px;
}

.page-not-found-section .image-text {
    color: #ff6451;
    font-size: 90px;
    font-weight: bolder;
    /* background: url('/asset/images/starry-background.jpg') no-repeat center;
    background-size: contain;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.back-to-home-btn {
    align-items: center;
    background-color: var(--yellow-color);
    border: 0;
    border-radius: 100px;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    /* font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif; */
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 20px;
    max-width: 480px;
    min-height: 40px;
    min-width: 0px;
    overflow: hidden;
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    touch-action: manipulation;
    transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
}

.back-to-home-btn:hover,
.back-to-home-btn:focus {
    background-color: #e38e07;
    color: #ffffff;
}

.back-to-home-btn:active {
    background: #09223b;
    color: rgb(255, 255, 255, .7);
}

.back-to-home-btn:disabled {
    cursor: not-allowed;
    background: rgba(0, 0, 0, .08);
    color: rgba(0, 0, 0, .3);
}

.pnf-image {
    width: 700px;
}









.site-map {
    max-width: 1500px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    padding: 2rem;
    margin-top: 80px;
}

.site-map a {
    text-decoration: none;
}

.site-map .header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-purple-color), var(--light-purple-color));
    border-radius: 15px;
    color: white;
}

.site-map .header h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.site-map .main-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.site-map .section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(60, 7, 83, 0.08);
    transition: transform 0.2s;
}

.site-map .section:hover {
    transform: translateY(-5px);
}

.site-map .section-title {
    color: var(--dark-purple-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-map .section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--yellow-color);
    border-radius: 2px;
}

.site-map .section-items {
    position: relative;
}

.site-map .section-item {
    padding: 10px;
    border-radius: 8px;
    color: #555;
    transition: all 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.site-map .section-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--pink-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.site-map .section-item:hover {
    background-color: rgba(60, 7, 83, 0.05);
    color: var(--dark-purple-color);
}

.site-map .sitemap-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(60, 7, 83, 0.1);
}

.site-map .sitemap-footer-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.site-map .sitemap-footer-item {
    color: #555;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.2s;
    background: rgba(60, 7, 83, 0.03);
}

.sitemap-footer-item:hover {
    background: var(--dark-purple-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .site-map .main-sections {
        grid-template-columns: 1fr;
    }

    .site-map .sitemap-footer-items {
        justify-content: center;
        text-align: center;
    }

    .site-map .site-map {
        padding: 1rem;
    }
}















.g-new-product-pricing-table-container {
    font-family: var(--table-sections-main-font-family);
    margin-bottom: 50px !important;
}

.g-new-product-pricing-table {
    caption-side: top;
}

.g-new-product-pricing-table-thead {
    background-color: var(--table-heading-primary-bgcolor);
    color: var(--table-thead-primary-color);
}

.g-new-product-pricing-table-thead:not(:first-child) {
    text-align: center !important;
}

.g-new-product-pricing-table-data:not(:first-child) {
    text-align: center !important;
}


.g-new-product-pricing-table-data-btn {
    background-color: var(--table-buy-button-bgcolor);
    color: var(--table-buy-button-color);
    font-weight: 600 !important;
    padding: 10px;
    font-size: 14px;
    border-radius: 3px;
}

.g-new-product-pricing-table-caption {
    background-color: var(--table-caption-bgcolor);
    color: var(--table-caption-color);
    scroll-margin-top: 150px;
}


.g-new-product-pricing-table-data:first-child {}

.g-new-product-pricing-table-wrapper-title {
    text-align: center;
    font-size: 30px !important;
    font-family: var(--table-sections-main-font-family) !important;
    margin-bottom: 30px;
}

.g-new-product-pricing-table-wrapper {

    margin-top: 50px !important;
}

.g-redirect-table-btns {
    background-color: var(--redirect-btn-bgcolor);
    color: var(--redirect-btn-color) !important;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
}

.g-redirect-table-btns-div {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}











.g-new-product-pricing-table-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}

/* Main Title Styles */
.g-new-product-pricing-table-wrapper-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    color: var(--dark-purple-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.g-new-product-pricing-table-wrapper-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-purple-color), var(--pink-color));
    border-radius: 2px;
}

/* Navigation Buttons Styles */
.g-redirect-table-btns-div {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.g-redirect-table-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--dark-purple-color);
    border: 2px solid var(--dark-purple-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-width: 120px;
}

.g-redirect-table-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--dark-purple-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.g-redirect-table-btn:hover:before {
    width: 100%;
}

.g-redirect-table-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.g-redirect-table-btn.active {
    background: var(--dark-purple-color);
    color: #fff;
}

/* Table Wrapper Styles */
.g-new-product-pricing-table-wrapper {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(60, 7, 83, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Caption Styles */
.g-new-product-pricing-table-caption {
    order: -1;
    margin: 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--dark-purple-color), var(--light-purple-color));
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.5px;
    border-radius: 16px 16px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

/* Table Styles */
.g-new-product-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    min-width: 800px;
    margin: 0;
    border: none;
}

/* Header Styles */
.g-new-product-pricing-table-thead {
    background: #1f012a;
}

.g-new-product-pricing-table-thead th {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(145, 10, 103, 0.1);
    text-align: left;
}

/* Table Body Styles */
.g-new-product-pricing-table-tbody-row {
    transition: all 0.3s ease;
}

.g-new-product-pricing-table-tbody-row:hover {
    background: rgba(60, 7, 83, 0.02);
}

.g-new-product-pricing-table-data {
    padding: 1.25rem 1.5rem;
    color: #333;
    border-bottom: 1px solid rgba(60, 7, 83, 0.08);
    transition: all 0.3s ease;
}

.g-new-product-pricing-table-data-span.price {
    display: inline;
    /* Change from block to inline */
    font-size: 20px;
    font-weight: 700;
    color: var(--light-purple-color);
    margin-right: 4px;
    /* Add space between price and /Mo. */
}

/* Processor Details Span */
.g-new-product-pricing-table-data-span {
    font-size: 18px;
    font-weight: 700;
    color: var(--light-purple-color);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.g-new-product-pricing-table-data .gpu {
    color: #016601;
    font-weight: 500;
}

/* Buy Button Styles */
.g-new-product-pricing-table-data-btn {
    padding: 0.75rem 1.5rem;
    background: var(--yellow-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.g-new-product-pricing-table-data-btn i {
    display: none;
}

.g-new-product-pricing-table-data-btn:hover {
    background: var(--pink-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 150, 17, 0.2);
}

/* Table Scroll Container */
.g-new-product-pricing-table-scroll {
    overflow-x: auto;
    border-radius: 0 0 16px 16px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .g-new-product-pricing-table {
        min-width: unset;
    }

    .g-new-product-pricing-table thead {
        display: none;
    }

    .g-new-product-pricing-table tbody,
    .g-new-product-pricing-table-tbody-row,
    .g-new-product-pricing-table-data {
        display: block;
    }

    .g-new-product-pricing-table-tbody-row {
        margin: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(60, 7, 83, 0.08);
        overflow: hidden;
        background: #fff;
    }

    .g-new-product-pricing-table-data {
        position: relative;
        padding: 1rem;
        text-align: center;
    }

    .g-new-product-pricing-table-data:has(.price) {
        white-space: nowrap;
        /* Prevent wrapping */
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 4px;
    }

    .g-new-product-pricing-table-data:before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        color: var(--dark-purple-color);
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .g-new-product-pricing-table-data:last-child {
        text-align: center;
        padding: 1rem;
        border-bottom: none;
    }

    /* Add labels for mobile view */
    /* .g-new-product-pricing-table-data:nth-of-type(1):before {
        content: "Processor:";
    }

    .g-new-product-pricing-table-data:nth-of-type(2):before {
        content: "RAM:";
    }

    .g-new-product-pricing-table-data:nth-of-type(3):before {
        content: "Storage:";
    }

    .g-new-product-pricing-table-data:nth-of-type(4):before {
        content: "Bandwidth:";
    }

    .g-new-product-pricing-table-data:nth-of-type(5):before {
        content: "GPU:";
    }


    .g-new-product-pricing-table-data:nth-of-type(6):before {
        content: "Price:";
    } */
}

@media screen and (max-width: 480px) {
    .g-new-product-pricing-table-container {
        padding: 10px;
    }

    .g-new-product-pricing-table-wrapper-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .g-new-product-pricing-table-caption {
        font-size: 1.25rem;
        padding: 1.25rem;
        text-align: center;
        width: 100%;
        border-radius: 16px 16px 0 0;
    }

    .g-new-product-pricing-table-wrapper {
        width: 100%;
        margin: 0;
    }

    .g-new-product-pricing-table-scroll {
        width: 100%;
    }

    .g-new-product-pricing-table-data {
        padding: 3rem 1rem 1rem;
        text-align: center;
    }

    .g-new-product-pricing-table-data:before {
        top: 1rem;
        left: 1rem;
        width: calc(100% - 2rem);
    }

    .g-redirect-table-btns-div {
        flex-direction: column;
        gap: 0.75rem;
    }

    .g-redirect-table-btn {
        width: 100%;
    }

    .g-new-product-pricing-table-tbody-row {
        margin: 0.75rem;
    }

    .g-new-product-pricing-table-data:has(.price) {
        justify-content: center;
        /* Center align on mobile */
        padding: 3rem 1rem 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.g-redirect-table-btns {
    color: white;
    background-color: var(--yellow-color);
    text-decoration: none;
}





.server-request-form-section {
    max-width: 1600px;
    margin: 0px auto;
    padding: 10px;
}
        
.server-request-form-section .form-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
}
        
.server-request-form-section .section-title {
    color: var(--dark-purple-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--pink-color);
}

.server-request-form-section .form-intro {
    background: linear-gradient(135deg, var(--dark-purple-color) 0%, var(--light-purple-color) 50%, var(--pink-color) 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
   margin-bottom: 30px;
}
        
.server-request-form-section .form-label {
    font-weight: 500;
      color: var(--light-purple-color);
    margin-bottom: 0.5rem;
}

.server-request-form-section .required-star {
    color: var(--yellow-color);
}

.server-request-form-section .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.server-request-form-section .form-control:focus {
    border-color: var(--pink-color);
    box-shadow: 0 0 0 0.2rem rgba(145, 10, 103, 0.1);
}

.server-request-form-section .submit-btn {
    background: var(--yellow-color);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.server-request-form-section .submit-btn:hover {
    background: #d88a0f;
    transform: translateY(-1px);
}

.server-request-form-section .section-divider {
    margin: 30px 0;
    border-top: 1px solid #eee;
}





.network-partners-section  {
            padding: 20px;
        }

.network-partners-section .container {
            max-width: 1500px;
        }
        
        .network-partners-section .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }
        
        .network-partners-section .partner-section-logos {
            width: 100%;
        }
        
        .network-partners-section .brand-logo {
            max-width: 100%;
            height: auto;
            transition: transform 0.3s ease;
            padding: 0;
        }
        
        .network-partners-section .brand-logo:hover {
            transform: scale(1.05);
            filter: grayscale(0%);
            opacity: 1;
        }
        
        .network-partners-section .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            height: 100px;
        }
        
        .network-partners-section .partner-section-logos-row{
            column-gap: 25px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 767px) {
            .network-partners-section .logo-container {
                height: 80px;
            }
        }
        
        @media (max-width: 576px) {
            .network-partners-section .network-partners-section {
                padding: 40px 0;
            }
        }
        
        
/*table-special-section*/
.g-cityBtnToggler{
    width: auto;
    margin-top: 13px;
    border: none;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 14px;
    color: #fff;
    border-radius: 20px;
    background: rgb(255,108,44);
    background: -moz-linear-gradient(93deg, rgba(114, 4, 85, 1) 0%, rgba(255,108,44, 1) 100%);
    background: -webkit-linear-gradient(93deg, rgba(114, 4, 85, 1) 0%, rgba(255,108,44, 1) 100%);
    background: linear-gradient(93deg, rgba(114, 4, 85, 1) 0%, rgba(255,108,44, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#830016",endColorstr="#d70024",GradientType=1);
}

.gLocation-Finder{
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 5px 16px !important;
    border-left: 3px solid #3C0753;
    outline:none;
    width:100%;
    position:relative;
    font-size: 16px !important;
}

.gLocation-Finder::placeholder{
    font-size: 14px !important;
    color: #ccc !important;
}

.NavigateBtnimgDiv{
    width: 30px;
    margin-right: 10px;
}

.filterwrap{
    max-width:1700px !important;
}
/*filtering*/


.g-side-panel-btn-container{
    background: #fbf8f8;
    padding: 20px 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #ccc;
    flex: 1 1 350px;
    height: fit-content;
    text-align:center;
}

.g-content-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.g-side-by-side-panel-container{
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
}

.g-sub-tbl-Navigate-Btn{
    background-color: #3C0753;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: justify;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size:14px;
}

#gspectablewrapper{
    width: 100%;
}


.g-sub-tbl-Navigate-Btn:hover{
    background-color: #000;
    transition:0.3s ease-in-out;
}

#gsubBtnGroupContainer{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gwidth100 > .g-new-product-pricing-table > .g-new-product-pricing-table-thead {
    color:#fff !important;
}

@media screen and (max-width:1400px) {
    .g-side-panel-btn-container {
        flex: 1 1 320px;
    }
}

@media screen and (max-width:1100px) {
    .g-side-by-side-panel-container {
        flex-wrap:wrap;
    }
    
    .g-side-panel-btn-container {
        flex: 1 auto !important;
    }
    
    .g-side-by-side-panel-container {
        flex-direction: column-reverse;
    
    }
    
    #gsubBtnGroupContainer{
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    #gsubBtnGroupContainer > .g-sub-tbl-Navigate-Btn{
        flex: 1 1 200px;
    }
}

.g-side-panel-btn-container-defr-div{
    flex: 1 1 auto !important;
}


.gsubBtnGroupContainerdef{
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px !important;
} 


.gsubBtnGroupContainerdef > .g-sub-tbl-Navigate-Btn{
    width: 100% !important;
} 
/*table-special-section*/

/*location-box-section*/
.location-box-section {
            padding: 4rem 2rem;
            background-color: #ffffff;
        }

        .location-box-section .container {
            max-width: 1500px;
            margin: 0 auto;
        }

        .location-box-section .intro {
            margin-bottom: 3rem;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .location-box-section .intro h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #3C0753, #910A67);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .location-box-section .intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff6c2c;
            border-radius: 2px;
        }

        .location-box-section .intro p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }

        .location-box-section .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 2rem;
        }

        .location-box-section .location-card {
            background: #3c07532e;
            border-radius: 12px;
            padding: 16px 22px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #f0f0f0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .location-box-section .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, #3C0753, #910A67);
            transition: height 0.3s ease;
        }

        .location-box-section .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(60, 7, 83, 0.15);
            border-color: rgba(145, 10, 103, 0.3);
        }

        .location-box-section .location-card:hover::before {
            height: 100%;
        }
        
        .location-box-section .location-card a{
            text-decoration: none
        }

        .location-box-section .location-card .content {
            position: relative;
            z-index: 1;
        }

        .location-box-section .location-card .city {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #3C0753;
            transition: all 0.3s ease;
        }

        .location-box-section .location-card:hover .city {
            color: #720455;
        }

        .location-box-section .location-card .country {
            font-size: 1rem;
            color: #666;
            font-weight: 400;
        }

        .location-box-section .location-card .icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 20px;
            height: 20px;
            color: #910A67;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .location-box-section .location-card:hover .icon {
            color: #ff6c2c;
            opacity: 1;
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .location-box-section .locations-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .location-box-section .intro h2 {
                font-size: 2rem;
            }
        }

        /* Add a filter/search feature */
        .location-box-section .filter-container {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
        }

        .location-box-section .filter-input {
            padding: 12px 20px;
            width: 100%;
            max-width: 500px;
            background: #ffffff;
            border: 2px solid #eaeaea;
            border-radius: 30px;
            color: #333;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .location-box-section .filter-input::placeholder {
            color: #aaa;
        }

        .location-box-section .filter-input:focus {
            border-color: #910A67;
            box-shadow: 0 0 15px rgba(145, 10, 103, 0.1);
        }
/*location-box-section*/


/*tenGbps-feature-section*/
.tenGbps-feature-section {
      padding: 80px 20px;
      margin: 0 auto;
      position: relative;
      background-color: #0f0f1a;
    color: #f8f8ff;
    overflow-x: hidden;
    }
    
    .tenGbps-feature-section .container{
            max-width: 1600px;
    }
    
    /* Background glow effects */
    .tenGbps-feature-section .glow-effect {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.3;
      z-index: 0;
    }
    
    .tenGbps-feature-section .glow-1 {
      width: 400px;
      height: 400px;
      background: #3C0753;
      top: -100px;
      left: -100px;
    }
    
    .tenGbps-feature-section .glow-2 {
      width: 300px;
      height: 300px;
      background: #720455;
      bottom: 10%;
      right: -50px;
    }
    
    .tenGbps-feature-section .glow-3 {
      width: 200px;
      height: 200px;
      background: #ff6c2c;
      top: 40%;
      left: 30%;
    }
    
    /* Header */
    .tenGbps-feature-section .section-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 1;
    }
    
    .tenGbps-feature-section .section-header h2 {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(90deg, #fff 0%, #b797c7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
      text-shadow: 0 5px 15px rgba(60, 7, 83, 0.4);
    }
    
    .tenGbps-feature-section .section-header .accent-bar {
      width: 100px;
      height: 5px;
      background: linear-gradient(90deg, #720455, #ff6c2c);
      margin: 0 auto;
      border-radius: 3px;
    }
    
    /* Feature cards grid */
    .tenGbps-feature-section .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 30px;
      position: relative;
      z-index: 1;
    }
    
    /* Feature card */
    .tenGbps-feature-section .feature-card {
      background: rgba(60, 7, 83, 0.3);
      border: 1px solid rgba(114, 4, 85, 0.5);
      border-radius: 16px;
      padding: 40px 30px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
    }
    
    .tenGbps-feature-section .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(114, 4, 85, 0.2);
      border: 1px solid rgba(145, 10, 103, 0.8);
    }
    
    .tenGbps-feature-section .feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #720455, #910A67, #ff6c2c);
      transition: height 0.3s ease;
    }
    
    .tenGbps-feature-section .feature-card:hover::before {
      height: 8px;
    }
    
    .tenGbps-feature-section .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: #fff;
      position: relative;
      padding-left: 20px;
    }
    
    .tenGbps-feature-section .feature-card h3::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 8px;
      height: 20px;
      background: #ff6c2c;
      border-radius: 4px;
    }
    
    .tenGbps-feature-section .feature-card p {
      color: #d3d3e0;
      line-height: 1.7;
      margin-bottom: 25px;
    }
    
    .tenGbps-feature-section .feature-card ul {
      list-style: none;
    }
    
    .tenGbps-feature-section .feature-card li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 30px;
      color: #b8b8c7;
      transition: all 0.3s ease;
    }
    
    .tenGbps-feature-section .feature-card li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: #ff6c2c;
      font-weight: bold;
    }
    
    .tenGbps-feature-section .feature-card li:hover {
      color: #fff;
      transform: translateX(5px);
    }
    
    .tenGbps-feature-section .feature-card .icon {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(114, 4, 85, 0.3);
      color: #ff6c2c;
      font-size: 1.2rem;
    }
    
    /* Subtle pulse effect for the glow elements */
    @keyframes pulse {
      0% {
        opacity: 0.2;
        transform: scale(1);
      }
      50% {
        opacity: 0.4;
        transform: scale(1.05);
      }
      100% {
        opacity: 0.2;
        transform: scale(1);
      }
    }
    
    .tenGbps-feature-section .glow-1 {
      animation: pulse 8s infinite ease-in-out;
    }
    
    .tenGbps-feature-section .glow-2 {
      animation: pulse 12s infinite ease-in-out;
      animation-delay: 2s;
    }
    
    .tenGbps-feature-section .glow-3 {
      animation: pulse 10s infinite ease-in-out;
      animation-delay: 4s;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .tenGbps-feature-section .features-grid {
        grid-template-columns: 1fr;
      }
      
      .tenGbps-feature-section .section-header h2 {
        font-size: 2.2rem;
      }
      
      .tenGbps-feature-section .feature-card {
        padding: 30px 20px;
      }
    }
/*tenGbps-feature-section*/

/*tenGbps-uses-section*/
.tenGbps-uses-section {
      padding: 0px 20px;
      margin: 0 auto;
    }
    
    .tenGbps-uses-section .container {
      max-width: 1500px;
    }
    
    .tenGbps-uses-section h2 {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 60px;
      color: #3C0753;
      position: relative;
      font-weight: 700;
      margin-bottom: 50px;
    }
    
    .tenGbps-uses-section h2::after {
      content: "";
      position: absolute;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #3C0753, #910A67, #ff6c2c);
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }
    
    .tenGbps-uses-section .use-cases-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    
    .tenGbps-uses-section .use-case-card {
      overflow: hidden;
      transition: all 0.3s ease;
      position: relative;
      padding: 30px;
      border-top: 4px solid #3C0753;
   
    gap: 20px;
    }
    
    .tenGbps-uses-section .use-case-card:nth-child(2n) {
      border-top-color: #720455;
    }
    
    .tenGbps-uses-section .use-case-card:nth-child(3n) {
      border-top-color: #910A67;
    }
    
    .tenGbps-uses-section .use-case-card:nth-child(4n) {
      border-top-color: #ff6c2c;
    }
    
    .tenGbps-uses-section .use-case-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(60, 7, 83, 0.1);
    }
    
    .tenGbps-uses-section .use-case-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #3C0753, #910A67);
      margin-bottom: 20px;
    }
    
    .tenGbps-uses-section .use-case-card:nth-child(odd) .use-case-icon {
      background: linear-gradient(135deg, #720455, #ff6c2c);
    }
    
    .tenGbps-uses-section .use-case-icon i {
      font-size: 35px;
    color: white;
    padding: 20px;
    }
    
    .tenGbps-uses-section h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #3C0753;
      font-weight: 600;
    }
    
    .tenGbps-uses-section p {
      color: #555;
      line-height: 1.6;
      font-size: 1rem;
    }
    
    @media (max-width: 768px) {
      .tenGbps-uses-section .use-cases-grid {
        grid-template-columns: 1fr;
      }
      
      .tenGbps-uses-section h2 {
        font-size: 2rem;
      }
    }

/*tenGbps-uses-section*/



/*intel-uses-section*/
.intel-uses-section {
            padding: 50px 0px;
            background-color: #ffffff;
        }

        .intel-uses-section .container {
            max-width: 1550px;
            margin: 0 auto;
        }

        .intel-uses-section .section-header {
            text-align: center;
            margin-bottom: 4rem;
            margin-left: auto;
            margin-right: auto;
        }

        .intel-uses-section .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #3C0753, #910A67);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .intel-uses-section .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff6c2c;
            border-radius: 2px;
        }

        .intel-uses-section .section-header p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
        }

        .intel-uses-section .uses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .intel-uses-section .use-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #f2f2f2;
        }

        .intel-uses-section .use-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(60, 7, 83, 0.1);
        }
        
        .intel-uses-section .use-card img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .intel-uses-section .use-card .icon-container {
            height: 120px;
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.03), rgba(145, 10, 103, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .intel-uses-section .use-card .icon-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3C0753, #910A67);
        }

        .intel-uses-section .use-card .icon {
            width: 60px;
            height: 60px;
            color: #720455;
            transition: all 0.3s ease;
        }

        .intel-uses-section .use-card:hover .icon {
            transform: scale(1.1);
            color: #ff6c2c;
        }

        .intel-uses-section .use-card-content {
            padding: 1.5rem;
        }

        .intel-uses-section .use-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #3C0753;
            position: relative;
            display: inline-block;
        }

        .intel-uses-section .use-card:hover h3 {
            color: #910A67;
        }

        .intel-uses-section .use-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
        }

        .intel-uses-section .use-number {
            position: absolute;
            bottom: 15px;
            right: 15px;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(60, 7, 83, 0.04);
            transition: all 0.3s ease;
        }

        .intel-uses-section .use-card:hover .use-number {
            color: rgba(255, 108, 44, 0.08);
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .intel-uses-section .uses-grid {
                grid-template-columns: 1fr;
            }
            
            .intel-uses-section .section-header h2 {
                font-size: 2rem;
            }
        }

        /* Category label */
        .intel-uses-section .category-label {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #720455;
            border: 1px solid rgba(114, 4, 85, 0.2);
        }
/*intel-uses-section*/

/*intel-features-section*/
.intel-features-section {
            padding: 80px 0;
            overflow: hidden;
        }
        
        .intel-features-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Typography */
        .intel-features-section h2 {
            color: #3C0753;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .intel-features-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3C0753, #910A67, #ff6c2c);
            border-radius: 2px;
        }
        
        .intel-features-section h3 {
            color: #720455;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            display: flex;
            align-items: center;
        }
        
        .intel-features-section h3::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 30px;
            background: linear-gradient(to bottom, #720455, #910A67);
            margin-right: 15px;
            border-radius: 4px;
        }
        
        .intel-features-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Feature cards */
        .intel-features-section .feature-category {
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        
        .intel-features-section dt {
            color: #910A67;
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 20px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .intel-features-section dt::before {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #ff6c2c;
            margin-right: 10px;
            border-radius: 50%;
        }
        
        .intel-features-section dd {
            padding-left: 22px;
            margin-bottom: 20px;
            border-left: 1px dashed rgba(114, 4, 85, 0.2);
            margin-left: 6px;
        }
        
        .intel-features-section ul {
            list-style-type: none;
            margin-top: 10px;
        }
        
        .intel-features-section li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }
        
        .intel-features-section li::before {
            content: '•';
            color: #ff6c2c;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* Grid layout for larger screens */
        .intel-features-section .features-grid {
            display: grid;
            grid-template-columns: 1fr;
        }
        
        /* CSS-only animations */
        .intel-features-section .feature-category {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.6s ease forwards;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .intel-features-section .features-grid {
                grid-template-columns: 1fr;
            }
            
            .intel-features-section h2 {
                font-size: 2rem;
            }
            
            .intel-features-section h3 {
                font-size: 1.5rem;
            }
        }
/*intel-features-section*/

/* additional-ip-price-section */
.additional-ip-price-section {
    padding: 60px 0;
    background-color: white;
}

.additional-ip-price-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.additional-ip-price-section h2 {
    color: #3C0753;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.additional-ip-price-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #720455, #ff6c2c);
    border-radius: 2px;
}

.additional-ip-price-section p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

.additional-ip-price-section table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin-top: 20px;
}

.additional-ip-price-section th {
    background: linear-gradient(135deg, #3C0753, #720455);
    color: white;
    padding: 18px 25px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
}

.additional-ip-price-section .sub-header th {
    background: black;
}

.additional-ip-price-section th:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.additional-ip-price-section th:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.additional-ip-price-section tbody tr {
    background-color: white;
    box-shadow: 0 5px 20px rgba(60, 7, 83, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 12px;
    position: relative;
}

.additional-ip-price-section tbody tr:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(60, 7, 83, 0.15);
}

.additional-ip-price-section td {
    padding: 20px 25px;
    color: #444;
    font-size: 1.05rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.additional-ip-price-section td:first-child {
    font-weight: 600;
    color: #3C0753;
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.additional-ip-price-section td:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.03);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.additional-ip-price-section tr:nth-child(even) td:first-child::before {
    content: '✦';
    color: #ff6c2c;
    margin-right: 10px;
}

.additional-ip-price-section tr:nth-child(odd) td:first-child::before {
    content: '✦';
    color: #910A67;
    margin-right: 10px;
}

.additional-ip-price-section tbody tr:nth-child(2) {
    position: relative;
    overflow: hidden;
}

/*.additional-ip-price-section tbody tr:nth-child(2)::after {*/
/*    content: 'POPULAR';*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    right: -35px;*/
/*    background: #ff6c2c;*/
/*    color: white;*/
/*    padding: 5px 40px;*/
/*    font-size: 0.75rem;*/
/*    font-weight: bold;*/
/*    transform: rotate(45deg);*/
/*    box-shadow: 0 2px 10px rgba(255, 108, 44, 0.4);*/
/*}*/

/* Responsive adjustments */
@media (max-width: 768px) {
    .additional-ip-price-section h2 {
        font-size: 2rem;
    }
    
    .additional-ip-price-section table {
        display: block;
        overflow-x: auto;
    }
    
    .additional-ip-price-section td, 
    .additional-ip-price-section th {
        padding: 15px;
    }
}

/* Responsive card view for small screens */
@media (max-width: 650px) {
    .additional-ip-price-section table, 
    .additional-ip-price-section thead, 
    .additional-ip-price-section tbody, 
    .additional-ip-price-section th, 
    .additional-ip-price-section td, 
    .additional-ip-price-section tr {
        display: block;
    }
    
    .additional-ip-price-section thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .additional-ip-price-section thead tr.sub-header {
        position: relative;
        top: 0;
        left: 0;
        margin: 20px 0 10px;
    }
    
    .additional-ip-price-section tbody tr {
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .additional-ip-price-section td {
        position: relative;
        padding: 12px 12px 12px 40%;
        border: none;
        text-align: right;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .additional-ip-price-section td:last-child {
        border-bottom: none;
    }
    
    .additional-ip-price-section td:before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        width: 35%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: #3C0753;
        text-align: left;
    }
    
    /* Special styling for the first column that already has a ::before pseudo-element */
    .additional-ip-price-section td:first-child {
        padding-left: 12px;
        text-align: left;
        font-weight: 700;
        color: #3C0753;
        background-color: rgba(60, 7, 83, 0.05);
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }
    
    .additional-ip-price-section td:last-child {
        border-top-right-radius: 0;
        border-bottom-left-radius: 12px;
    }
    
    .additional-ip-price-section tr:nth-child(even) td:first-child::before,
    .additional-ip-price-section tr:nth-child(odd) td:first-child::before {
        display: none;
    }
    
    /* Fix for the "POPULAR" tag */
    /*.additional-ip-price-section tbody tr:nth-child(2)::after {*/
    /*    top: 0;*/
    /*    right: 0;*/
    /*    padding: 5px 20px;*/
    /*    transform: rotate(0);*/
    /*    border-bottom-left-radius: 8px;*/
    /*}*/
    
    .additional-ip-price-section h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .additional-ip-price-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .additional-ip-price-section p {
        text-align: center;
        font-size: 1rem;
    }
}

/*additional-ip-price-section*/

/*faq-section*/

.faq-section {
    padding: 50px 0;
    background: white;
}

.faq-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-section .hero-content h2 {
            font-size: 30px;
            color: #3C0753;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .faq-section .hero-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6c2c, #910A67);
            border-radius: 2px;
        }

        .faq-section .hero-content p {
            text-align: center;
            font-size: 16px;
            color: #666;
            margin-left: auto;
            margin-right: auto;
        }

        /* FAQ Section */
        .faq-section .faq-section {
            padding: 100px 0;
            background: white;
        }

        .faq-section .faq-container {
            margin: 0 auto;
        }

        .faq-section .faq-item {
            margin-bottom: 1rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(60, 7, 83, 0.08);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 108, 44, 0.1);
        }

        .faq-section .faq-item:hover {
            box-shadow: 0 12px 40px rgba(60, 7, 83, 0.12);
            transform: translateY(-4px);
        }

        .faq-section .faq-question {
            background: linear-gradient(135deg, #3C0753, #720455);
            color: white;
            padding: 19px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .faq-section .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            padding-right: 3rem;
            line-height: 1.4;
        }

        .faq-section .faq-question::after {
            content: '+';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            transition: transform 0.3s ease;
            font-weight: 300;
        }

        .faq-section .faq-item.active .faq-question::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-section .faq-item.active .faq-question {
            background: linear-gradient(135deg, #720455, #910A67);
        }

        .faq-section .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
            background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
        }

        .faq-section .faq-item.active .faq-answer {
            padding: 2rem;
            max-height: max-content;
        }

        .faq-section .faq-answer p {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        .faq-section .faq-answer p:last-child {
            margin-bottom: 0;
            margin-top: 22px;
        }

        /* Special styling for lists */
        .faq-section .faq-answer ul {
            list-style: none;
            margin: 1.5rem 0;
            padding: 0;
        }

        .faq-section .faq-answer li {
            position: relative;
            padding: 0.8rem 0 0.8rem 2rem;
            margin-bottom: 0.5rem;
            background: white;
            box-shadow: 0 2px 8px rgba(60, 7, 83, 0.04);
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .faq-section .faq-answer li:nth-child(odd) {
            border-left-color: #ff6c2c;
        }

        .faq-section .faq-answer li:nth-child(even) {
            border-left-color: #910A67;
        }

        .faq-section .faq-answer li:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(60, 7, 83, 0.08);
        }

        .faq-section .faq-answer li strong {
            color: #3C0753;
            font-weight: 600;
            display: block;
            margin-bottom: 0.3rem;
        }

        /* Special highlight for technical terms */
        .faq-section .faq-answer strong:not(li strong) {
            color: #720455;
            font-weight: 600;
            background: linear-gradient(135deg, rgba(255, 108, 44, 0.1), rgba(145, 10, 103, 0.1));
            padding: 2px 6px;
            border-radius: 4px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .faq-section .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .faq-section .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-section .hero-section h2 {
                font-size: 2.2rem;
            }

            .faq-section .hero-section p {
                font-size: 1.1rem;
            }

            /* .faq-section .faq-question,
            .faq-section .faq-answer {
                padding: 1.5rem;
            } */

            .faq-section .faq-item.active .faq-answer {
                padding: 0.5rem;
            }

            .faq-section .faq-question h3 {
                font-size: 1.1rem;
                padding-right: 2.5rem;
            }

            .faq-section .faq-question::after {
                right: 1.5rem;
                font-size: 1.8rem;
            }

            .faq-section .faq-answer li {
                padding: 0.6rem 0 0.6rem 1.5rem;
            }

            .faq-section .faq-answer li::before {
                left: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .faq-section .hero-section {
                padding: 60px 0;
            }

            .faq-section .hero-section h2 {
                font-size: 1.8rem;
            }

            .faq-section .faq-section {
                padding: 80px 0;
            }

            

            .faq-section .faq-item.active .faq-answer {
                padding: 1.2rem;
            }
        }

     

        /* Loading animation for FAQ items */
        .faq-section .faq-item {
            animation: slideInFromBottom 0.6s ease-out;
        }

        .faq-section .faq-item:nth-child(even) {
            animation-delay: 0.1s;
        }

        .faq-section .faq-item:nth-child(3n) {
            animation-delay: 0.2s;
        }

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

/*faq-section*/



/*new table structure*/
/* --- Table Container --- */
        .g-new-product-pricing-table-container {
            max-width: 1750px;
            margin: 0 auto;
            padding: 0px 20px;
        }

        .g-new-product-pricing-table-container .g-new-product-pricing-table-wrapper-title {
            text-align: center;
            color: #3C0753;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .g-new-product-pricing-table-container .g-new-product-pricing-table-wrapper {
            background: transparent;
            border-radius: 0px;
            box-shadow: none;
        }

        .g-new-product-pricing-table-container .g-new-pricing-product-table-caption {
            caption-side: top;
            text-align: left;
            font-size: 1.5rem;
            font-weight: 600;
            color: #720455;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 5px solid #ff6c2c;
        }

        .g-new-product-pricing-table-container .g-new-pricing-product-table{
            margin-bottom: 30px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-product-table-tbody {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(575px, 1fr));
            gap: 30px;
        }

        /* --- Card Styles --- */
        .g-new-product-pricing-table-container .g-new-pricing-product-card {
            background-color: #ffffff;
            border-radius: 24px;
            box-shadow: 0 10px 25px -5px rgba(60, 7, 83, 0.1);
            display: flex;
            flex-direction: row;
            width: 100%;
            overflow: visible;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.8);
            min-height: 300px;
            max-width: 840px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -10px rgba(60, 7, 83, 0.2);
            z-index: 10;
            border-color: #720455;
        }

        /* --- Left Side: Visual Panel --- */
        .g-new-product-pricing-table-container .g-new-pricing-card-visual {
            flex: 0 0 23%;
            background: linear-gradient(135deg, #3C0753, #910A67);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            color: white;
            position: relative;
            text-align: center;
            border-top-left-radius: 24px;
            border-bottom-left-radius: 24px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-card-visual::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .g-new-product-pricing-table-container .g-new-pricing-card-visual::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: #ff6c2c;
            opacity: 0.2;
            border-radius: 50%;
            filter: blur(20px);
            pointer-events: none;
        }

        .g-new-product-pricing-table-container .g-new-pricing-visual-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            width: fit-content;
            letter-spacing: 1px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 2;
            margin-bottom: 10px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-visual-icon {
            z-index: 2;
            margin: auto 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .g-new-product-pricing-table-container .g-new-pricing-visual-icon i {
            font-size: 5rem;
            color: white;
            opacity: 0.9;
        }

        .g-new-product-pricing-table-container .g-new-pricing-visual-tech {
            font-size: 0.9rem;
            opacity: 0.9;
            z-index: 2;
            font-weight: 500;
            margin-top: 10px;
        }

        /* --- Right Side: Content Area --- */
        .g-new-product-pricing-table-container .g-new-pricing-card-content {
            flex: 1;
            padding: 35px 20px;
            display: flex;
            flex-direction: column;
        }

        /* Header Area */
        .g-new-product-pricing-table-container .g-new-pricing-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            gap: 20px;
            border-bottom: 1px solid #f8f9fc;
            padding-bottom: 20px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-product-info { flex: 1; }

        .g-new-product-pricing-table-container .g-new-pricing-product-id {
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
            display: inline-block;
            background: #f3e5f5;
            padding: 2px 8px;
            border-radius: 4px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-product-title {
            font-size: 1.6rem;
            color: #3C0753;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-product-subtitle {
            font-size: 0.95rem;
            color: #720455;
            font-weight: 500;
        }

        /* Action Area */
        .g-new-product-pricing-table-container .g-new-pricing-action-area {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            text-align: right;
            min-width: 150px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-price-wrapper {
            display: flex;
            align-items: baseline;
            gap: 2px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-price-currency {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3C0753;
        }

        .g-new-product-pricing-table-container .g-new-pricing-price-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: #3C0753;
            line-height: 1;
        }

        .g-new-product-pricing-table-container .g-new-pricing-price-period {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 500;
        }

        .g-new-product-pricing-table-container .g-new-pricing-buy-btn {
            background-color: #ff6c2c;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(255, 108, 44, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
            width: 100%;
            text-align: center;
        }

        .g-new-product-pricing-table-container .g-new-pricing-buy-btn:hover {
            background-color: #e6551b;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 108, 44, 0.3);
        }

        /* --- Info Boxes Container --- */
        .g-new-product-pricing-table-container .g-new-pricing-info-container {
            display: flex;
            flex-direction: row;
            gap: 15px;
            margin-bottom: 25px;
        }

        /* Separate Boxes */
        .g-new-product-pricing-table-container .g-new-pricing-info-box {
            flex: 1;
            background-color: #f0fdf4; /* Default Light Green */
            border: 1px solid #bbf7d0;
            border-radius: 8px;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            color: #3C0753;
            font-size: 0.85rem;
            text-align: left;
        }

        .g-new-product-pricing-table-container .g-new-pricing-info-box i {
            color: #2ecc71;
            font-size: 1rem;
            width: 18px; 
            text-align: center;
            flex-shrink: 0;
        }

        .g-new-product-pricing-table-container .g-new-pricing-info-box span {
            font-weight: 600;
        }

        /* Variant for RAID (Blue-ish) */
       .g-new-product-pricing-table-container  .g-new-pricing-info-box.raid-box {
            background-color: #eff6ff; /* Light Blue */
            border-color: #bfdbfe;
        }
        .g-new-product-pricing-table-container .g-new-pricing-info-box.raid-box i {
            color: #3b82f6;
        }

        /* Variant for DDoS (Orange-ish) */
        .g-new-product-pricing-table-container .g-new-pricing-info-box.ddos-box {
            background-color: #fff7ed; /* Light Orange */
            border-color: #fed7aa;
        }
        .g-new-product-pricing-table-container .g-new-pricing-info-box.ddos-box i {
            color: #ff6c2c;
        }

        /* --- Specs Grid --- */
        .g-new-product-pricing-table-container .g-new-pricing-specs-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: auto;
        }

        .g-new-product-pricing-table-container .g-new-pricing-spec-item {
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding: 12px;
            border-radius: 10px;
            transition: background-color 0.2s;
            background-color: #fafafa;
            border: 1px solid transparent;
            cursor: default;
        }

        .g-new-product-pricing-table-container .g-new-pricing-spec-item:hover {
            background-color: white;
            border-color: #e5e7eb;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .g-new-product-pricing-table-container .g-new-pricing-spec-icon {
            width: 44px;
            height: 44px;
            background-color: #fcece4;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #720455;
            flex-shrink: 0;
        }

        /* Icons */
        .g-new-product-pricing-table-container .g-new-pricing-icon-ram { width: 14px; height: 18px; background: #720455; border-radius: 2px; }
        .g-new-product-pricing-table-container .g-new-pricing-icon-hdd { width: 18px; height: 12px; border: 2px solid #720455; border-radius: 3px; }
        .g-new-product-pricing-table-container .g-new-pricing-icon-bandwidth { width: 18px; height: 2px; background: #720455; position: relative; }
        .g-new-product-pricing-table-container .g-new-pricing-icon-bandwidth::after { content: ''; position: absolute; top: -5px; left: 7px; width: 4px; height: 12px; background: #720455; }

        .g-new-product-pricing-table-container .g-new-pricing-spec-details { display: flex; flex-direction: column; overflow: hidden; }
        .g-new-product-pricing-table-container .g-new-pricing-spec-label { font-size: 0.7rem; color: #6b7280; text-transform: uppercase; font-weight: 700; margin-bottom: 2px; }
        .g-new-product-pricing-table-container .g-new-pricing-spec-value { font-size: 0.95rem; color: #3C0753; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        
        .g-new-product-pricing-table-container .g-new-pricing-edit-hint {
            position: absolute;
            top: 6px; right: 6px;
            font-size: 0.6rem;
            color: #ff6c2c;
            font-weight: 600;
            opacity: 1;
            transition: opacity 0.2s;
            pointer-events: none;
        }

        /* --- Hover Popup (List View - Read Only) --- */
        .g-new-product-pricing-table-container .g-new-pricing-hover-config {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 160%;
            min-width: 240px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 15px 35px rgba(60, 7, 83, 0.15);
            z-index: 50;
            margin-top: 10px;
        }

        .g-new-product-pricing-table-container .g-new-pricing-spec-item:nth-child(3) .g-new-pricing-hover-config { left: auto; right: 0; }
        .g-new-product-pricing-table-container .g-new-pricing-spec-item:hover .g-new-pricing-hover-config { display: block; }
        
        .g-new-product-pricing-table-container .g-new-pricing-popup-label { display: block; font-size: 0.75rem; color: #6b7280; margin-bottom: 8px; font-weight: 700; text-transform: uppercase; border-bottom: 1px solid #e5e7eb; padding-bottom: 6px; }

        .g-new-product-pricing-table-container .g-new-pricing-option-list { display: flex; flex-direction: column; gap: 4px; }

        .g-new-product-pricing-table-container .g-new-pricing-option-item {
            padding: 10px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            color: #6b7280;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: default;
        }

        .g-new-product-pricing-table-container .g-new-pricing-option-item:hover { background-color: #f8f9fc; }
        .g-new-product-pricing-table-container .g-new-pricing-option-item.included { background-color: #f3e5f5; color: #3C0753; font-weight: 600; border: 1px solid #910A67; }
        .g-new-product-pricing-table-container .g-new-pricing-option-item .opt-price { font-size: 0.8rem; color: #ff6c2c; font-weight: 600; }

        /* --- Responsive --- */
        @media (max-width: 1100px) {
             .g-new-pricing-specs-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            .g-new-product-pricing-table-container .g-new-pricing-product-card { flex-direction: column; }
            .g-new-product-pricing-table-container .g-new-pricing-card-visual { flex: none; padding: 40px 20px; border-radius: 24px 24px 0 0; }
            .g-new-product-pricing-table-container .g-new-pricing-card-header { flex-direction: column; align-items: flex-start; gap: 15px; }
            .g-new-product-pricing-table-container .g-new-pricing-action-area { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; border-top: 1px solid #e5e7eb; padding-top: 20px; }
            .g-new-product-pricing-table-container .g-new-pricing-buy-btn { width: auto; }
            .g-new-product-pricing-table-container .g-new-pricing-specs-container { grid-template-columns: 1fr; }
            .g-new-product-pricing-table-container .g-new-pricing-info-container { flex-direction: column; }
            
            .g-new-product-pricing-table-container .g-new-pricing-hover-config { position: static; width: 100%; box-shadow: none; border: 1px dashed #e5e7eb; margin-top: 10px; display: none; }
            .g-new-product-pricing-table-container .g-new-pricing-spec-item:active .g-new-pricing-hover-config { display: block; }
        }


        /* ======================================= */

        /* ================================ */

        /* =========================================
           FILTER SECTION STYLES
           ========================================= */
        .g-filter-section {
            background-color: #f8f9fc;
            border-bottom: 1px solid #e5e7eb;
            padding: 25px 0;
            margin-bottom: 40px; /* Space between filter and table */
            box-shadow: 0 4px 20px rgba(60, 7, 83, 0.05);
        }

        .g-filter-section .g-filter-container {
            max-width: 1750px; /* Matches your table container width */
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Row: Categories */
        .g-filter-section .g-filter-category-row {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
            scrollbar-width: none;
        }
        .g-filter-section .g-filter-category-row::-webkit-scrollbar { display: none; }

        .g-filter-section .g-cat-btn {
            background: transparent;
            border: 1px solid #e5e7eb;
            color: #6b7280;
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .g-filter-section .g-cat-btn:hover {
            border-color: #720455;
            color: #720455;
            background-color: #fdf4ff;
        }

        .g-filter-section .g-cat-btn.active {
            background-color: #3C0753;
            border-color: #3C0753;
            color: white;
            box-shadow: 0 4px 10px rgba(60, 7, 83, 0.2);
        }

        /* Bottom Row: Controls */
        .g-filter-section .g-filter-controls-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Divider */
        .g-filter-section .divider {
            height: 24px;
            width: 1px;
            background-color: #2a2a35;
            display: none;
        }
        @media (min-width: 640px) { .g-filter-section .divider { display: block; } }

        /* Search Input */
        .g-filter-section .g-search-wrapper {
            position: relative;
        }
        .g-filter-section .g-search-wrapper i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
            font-size: 0.9rem;
        }
        .g-filter-section .g-search-input {
            background-color: #f3f4f6;
            border: 1px solid transparent;
            padding: 10px 15px 10px 35px;
            border-radius: 8px;
            color: #3C0753;
            width: 220px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .g-filter-section .g-search-input:focus {
            background-color: white;
            border-color: #ff6c2c;
            outline: none;
            width: 260px;
            box-shadow: 0 0 0 3px rgba(255, 108, 44, 0.1);
        }

        /* Filter Buttons */
        .g-filter-section .g-filter-group { position: relative; }

        .g-filter-section .g-filter-dropdown-btn {
            background-color: white;
            border: 1px solid #e5e7eb;
            color: #3C0753;
            padding: 10px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }

        .g-filter-section .g-filter-dropdown-btn:hover, .g-filter-section .g-filter-dropdown-btn.active {
            border-color: #720455;
            background-color: #fdf4ff;
            color: #720455;
        }

        .g-filter-section .g-filter-dropdown-btn i { font-size: 0.8rem; color: #6b7280; }
        .g-filter-section .g-filter-dropdown-btn.active i { color: #720455; transform: rotate(180deg); }

        /* Dropdown Content */
        .g-filter-section .g-dropdown-panel {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 20px;
            width: 300px;
            box-shadow: 0 10px 40px rgba(60, 7, 83, 0.15);
            z-index: 100;
            display: none;
            animation: slideDown 0.2s ease;
        }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

        .g-filter-section .g-dropdown-panel.show { display: block; }

        .g-filter-section .g-drop-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #6b7280;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        
        /* New utility class to replace inline styles */
        .g-filter-section .g-drop-margin-top {
            margin-top: 15px;
        }

        /* Checkboxes inside Dropdown */
        .g-filter-section .g-checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            cursor: pointer;
            font-size: 0.9rem;
            color: #3C0753;
            transition: 0.2s;
        }
        .g-filter-section .g-checkbox-label:hover { color: #ff6c2c; }

        .g-filter-section .g-checkbox-label input {
            accent-color: #ff6c2c;
            width: 16px;
            height: 16px;
        }

        /* --- DUAL RANGE SLIDER CSS --- */
        .g-filter-section .g-price-inputs { display: flex; gap: 10px; margin-bottom: 25px; }
        .g-filter-section .g-price-field {
            width: 100%;
            padding: 8px;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            color: #3C0753;
            font-size: 0.9rem;
        }

        .g-filter-section .g-range-wrapper {
            position: relative;
            width: 100%;
            height: 5px;
            margin-bottom: 20px;
        }

        /* The Visual Track */
        .g-filter-section .g-slider-track {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background-color: #ddd;
            border-radius: 5px;
        }

        /* The Inputs sitting on top */
        .g-filter-section .g-range-input {
            position: absolute;
            width: 100%;
            height: 4px;
            top: 0;
            background: none;
            pointer-events: none; /* Allows click-through to element below */
            -webkit-appearance: none;
            appearance: none;
            z-index: 2;
        }

        /* Thumb Styling (Chrome/Safari) */
        .g-filter-section .g-range-input::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 18px;
            width: 18px;
            border-radius: 50%;
            background: #ff6c2c;
            border: 2px solid white;
            box-shadow: 0 1px 4px rgba(0,0,0,0.3);
            cursor: pointer;
            pointer-events: auto; /* Re-enable pointer events for thumb */
            margin-top: -7px; /* Center thumb */
        }

        /* Thumb Styling (Firefox) */
        .g-filter-section .g-range-input::-moz-range-thumb {
            height: 18px;
            width: 18px;
            border-radius: 50%;
            background: #ff6c2c;
            border: 2px solid white;
            box-shadow: 0 1px 4px rgba(0,0,0,0.3);
            cursor: pointer;
            pointer-events: auto;
        }
        /* --- END DUAL SLIDER CSS --- */

        .g-filter-section .g-apply-btn {
            width: 100%;
            margin-top: 5px;
            background: #720455;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
        }
        .g-apply-btn:hover { background: #910A67; }

        /* Sort Select */
        .g-filter-section .g-sort-wrapper { 
            margin-left: auto;
            position: relative;
        }
        
        .g-filter-section .g-sort-select {
            appearance: none; /* Remove default browser arrow */
            -webkit-appearance: none;
            -moz-appearance: none;
            background-color: white;
            border: 1px solid #e5e7eb;
            color: #3C0753;
            padding: 10px 40px 10px 16px; /* Extra padding right for the custom arrow */
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.2s ease;
            
            /* Custom SVG Arrow */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 14px;
        }

        .g-filter-section .g-sort-select:hover {
            border-color: #720455;
            background-color: #fdf4ff;
            color: #720455;
            /* Change arrow color on hover (requires URL encoding #720455) */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23720455' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        }

        .g-filter-section .g-sort-select:focus {
            border-color: #ff6c2c;
            box-shadow: 0 0 0 3px rgba(255, 108, 44, 0.1);
        }
        
        /* Responsive Filter */
        @media (max-width: 900px) {
            .g-filter-section .g-filter-controls-row {
                gap: 10px;
            }
            .g-filter-section .g-search-input { width: 100%; }
            .g-filter-section .g-search-input:focus { width: 100%; }
            .g-filter-section .g-sort-wrapper { width: 100%; margin: 10px 0; }
            .g-filter-section .g-sort-select { width: 100%; text-align: left; }
        }
        
        .promotion-section .g-filter-section{
            display: none;
        }
        
        /*new table structure*/
        
        /*new Category table structure*/
        /* --- Table Container --- */
        .category-new-product-pricing-table-container {
            max-width: 1750px;
            margin: 0 auto;
            padding: 0px 20px;
        }

        .category-new-product-pricing-table-container .category-new-product-pricing-table-wrapper-title {
            text-align: center;
            color: #3C0753;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .category-new-product-pricing-table-container .category-new-product-pricing-table-wrapper {
            background: transparent;
            border-radius: 0px;
            box-shadow: none;
        }

        .category-new-product-pricing-table-container .category-new-pricing-product-table-caption {
            caption-side: top;
            text-align: left;
            font-size: 1.5rem;
            font-weight: 600;
            color: #720455;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 5px solid #ff6c2c;
        }

        .category-new-product-pricing-table-container .category-new-pricing-product-table{
            margin-bottom: 30px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-product-table-tbody {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(575px, 1fr));
            gap: 30px;
        }

        /* --- Card Styles --- */
        .category-new-product-pricing-table-container .category-new-pricing-product-card {
            background-color: #ffffff;
            border-radius: 24px;
            box-shadow: 0 10px 25px -5px rgba(60, 7, 83, 0.1);
            display: flex;
            flex-direction: row;
            width: 100%;
            overflow: visible;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.8);
            min-height: 300px;
            max-width: 840px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -10px rgba(60, 7, 83, 0.2);
            z-index: 10;
            border-color: #720455;
        }

        /* --- Left Side: Visual Panel --- */
        .category-new-product-pricing-table-container .category-new-pricing-card-visual {
            flex: 0 0 23%;
            background: linear-gradient(135deg, #3C0753, #910A67);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            color: white;
            position: relative;
            text-align: center;
            border-top-left-radius: 24px;
            border-bottom-left-radius: 24px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-card-visual::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .category-new-product-pricing-table-container .category-new-pricing-card-visual::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: #ff6c2c;
            opacity: 0.2;
            border-radius: 50%;
            filter: blur(20px);
            pointer-events: none;
        }

        .category-new-product-pricing-table-container .category-new-pricing-visual-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            width: fit-content;
            letter-spacing: 1px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 2;
            margin-bottom: 10px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-visual-icon {
            z-index: 2;
            margin: auto 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .category-new-product-pricing-table-container .category-new-pricing-visual-icon i {
            font-size: 5rem;
            color: white;
            opacity: 0.9;
        }

        .category-new-product-pricing-table-container .category-new-pricing-visual-tech {
            font-size: 0.9rem;
            opacity: 0.9;
            z-index: 2;
            font-weight: 500;
            margin-top: 10px;
        }

        /* --- Right Side: Content Area --- */
        .category-new-product-pricing-table-container .category-new-pricing-card-content {
            flex: 1;
            padding: 35px 20px;
            display: flex;
            flex-direction: column;
        }

        /* Header Area */
        .category-new-product-pricing-table-container .category-new-pricing-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
            gap: 20px;
            border-bottom: 1px solid #f8f9fc;
            padding-bottom: 20px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-product-info { flex: 1; }

        .category-new-product-pricing-table-container .category-new-pricing-product-id {
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
            display: inline-block;
            background: #f3e5f5;
            padding: 2px 8px;
            border-radius: 4px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-product-title {
            font-size: 1.6rem;
            color: #3C0753;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-product-subtitle {
            font-size: 0.95rem;
            color: #720455;
            font-weight: 500;
        }

        /* Action Area */
        .category-new-product-pricing-table-container .category-new-pricing-action-area {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            text-align: right;
            min-width: 150px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-price-wrapper {
            display: flex;
            align-items: baseline;
            gap: 2px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-price-currency {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3C0753;
        }

        .category-new-product-pricing-table-container .category-new-pricing-price-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: #3C0753;
            line-height: 1;
        }

        .category-new-product-pricing-table-container .category-new-pricing-price-period {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 500;
        }

        .category-new-product-pricing-table-container .category-new-pricing-buy-btn {
            background-color: #ff6c2c;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(255, 108, 44, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
            width: 100%;
            text-align: center;
        }

        .category-new-product-pricing-table-container .category-new-pricing-buy-btn:hover {
            background-color: #e6551b;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 108, 44, 0.3);
        }

        /* --- Info Boxes Container --- */
        .category-new-product-pricing-table-container .category-new-pricing-info-container {
            display: flex;
            flex-direction: row;
            gap: 15px;
            margin-bottom: 25px;
        }

        /* Separate Boxes */
        .category-new-product-pricing-table-container .g-new-pricing-info-box {
            flex: 1;
            background-color: #f0fdf4; /* Default Light Green */
            border: 1px solid #bbf7d0;
            border-radius: 8px;
            padding: 10px 15px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            color: #3C0753;
            font-size: 0.85rem;
            text-align: left;
        }

        .category-new-product-pricing-table-container .g-new-pricing-info-box i {
            color: #2ecc71;
            font-size: 1rem;
            width: 18px; 
            text-align: center;
            flex-shrink: 0;
        }

        .category-new-product-pricing-table-container .g-new-pricing-info-box span {
            font-weight: 600;
        }

        /* Variant for RAID (Blue-ish) */
        .category-new-product-pricing-table-container .g-new-pricing-info-box.raid-box {
            background-color: #eff6ff; /* Light Blue */
            border-color: #bfdbfe;
        }
        .category-new-product-pricing-table-container .g-new-pricing-info-box.raid-box i {
            color: #3b82f6;
        }

        /* Variant for DDoS (Orange-ish) */
        .category-new-product-pricing-table-container .g-new-pricing-info-box.ddos-box {
            background-color: #fff7ed; /* Light Orange */
            border-color: #fed7aa;
        }
        .category-new-product-pricing-table-container .g-new-pricing-info-box.ddos-box i {
            color: #ff6c2c;
        }

        /* --- Specs Grid --- */
        .category-new-product-pricing-table-container .category-new-pricing-specs-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: auto;
        }

        .category-new-product-pricing-table-container .category-new-pricing-spec-item {
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding: 12px;
            border-radius: 10px;
            transition: background-color 0.2s;
            background-color: #fafafa;
            border: 1px solid transparent;
            cursor: default;
        }

        .category-new-product-pricing-table-container .category-new-pricing-spec-item:hover {
            background-color: white;
            border-color: #e5e7eb;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .category-new-product-pricing-table-container .g-new-pricing-spec-icon {
            width: 44px;
            height: 44px;
            background-color: #fcece4;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #720455;
            flex-shrink: 0;
        }

        /* Icons */
        .category-new-product-pricing-table-container .g-new-pricing-icon-ram { width: 14px; height: 18px; background: #720455; border-radius: 2px; }
        .category-new-product-pricing-table-container .g-new-pricing-icon-hdd { width: 18px; height: 12px; border: 2px solid #720455; border-radius: 3px; }
        .category-new-product-pricing-table-container .g-new-pricing-icon-bandwidth { width: 18px; height: 2px; background: #720455; position: relative; }
        .category-new-product-pricing-table-container .g-new-pricing-icon-bandwidth::after { content: ''; position: absolute; top: -5px; left: 7px; width: 4px; height: 12px; background: #720455; }

        .category-new-product-pricing-table-container .category-new-pricing-spec-details { display: flex; flex-direction: column; overflow: hidden; }
        .category-new-product-pricing-table-container .category-new-pricing-spec-label { font-size: 0.7rem; color: #6b7280; text-transform: uppercase; font-weight: 700; margin-bottom: 2px; }
        .category-new-product-pricing-table-container .category-new-pricing-spec-value { font-size: 0.95rem; color: #3C0753; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        
        .category-new-product-pricing-table-container .category-new-pricing-edit-hint {
            position: absolute;
            top: 6px; right: 6px;
            font-size: 0.6rem;
            color: #ff6c2c;
            font-weight: 600;
            opacity: 1;
            transition: opacity 0.2s;
            pointer-events: none;
        }

        /* --- Hover Popup (List View - Read Only) --- */
        .category-new-product-pricing-table-container .category-new-pricing-hover-config {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 160%;
            min-width: 240px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 15px 35px rgba(60, 7, 83, 0.15);
            z-index: 50;
            margin-top: 10px;
        }

        .category-new-product-pricing-table-container .category-new-pricing-spec-item:nth-child(3) .category-new-pricing-hover-config { left: auto; right: 0; }
        .category-new-product-pricing-table-container .category-new-pricing-spec-item:hover .category-new-pricing-hover-config { display: block; }
        
        .category-new-product-pricing-table-container .category-new-pricing-popup-label { display: block; font-size: 0.75rem; color: #6b7280; margin-bottom: 8px; font-weight: 700; text-transform: uppercase; border-bottom: 1px solid #e5e7eb; padding-bottom: 6px; }

        .category-new-product-pricing-table-container .category-new-pricing-option-list { display: flex; flex-direction: column; gap: 4px; }

        .category-new-product-pricing-table-container .category-new-pricing-option-item {
            padding: 10px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            color: #6b7280;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: default;
        }

        .category-new-product-pricing-table-container .category-new-pricing-option-item:hover { background-color: #f8f9fc; }
        .category-new-product-pricing-table-container .category-new-pricing-option-item.included { background-color: #f3e5f5; color: #3C0753; font-weight: 600; border: 1px solid #910A67; }
        .category-new-product-pricing-table-container .category-new-pricing-option-item .category-opt-price { font-size: 0.8rem; color: #ff6c2c; font-weight: 600; }

        /* --- Responsive --- */
        @media (max-width: 1530px) {
             .category-new-product-pricing-table-container .category-new-pricing-specs-container { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            .category-new-product-pricing-table-container .category-new-pricing-product-card { flex-direction: column; }
            .category-new-product-pricing-table-container .category-new-pricing-card-visual { flex: none; padding: 40px 20px; border-radius: 24px 24px 0 0; }
            .category-new-product-pricing-table-container .category-new-pricing-card-header { flex-direction: column; align-items: flex-start; gap: 15px; }
            .category-new-product-pricing-table-container .category-new-pricing-action-area { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; border-top: 1px solid #e5e7eb; padding-top: 20px; }
            .category-new-product-pricing-table-container .category-new-pricing-buy-btn { width: auto; }
            .category-new-product-pricing-table-container .category-new-pricing-specs-container { grid-template-columns: 1fr; }
            .category-new-product-pricing-table-container .category-new-pricing-info-container { flex-direction: column; }
            
            .category-new-product-pricing-table-container .category-new-pricing-hover-config { position: static; width: 100%; box-shadow: none; border: 1px dashed #e5e7eb; margin-top: 10px; display: none; }
            .category-new-product-pricing-table-container .category-new-pricing-spec-item:active .category-new-pricing-hover-config { display: block; }
        }

        /* =============================================== */

        /* =========================================
           FILTER SECTION STYLES
           ========================================= */
        .g-filter-section {
            background-color: #f8f9fc;
            border-bottom: 1px solid #e5e7eb;
            padding: 25px 0;
            margin-bottom: 40px; /* Space between filter and table */
            box-shadow: 0 4px 20px rgba(60, 7, 83, 0.05);
        }

        .g-filter-section .g-filter-container {
            max-width: 1750px; /* Matches your table container width */
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Top Row: Categories */
        .g-filter-section .g-filter-category-row {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
            scrollbar-width: none;
        }
        .g-filter-section .g-filter-category-row::-webkit-scrollbar { display: none; }

        .g-filter-section .g-cat-btn {
            background: transparent;
            border: 1px solid #e5e7eb;
            color: #6b7280;
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all 0.2s ease;
        }

        .g-filter-section .g-cat-btn:hover {
            border-color: #720455;
            color: #720455;
            background-color: #fdf4ff;
        }

        .g-filter-section .g-cat-btn.active {
            background-color: #3C0753;
            border-color: #3C0753;
            color: white;
            box-shadow: 0 4px 10px rgba(60, 7, 83, 0.2);
        }

        /* Bottom Row: Controls */
        .g-filter-section .g-filter-controls-row {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Divider */
        .g-filter-section .divider {
            height: 24px;
            width: 1px;
            background-color: #2a2a35;
            display: none;
        }
        @media (min-width: 640px) { .g-filter-section .divider { display: block; } }

        /* Search Input */
        .g-filter-section .g-search-wrapper {
            position: relative;
        }
        .g-filter-section .g-search-wrapper i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
            font-size: 0.9rem;
        }
        .g-filter-section .g-search-input {
            background-color: #f3f4f6;
            border: 1px solid transparent;
            padding: 10px 15px 10px 35px;
            border-radius: 8px;
            color: #3C0753;
            width: 220px;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .g-filter-section .g-search-input:focus {
            background-color: white;
            border-color: #ff6c2c;
            outline: none;
            width: 260px;
            box-shadow: 0 0 0 3px rgba(255, 108, 44, 0.1);
        }

        /* Filter Buttons */
        .g-filter-section .g-filter-group { position: relative; }

        .g-filter-section .g-filter-dropdown-btn {
            background-color: white;
            border: 1px solid #e5e7eb;
            color: #3C0753;
            padding: 10px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }

        .g-filter-section .g-filter-dropdown-btn:hover, .g-filter-dropdown-btn.active {
            border-color: #720455;
            background-color: #fdf4ff;
            color: #720455;
        }

        .g-filter-section .g-filter-dropdown-btn i { font-size: 0.8rem; color: #6b7280; }
        .g-filter-dropdown-btn.active i { color: #720455; transform: rotate(180deg); }

        /* Dropdown Content */
        .g-dropdown-panel {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 20px;
            width: 300px;
            box-shadow: 0 10px 40px rgba(60, 7, 83, 0.15);
            z-index: 100;
            display: none;
            animation: slideDown 0.2s ease;
        }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

        .g-filter-section .g-dropdown-panel.show { display: block; }

        .g-filter-section .g-drop-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #6b7280;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        
        /* New utility class to replace inline styles */
        .g-filter-section .g-drop-margin-top {
            margin-top: 15px;
        }

        /* Checkboxes inside Dropdown */
        .g-filter-section .g-checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            cursor: pointer;
            font-size: 0.9rem;
            color: #3C0753;
            transition: 0.2s;
        }
        .g-filter-section .g-checkbox-label:hover { color: #ff6c2c; }

        .g-filter-section .g-checkbox-label input {
            accent-color: #ff6c2c;
            width: 16px;
            height: 16px;
        }

        /* --- DUAL RANGE SLIDER CSS --- */
        .g-filter-section .g-price-inputs { display: flex; gap: 10px; margin-bottom: 25px; }
        .g-filter-section .g-price-field {
            width: 100%;
            padding: 8px;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            color: #3C0753;
            font-size: 0.9rem;
        }

        .g-filter-section .g-range-wrapper {
            position: relative;
            width: 100%;
            height: 5px;
            margin-bottom: 20px;
        }

        /* The Visual Track */
        .g-filter-section .g-slider-track {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background-color: #ddd;
            border-radius: 5px;
        }

        /* The Inputs sitting on top */
        .g-filter-section .g-range-input {
            position: absolute;
            width: 100%;
            height: 4px;
            top: 0;
            background: none;
            pointer-events: none; /* Allows click-through to element below */
            -webkit-appearance: none;
            appearance: none;
            z-index: 2;
        }

        /* Thumb Styling (Chrome/Safari) */
        .g-filter-section .g-range-input::-webkit-slider-thumb {
            -webkit-appearance: none;
            height: 18px;
            width: 18px;
            border-radius: 50%;
            background: #ff6c2c;
            border: 2px solid white;
            box-shadow: 0 1px 4px rgba(0,0,0,0.3);
            cursor: pointer;
            pointer-events: auto; /* Re-enable pointer events for thumb */
            margin-top: -7px; /* Center thumb */
        }

        /* Thumb Styling (Firefox) */
        .g-filter-section .g-range-input::-moz-range-thumb {
            height: 18px;
            width: 18px;
            border-radius: 50%;
            background: #ff6c2c;
            border: 2px solid white;
            box-shadow: 0 1px 4px rgba(0,0,0,0.3);
            cursor: pointer;
            pointer-events: auto;
        }
        /* --- END DUAL SLIDER CSS --- */

        .g-filter-section .g-apply-btn {
            width: 100%;
            margin-top: 5px;
            background: #720455;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
        }
        .g-filter-section .g-apply-btn:hover { background: #910A67; }

        /* Sort Select */
        .g-filter-section .g-sort-wrapper { 
            margin-left: auto;
            position: relative;
        }
        
        .g-filter-section .g-sort-select {
            appearance: none; /* Remove default browser arrow */
            -webkit-appearance: none;
            -moz-appearance: none;
            background-color: white;
            border: 1px solid #e5e7eb;
            color: #3C0753;
            padding: 10px 40px 10px 16px; /* Extra padding right for the custom arrow */
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.2s ease;
            
            /* Custom SVG Arrow */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 14px;
        }

        .g-filter-section .g-sort-select:hover {
            border-color: #720455;
            background-color: #fdf4ff;
            color: #720455;
            /* Change arrow color on hover (requires URL encoding #720455) */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23720455' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        }

        .g-filter-section .g-sort-select:focus {
            border-color: #ff6c2c;
            box-shadow: 0 0 0 3px rgba(255, 108, 44, 0.1);
        }
        
        /* Responsive Filter */
        @media (max-width: 900px) {
            .g-filter-section .g-filter-controls-row {
                gap: 10px;
            }
            .g-filter-section .g-search-input { width: 100%; }
            .g-filter-section .g-search-input:focus { width: 100%; }
            .g-filter-section .g-sort-wrapper { width: 100%; margin: 10px 0; }
            .g-filter-section .g-sort-select { width: 100%; text-align: left; }
        }
        
         /*new Category table structure*/


/* ddos-section */
/* Utility Classes */
    .ddos-section .container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .ddos-section .text-center {
        text-align: center;
    }

    .ddos-section .text-gold {
        color: #EA9611;
    }

    .ddos-section .text-purple {
        color: #3C0753;
    }

    .ddos-section h2,
    .ddos-section h3 {
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.02em;
        margin-bottom: 1rem;
        color: #3C0753;
    }

    .ddos-section h2 {
        font-size: 35px;
    }

    .ddos-section h3 {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .ddos-section p {
        color: #64748b;
        margin-bottom: 1.5rem;
        font-size: 16px;
        font-weight: 400;
    }

    /* Buttons */
    .ddos-section .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2.5rem;
        background: #EA9611;
        color: white;
        font-weight: 800;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 2px solid #EA9611;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(234, 150, 17, 0.3);
    }

    .ddos-section .btn:hover {
        background: transparent;
        color: #EA9611;
        box-shadow: 0 10px 15px rgba(234, 150, 17, 0.2);
        transform: translateY(-2px);
    }

    .ddos-section .btn-cta {
        background: #EA9611;
        color: white;
        border: 2px solid white;
    }

    .ddos-section .btn-cta:hover {
        color: white;
        border-color: transparent;
        background-color: #910A67;
    }


    /* Section Styling */
    .ddos-section .section-padding {
        padding: 50px 0;
    }

    /* Cards & Grids */
    .ddos-section .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .ddos-section .clean-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        padding: 2.5rem;
        border-radius: 20px;
        transition: all 0.3s ease;
        height: 100%;
        box-shadow: 0 4px 6px -1px rgba(60, 7, 83, 0.05), 0 2px 4px -1px rgba(60, 7, 83, 0.03);
    }

    .ddos-section .clean-card:hover {
        transform: translateY(-5px);
        border-color: rgba(234, 150, 17, 0.3);
        box-shadow: 0 20px 25px -5px rgba(60, 7, 83, 0.1), 0 10px 10px -5px rgba(60, 7, 83, 0.04);
    }

    /* Icon Boxes */
    .ddos-section .icon-box {
        width: 60px;
        height: 60px;
        background: rgba(145, 10, 103, 0.05);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: #910A67;
        transition: all 0.3s ease;
    }

    .ddos-section .clean-card:hover .icon-box {
        background: #EA9611;
        color: white;
    }

    .ddos-section .clean-card:hover .icon-box i{
            font-size: 28px;
    }

    .ddos-section .icon-box-danger {
        color: #ef4444;
        background: rgba(239, 68, 68, 0.1);
    }

    /* Specific Sections */
    .ddos-section .what-is-ddos {
        background: #ffffff;
    }

    .ddos-section .ddos-content-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-bottom: 4rem;
    }

    .ddos-section .subtitle-accent {
        font-size: 0.6em;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: block;
        margin-top: 0.5rem;
    }

    .ddos-section .analogy-box {
        background: #FFF9F0;
        padding: 2.5rem;
        border-left: 4px solid #EA9611;
        border-radius: 0 16px 16px 0;
    }

    .ddos-section .analogy-text {
        margin-bottom: 0;
        color: #334155;
    }

    .ddos-section .impact-header {
        margin-bottom: 2rem;
    }

    .ddos-section .quote-text {
        margin-top: 4rem;
        opacity: 0.8;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Features Section */
    .ddos-section .bg-alt {
        background-color: #F8F5FA;
    }

    .ddos-section .section-header {
        max-width: 800px;
        margin: 0 auto 4rem auto;
    }

    /* Footer / CTA */
    .ddos-section .cta-section {
        text-align: center;
        padding: 50px 0;
        position: relative;
        color: white;
    }

    .ddos-section .cta-section .container{
        background: #3C0753;
        padding: 43px;
        border-radius: 27px;
    }

    .ddos-section .cta-section h2 {
        color: white;
    }

    .ddos-section .cta-section p {
        color: rgba(255, 255, 255, 0.8);
    }

    .ddos-section .cta-text {
        max-width: 600px;
        margin: 0 auto 2.5rem auto;
    }

    /* Responsive */
    @media (max-width: 900px) {

        .ddos-section .ddos-content-split {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .ddos-section .section-padding {
            padding: 4rem 0;
        }
    }
    
    /* ddos-section */


    /* network page  */
    .kw-network-page button {
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
        border: none;
        background: none;
    }

    /* =============================================
       SHARED UTILITIES
    ============================================= */
    .kw-network-page .section-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: #ff6c2c;
        margin-bottom: 1.2rem;
    }

    .kw-network-page .section-label::before {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: #ff6c2c;
        border-radius: 2px;
    }

    .kw-network-page .section-title {
        font-size: 35px;
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -0.025em;
        color: #1a0a28;
    }

    .kw-network-page .gradient-text {
        background: linear-gradient(135deg, #ff6c2c 0%, #910A67 60%, #3C0753 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .kw-network-page .section-desc {
        color: #6b5480;
        font-size: 1rem;
        font-weight: 400;
        margin-top: 1rem;
        line-height: 1.75;
    }

    .kw-network-page .dot-bg {
        background-color: #ffffff;
        background-size: 28px 28px;
    }

    .kw-network-page .arch-section {
        position: relative;
        padding: 50px 100px;
        overflow: hidden;
    }

    .kw-network-page .arch-section::before {
        content: '';
        position: absolute;
        top: -180px;
        right: -180px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(145, 10, 103, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .kw-network-page .arch-section__inner {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        max-width: 1500px;
        margin: 0 auto;
    }

    .kw-network-page .arch-section__body {
        color: #6b5480;
        margin-top: 1.4rem;
        font-size: 0.97rem;
        font-weight: 400;
        line-height: 1.8;
    }

    .kw-network-page .arch-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        margin-top: 2.8rem;
        background: rgba(60, 7, 83, 0.1);
        border: 1px solid rgba(60, 7, 83, 0.1);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(60, 7, 83, 0.07);
    }

    .kw-network-page .arch-metric {
        background: #ffffff;
        padding: 26px 18px;
        text-align: center;
        transition: background 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .kw-network-page .arch-metric:hover {
        background: #f8f2ff;
    }

    .kw-network-page .arch-metric__num {
        font-size: 2.1rem;
        font-weight: 800;
        line-height: 1;
        color: #ff6c2c;
    }

    .kw-network-page .arch-metric__label {
        font-size: 0.73rem;
        color: #6b5480;
        margin-top: 6px;
        font-weight: 500;
        letter-spacing: 0.04em;
    }

    .kw-network-page .arch-visual {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(60, 7, 83, 0.13);
    }

    .kw-network-page .arch-visual__img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        border-radius: 20px;
        filter: saturate(0.85) brightness(0.88);
    }

    .kw-network-page .arch-visual__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(145deg, rgba(60, 7, 83, 0.28) 0%, transparent 60%);
        border-radius: 20px;
    }

    .kw-network-page .arch-visual__badge {
        position: absolute;
        bottom: 26px;
        left: 26px;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(60, 7, 83, 0.1);
        backdrop-filter: blur(14px);
        border-radius: 14px;
        padding: 14px 20px;
        box-shadow: 0 8px 32px rgba(60, 7, 83, 0.1);
    }

    .kw-network-page .arch-visual__badge-val {
        font-size: 1.55rem;
        font-weight: 800;
        color: #ff6c2c;
        line-height: 1;
    }

    .kw-network-page .arch-visual__badge-label {
        font-size: 0.7rem;
        color: #6b5480;
        letter-spacing: 0.1em;
        font-weight: 600;
        margin-top: 3px;
    }

    .kw-network-page .section-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(60, 7, 83, 0.1), transparent);
    }

    .kw-network-page .pillars-section {
        position: relative;
        padding: 50px 100px;
        background: #f3edfb;
    }

    .kw-network-page .pillars-section__header {
        text-align: center;
        max-width: 680px;
        margin: 0 auto 56px;
    }

    .kw-network-page .pillars-section__header .section-label {
        justify-content: center;
    }

    .kw-network-page .pillars-section__header .section-label::before,
    .kw-network-page .pillars-section__header .section-label::after {
        content: '';
        display: block;
        width: 28px;
        height: 2px;
        background: #ff6c2c;
        border-radius: 2px;
    }

    .kw-network-page .pillars-section__header .section-desc {
        margin: 1rem auto 0;
        text-align: center;
    }

    .kw-network-page .pillars-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        max-width: 1500px;
        margin: 0 auto;
    }

    .kw-network-page .pillar-card {
        background: #ffffff;
        border: 1px solid rgba(60, 7, 83, 0.1);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(60, 7, 83, 0.07);
        transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .kw-network-page .pillar-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(60, 7, 83, 0.13);
        border-color: rgba(255, 108, 44, 0.25);
    }

    .kw-network-page .pillar-card__body {
        padding: 26px 28px 30px;
    }

    .kw-network-page .pillar-card__tag {
        font-size: 0.67rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: #ff6c2c;
        margin-bottom: 8px;
    }

    .kw-network-page .pillar-card__title {
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.25;
        color: #1a0a28;
        margin-bottom: 12px;
    }

    .kw-network-page .pillar-card__text {
        color: #6b5480;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.75;
    }

    .kw-network-page .pillar-card__highlight {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 18px;
        padding: 13px 16px;
        background: linear-gradient(90deg, rgba(255, 108, 44, 0.07), rgba(255, 108, 44, 0.02));
        border-left: 3px solid #ff6c2c;
        border-radius: 0 10px 10px 0;
    }

    .kw-network-page .pillar-card__highlight-text {
        font-size: 0.8rem;
        color: #e85000;
        font-weight: 600;
    }

    .kw-network-page .ecosystem-intro {
        position: relative;
        padding: 50px 100px;
        overflow: hidden;
    }

    .kw-network-page .ecosystem-intro__inner {
        position: relative;
        z-index: 2;
        max-width: 1500px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 80px;
        align-items: center;
    }

    .kw-network-page .ecosystem-intro__visual {
        position: relative;
    }

    .kw-network-page .ecosystem-intro__img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: 20px;
        filter: saturate(0.75) brightness(0.82);
        box-shadow: 0 20px 60px rgba(60, 7, 83, 0.13);
    }

    .kw-network-page .ecosystem-intro__img-overlay {
        position: absolute;
        inset: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(60, 7, 83, 0.18) 0%, transparent 60%);
    }

    .kw-network-page .ecosystem-intro__stat-cards {
        position: absolute;
        right: -28px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .kw-network-page .stat-card {
        background: #ffffff;
        border: 1px solid rgba(60, 7, 83, 0.1);
        border-radius: 14px;
        padding: 14px 20px;
        box-shadow: 0 8px 32px rgba(60, 7, 83, 0.1);
        min-width: 150px;
    }

    .kw-network-page .stat-card__val {
        font-size: 1.7rem;
        font-weight: 800;
        color: #ff6c2c;
        line-height: 1;
    }

    .kw-network-page .stat-card__label {
        font-size: 0.7rem;
        color: #6b5480;
        margin-top: 3px;
        font-weight: 600;
        letter-spacing: 0.06em;
    }

    .kw-network-page .ecosystem-intro__body {
        color: #6b5480;
        font-size: 0.97rem;
        margin-top: 1.4rem;
        line-height: 1.8;
    }

    .kw-network-page .carrier-approach {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .kw-network-page .carrier-approach__item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 18px;
        background: #ffffff;
        border: 1px solid rgba(60, 7, 83, 0.1);
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(60, 7, 83, 0.07);
        transition: background 0.38s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .kw-network-page .carrier-approach__item:hover {
        background: #f8f2ff;
        box-shadow: 0 8px 32px rgba(60, 7, 83, 0.1);
    }

    .kw-network-page .carrier-approach__dot {
        width: 9px;
        height: 9px;
        background: #ff6c2c;
        border-radius: 50%;
        margin-top: 7px;
        flex-shrink: 0;
    }

    .kw-network-page .carrier-approach__text {
        font-size: 0.9rem;
        color: #6b5480;
        font-weight: 400;
        margin-bottom: 0px;
    }

    .kw-network-page .backbone-section {
        padding: 50px 100px;
        background: #ffffffff;
        position: relative;
    }

    .kw-network-page .backbone-section__header {
        max-width: 1500px;
        margin: 0 auto 56px;
    }

    .kw-network-page .backbone-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1500px;
        margin: 0 auto;
    }

    .kw-network-page .backbone-card {
        background: #ffffff;
        border: 1px solid rgba(60, 7, 83, 0.1);
        border-radius: 20px;
        padding: 28px 26px;
        box-shadow: 0 2px 12px rgba(60, 7, 83, 0.07);
        transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.38s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
    }

    .kw-network-page .backbone-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ff6c2c, #910A67);
        opacity: 0;
        transition: opacity 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .kw-network-page .backbone-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(60, 7, 83, 0.13);
        border-color: rgba(255, 108, 44, 0.2);
    }

    .kw-network-page .backbone-card:hover::after {
        opacity: 1;
    }

    .kw-network-page .backbone-card__logo {
        height: 50px;
        object-fit: contain;
        border-radius: 10px;
        margin-bottom: 14px;
        background: #f5f5f5;
        padding: 4px;
    }

    .kw-network-page .backbone-card__as {
        font-size: 0.67rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        color: #ff6c2c;
        margin-bottom: 6px;
    }

    .kw-network-page .backbone-card__name {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a0a28;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .kw-network-page .backbone-card__desc {
        color: #6b5480;
        font-size: 1rem;
        line-height: 1.75;
        height: 200px;
    }

    .kw-network-page .backbone-card__footer {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(60, 7, 83, 0.1);
    }

    .kw-network-page .backbone-card__status {
        width: 8px;
        height: 8px;
        background: #16a34a;
        border-radius: 50%;
        animation: pulse-green 2.2s ease-in-out infinite;
    }

    @keyframes pulse-green {

        0%,
        100% {
            opacity: 1;
            box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.35);
        }

        50% {
            opacity: 0.85;
            box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
        }
    }

    .kw-network-page .backbone-card__status-label {
        font-size: 0.72rem;
        color: #16a34a;
        font-weight: 600;
        letter-spacing: 0.07em;
    }

    /* =============================================
       SECTION 5 – REGIONAL TABS
    ============================================= */
    .kw-network-page .regional-section {
        padding: 50px 100px;
        position: relative;
        overflow: hidden;
    }

    .kw-network-page .regional-section__inner {
        position: relative;
        z-index: 2;
        max-width: 1500px;
        margin: 0 auto;
    }

    .kw-network-page .regional-section__header {
        margin-bottom: 40px;
    }

    .kw-network-page .region-tabs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 36px;
    }

    .kw-network-page .region-tab {
        padding: 10px 22px;
        background: #ffffff;
        border: 1.5px solid rgba(60, 7, 83, 0.1);
        border-radius: 50px;
        color: #6b5480;
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: 0 2px 12px rgba(60, 7, 83, 0.07);
    }

    .kw-network-page .region-tab:hover {
        border-color: rgba(255, 108, 44, 0.4);
        color: #1a0a28;
    }

    .kw-network-page .region-tab.active {
        background: linear-gradient(135deg, #ff6c2c 0%, #e85000 100%);
        border-color: transparent;
        color: #fff;
        box-shadow: 0 4px 18px rgba(255, 108, 44, 0.3);
    }

    .kw-network-page .region-panel {
        display: none;
        animation: fadeUp 0.42s ease forwards;
    }

    .kw-network-page .region-panel.active {
        display: block;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(18px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .kw-network-page .region-panel__intro {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }

    .kw-network-page .region-panel__intro-img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 14px;
        filter: saturate(0.7) brightness(0.82);
    }

    .kw-network-page .region-panel__intro-title {
        font-size: 1.55rem;
        font-weight: 800;
        color: #1a0a28;
        margin-bottom: 10px;
    }

    .kw-network-page .region-panel__intro-desc {
        color: #6b5480;
        font-size: 0.9rem;
        line-height: 1.75;
    }

    .kw-network-page .carriers-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
        gap: 16px;
    }

    .kw-network-page .carrier-item {
        background: #ffffff;
        border: 1px solid rgba(60, 7, 83, 0.1);
        border-radius: 16px;
        padding: 20px 22px;
        box-shadow: 0 2px 12px rgba(60, 7, 83, 0.07);
        transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.38s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .kw-network-page .carrier-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(60, 7, 83, 0.1);
        border-color: rgba(255, 108, 44, 0.22);
    }

    .kw-network-page .carrier-item__header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .kw-network-page .carrier-item__logo {
        height: 50px;
        object-fit: contain;
        border-radius: 8px;
        background: #f0f0f0;
        padding: 3px;
        flex-shrink: 0;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .kw-network-page .carrier-tata-item__logo {
        width: 250px;
    }

    .kw-network-page .carrier-item__name {
        font-size: 18px;
        font-weight: 700;
        color: #1a0a28;
        line-height: 1.2;
    }

    .kw-network-page .carrier-item__as {
        font-size: 0.65rem;
        color: #ff6c2c;
        font-weight: 600;
        letter-spacing: 0.08em;
        margin-top: 1px;
    }

    .kw-network-page .carrier-item__desc {
        color: #6b5480;
        font-size: 15px;
        line-height: 1.7;
    }

    /* =============================================
       SCROLL REVEAL
    ============================================= */
    .kw-network-page .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .kw-network-page .reveal.visible {
        opacity: 1;
        transform: none;
    }

    .kw-network-page .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .kw-network-page .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .kw-network-page .reveal-delay-3 {
        transition-delay: 0.3s;
    }

    .kw-network-page .reveal-delay-4 {
        transition-delay: 0.4s;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {

        .kw-network-page .arch-section__inner,
        .kw-network-page .ecosystem-intro__inner {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .kw-network-page .backbone-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .kw-network-page .pillars-grid {
            grid-template-columns: 1fr;
        }

        .kw-network-page .ecosystem-intro__stat-cards {
            right: 16px;
        }
    }

    @media (max-width: 768px) {
        .kw-network-page .backbone-grid {
            grid-template-columns: 1fr;
        }

        .kw-network-page .arch-metrics {
            grid-template-columns: 1fr;
        }

        .kw-network-page .region-panel__intro {
            grid-template-columns: 1fr;
        }

        .kw-network-page .region-panel__intro-img {
            display: none;
        }

        .kw-network-page .arch-visual {
            display: none;
        }
    }
    /* network page  */

/* kw-solutions-section */
.kw-solutions-section {
        background: #0d0010;
        padding: 90px 24px;
        font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
        -webkit-font-smoothing: antialiased;
        position: relative;
        overflow: hidden;
    }

    .kw-solutions-section::before {
        content: '';
        position: absolute;
        top: -140px;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 520px;
        background: radial-gradient(ellipse at center, rgba(114, 4, 85, 0.32) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    .kw-solutions-inner {
        max-width: 1500px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .kw-solutions-label {
        display: inline-block;
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 0.13em;
        text-transform: uppercase;
        color: #ff6c2c;
        background: rgba(255, 108, 44, 0.12);
        border: 1px solid rgba(255, 108, 44, 0.28);
        border-radius: 30px;
        padding: 5px 16px;
        margin-bottom: 20px;
    }

    .kw-solutions-heading {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: #fff0f8;
        line-height: 1.2;
        margin: 0 0 14px;
        max-width: 680px;
    }

    .kw-solutions-heading span {
        color: #ff6c2c;
    }

    .kw-solutions-subheading {
        font-size: 17px;
        line-height: 1.75;
        color: #c9a0bb;
        max-width: 1100px;
        margin: 0 0 30px;
    }

    .kw-solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
        gap: 20px;
    }

    .kw-solutions-card {
        background: linear-gradient(145deg, #1f0130 0%, #160022 100%);
        border: 1px solid rgba(145, 10, 103, 0.22);
        border-radius: 14px;
        padding: 32px 28px 28px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        transition: border-color 0.25s ease, transform 0.25s ease;
        position: relative;
        overflow: hidden;
    }

    .kw-solutions-card::after {
        content: '';
        position: absolute;
        left: 0;
        top: 18%;
        height: 64%;
        width: 2px;
        background: linear-gradient(to bottom, transparent, #ff6c2c, transparent);
        border-radius: 2px;
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .kw-solutions-card:hover {
        border-color: rgba(255, 108, 44, 0.5);
        transform: translateY(-4px);
    }

    .kw-solutions-card:hover::after {
        opacity: 1;
    }

    .kw-solutions-card-icon {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        background: linear-gradient(135deg, #3C0753, #720455);
        border: 1px solid rgba(145, 10, 103, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .kw-solutions-card-icon svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: #ff6c2c;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .kw-solutions-card-title {
        font-size: 18px;
        font-weight: 600;
        color: #fff0f8;
        line-height: 1.3;
        margin: 0;
    }

    .kw-solutions-card-desc {
        font-size: 16px;
        line-height: 1.8;
        color: #c9a0bb;
        margin: 0;
        flex: 1;
    }

    .kw-solutions-card-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-top: 4px;
    }

    .kw-solutions-tag {
        font-size: 13px;
        font-weight: 500;
        color: #ffb08a;
        background: rgba(255, 108, 44, 0.1);
        border: 1px solid rgba(255, 108, 44, 0.1);
        border-radius: 30px;
        padding: 3px 10px;
        white-space: nowrap;
    }

    .kw-solutions-card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 500;
        color: #ff6c2c;
        text-decoration: none;
        margin-top: 6px;
        transition: gap 0.2s ease, opacity 0.2s ease;
    }

    .kw-solutions-card-link:hover {
        gap: 10px;
        opacity: 0.82;
    }

    .kw-solutions-card-link svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    @media (max-width: 640px) {
        .kw-solutions-section {
            padding: 60px 16px;
        }

        .kw-solutions-grid {
            grid-template-columns: 1fr;
        }
    }
/* kw-solutions-section */

/* usa-dedicated-servers-page */
.usa-dedicated-servers-page a {
        color: #910A67;
        text-decoration: none;
        transition: color 0.15s ease;
    }

    .usa-dedicated-servers-page a:hover {
        color: #ff6c2c;
    }

    /* ── Container ── */
    .usa-dedicated-servers-page .container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    /* ── Buttons ── */
    .usa-dedicated-servers-page .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #910A67, #3C0753);
        color: #ffffff;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 14px 28px;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(145, 10, 103, 0.3);
        white-space: nowrap;
    }

    .usa-dedicated-servers-page .btn-primary:hover {
        background: linear-gradient(135deg, #ff6c2c, #d4551f);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(255, 108, 44, 0.4);
    }

    .usa-dedicated-servers-page .btn-primary--full {
        width: 100%;
        justify-content: center;
    }

    .usa-dedicated-servers-page .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: #ffffff;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 13px 28px;
        border-radius: 50px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .usa-dedicated-servers-page .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: #3C0753;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 13px 28px;
        border-radius: 50px;
        border: 2px solid #3C0753;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .btn-outline:hover {
        background: #3C0753;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .usa-dedicated-servers-page .btn-text {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #910A67;
        font-weight: 600;
        font-size: 0.9rem;
        transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .btn-text:hover {
        gap: 10px;
        color: #ff6c2c;
    }

    .usa-dedicated-servers-page .btn-arrow {
        display: inline-block;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .btn-primary:hover .btn-arrow,
    .usa-dedicated-servers-page .btn-secondary:hover .btn-arrow {
        transform: translateX(4px);
    }

    /* ── Section Helpers ── */
    .usa-dedicated-servers-page .section-tag {
        display: inline-block;
        font-family: 'Poppins', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #ff6c2c;
        background: rgba(255, 108, 44, 0.1);
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .usa-dedicated-servers-page .section-tag--light {
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.15);
    }

    .usa-dedicated-servers-page .section-header {
        text-align: center;
        margin-bottom: 56px;
    }

    .usa-dedicated-servers-page .section-header--light {
        color: #ffffff;
    }

    .usa-dedicated-servers-page .section-title {
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.02em;
        color: #1a0a2e;
        max-width: 680px;
        margin: 0 auto 16px;
    }

    .usa-dedicated-servers-page .section-title--light {
        color: #ffffff;
    }

    .usa-dedicated-servers-page .section-desc {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 560px;
        margin: 0 auto;
    }

    .usa-dedicated-servers-page .section-desc--dark {
        color: #5a4a6e;
    }

    /* ══════════════════════════════════════════════
   INTRO SECTION
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .intro {
        background: #faf8fc;
        padding: 50px 0px;
        position: relative;
        overflow: hidden;
    }

    .usa-dedicated-servers-page .intro::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(145, 10, 103, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .usa-dedicated-servers-page .intro__noise {
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
        pointer-events: none;
        opacity: 0.4;
    }

    .usa-dedicated-servers-page .intro__line {
        position: absolute;
        background: linear-gradient(90deg, transparent, rgba(145, 10, 103, 0.15), transparent);
        height: 1px;
        width: 80%;
        left: 10%;
    }

    .usa-dedicated-servers-page .intro__line--1 {
        top: 30%;
    }

    .usa-dedicated-servers-page .intro__line--2 {
        top: 70%;
    }

    .usa-dedicated-servers-page .intro__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1px solid #e6dff0;
        border-radius: 50px;
        padding: 8px 18px;
        font-size: 0.82rem;
        font-weight: 500;
        color: #5a4a6e;
        margin-bottom: 36px;
        box-shadow: 0 2px 8px rgba(60, 7, 83, 0.08);
    }

    .usa-dedicated-servers-page .badge-dot {
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
        animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {

        0%,
        100% {
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
        }

        50% {
            box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
        }
    }

    .usa-dedicated-servers-page .intro__layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .usa-dedicated-servers-page .intro__heading {
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.02em;
        color: #1a0a2e;
        margin-bottom: 20px;
    }

    .usa-dedicated-servers-page .intro__heading em {
        font-style: italic;
        color: #910A67;
    }

    .usa-dedicated-servers-page .intro__sub {
        font-size: 1.15rem;
        font-weight: 500;
        color: #910A67;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .usa-dedicated-servers-page .intro__desc {
        color: #5a4a6e;
        margin-bottom: 36px;
        font-size: 0.97rem;
    }

    /* ── Server Graphic ── */
    .usa-dedicated-servers-page .server-graphic {
        background: #ffffff;
        border: 1px solid #e6dff0;
        border-radius: 20px;
        padding: 1px;
        box-shadow: 0 8px 32px rgba(60, 7, 83, 0.12);
        position: relative;
    }

    .usa-dedicated-servers-page .server-graphic::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 24px;
        right: 24px;
        height: 3px;
        background: linear-gradient(90deg, #3C0753, #ff6c2c);
        border-radius: 0 0 4px 4px;
    }

    .usa-dedicated-servers-page .server-graphic img {
        width: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    /* ══════════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .features {
        padding: 50px 0px;
        background: #ffffff;
    }

    .usa-dedicated-servers-page .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .usa-dedicated-servers-page .feature-card {
        background: #ffffff;
        border: 1px solid #e6dff0;
        border-radius: 20px;
        padding: 32px 28px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .usa-dedicated-servers-page .feature-card:hover {
        border-color: #910A67;
        box-shadow: 0 8px 32px rgba(60, 7, 83, 0.12);
        transform: translateY(-4px);
    }

    .usa-dedicated-servers-page .feature-card--wide {
        grid-column: span 2;
        flex-direction: row;
        align-items: flex-start;
    }

    .usa-dedicated-servers-page .feature-card--wide .feature-card__body {
        flex: 1;
    }

    .usa-dedicated-servers-page .feature-card--highlight {
        background: linear-gradient(135deg, rgba(60, 7, 83, 0.04), rgba(145, 10, 103, 0.06));
        border-color: rgba(145, 10, 103, 0.25);
    }

    .usa-dedicated-servers-page .feature-card__icon {
        width: 52px;
        height: 52px;
        background: #f3eef8;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #910A67;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .feature-card__icon svg {
        width: 28px;
        height: 28px;
    }

    .usa-dedicated-servers-page .feature-card:hover .feature-card__icon {
        background: #910A67;
        color: #ffffff;
    }

    .usa-dedicated-servers-page .feature-card__body h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a0a2e;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .usa-dedicated-servers-page .feature-card__body p {
        font-size: 0.9rem;
        color: #5a4a6e;
        line-height: 1.65;
    }

    .usa-dedicated-servers-page .feature-card__accent {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #3C0753, #ff6c2c);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .feature-card:hover .feature-card__accent {
        transform: scaleX(1);
    }

    .usa-dedicated-servers-page .feature-card__tag {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #ff6c2c, #d4551f);
        color: #ffffff;
        font-size: 0.7rem;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        padding: 3px 10px;
        border-radius: 50px;
        letter-spacing: 0.05em;
    }

    .usa-dedicated-servers-page .uptime-bar {
        margin-top: auto;
        background: #f3eef8;
        border-radius: 50px;
        height: 8px;
        overflow: hidden;
        position: relative;
    }

    .usa-dedicated-servers-page .uptime-bar__fill {
        height: 100%;
        background: linear-gradient(90deg, #910A67, #ff6c2c);
        border-radius: 50px;
        width: 0;
        transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    }

    .usa-dedicated-servers-page .uptime-bar__fill.animated {
        width: 99.99%;
    }

    .usa-dedicated-servers-page .uptime-bar__label {
        position: absolute;
        right: 0;
        top: -22px;
        font-family: 'Poppins', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        color: #910A67;
    }

    /* ══════════════════════════════════════════════
   HARDWARE SECTION
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .hardware {
        background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
        padding: 50px 0px;
        position: relative;
        overflow: hidden;
    }

    .usa-dedicated-servers-page .hardware::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .usa-dedicated-servers-page .hardware__bg-shape {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 108, 44, 0.15) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        pointer-events: none;
    }

    .usa-dedicated-servers-page .workload-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
        margin-bottom: 48px;
    }

    .usa-dedicated-servers-page .workload-card {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 28px 20px;
        color: #ffffff;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .usa-dedicated-servers-page .workload-card:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 108, 44, 0.5);
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .usa-dedicated-servers-page .workload-card::before {
        content: attr(data-index);
        position: absolute;
        top: 16px;
        right: 16px;
        font-family: 'Poppins', sans-serif;
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.3);
        font-weight: 700;
    }

    .usa-dedicated-servers-page .workload-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        line-height: 1.3;
        color: #ffffff;
    }

    .usa-dedicated-servers-page .workload-card p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.55;
        flex: 1;
    }

    .usa-dedicated-servers-page .workload-card__from {
        display: block;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
        font-family: 'Poppins', sans-serif;
    }

    .usa-dedicated-servers-page .workload-card__from strong {
        color: #ff8f5a;
        font-size: 0.95rem;
    }

    .usa-dedicated-servers-page .workload-card--featured {
        border-color: rgba(255, 108, 44, 0.4);
        background: rgba(255, 108, 44, 0.1);
    }

    .usa-dedicated-servers-page .workload-card__badge {
        display: inline-block;
        background: #ff6c2c;
        color: #ffffff;
        font-size: 0.65rem;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        padding: 3px 9px;
        border-radius: 50px;
        letter-spacing: 0.08em;
        width: fit-content;
    }

    .usa-dedicated-servers-page .hardware__cta {
        text-align: center;
    }

    /* ══════════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .pricing {
        padding: 50px 0px;
        background: #faf8fc;
    }

    .usa-dedicated-servers-page .pricing-wrapper {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 28px;
        align-items: start;
    }

    .usa-dedicated-servers-page .pricing-table-wrap {
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid #e6dff0;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(60, 7, 83, 0.08);
    }

    .usa-dedicated-servers-page .pricing-table {
        width: 100%;
        border-collapse: collapse;
    }

    .usa-dedicated-servers-page .pricing-table thead {
        background: linear-gradient(135deg, #3C0753, #720455);
    }

    .usa-dedicated-servers-page .pricing-table th {
        text-align: left;
        padding: 18px 24px;
        color: rgba(255, 255, 255, 0.85);
        font-family: 'Poppins', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .usa-dedicated-servers-page .pricing-table td {
        padding: 18px 24px;
        border-bottom: 1px solid #e6dff0;
        font-size: 0.92rem;
        color: #5a4a6e;
        vertical-align: middle;
    }

    .usa-dedicated-servers-page .pricing-table tbody tr:last-child td {
        border-bottom: none;
    }

    .usa-dedicated-servers-page .pricing-table tbody tr {
        transition: background 0.15s ease;
    }

    .usa-dedicated-servers-page .pricing-table tbody tr:hover {
        background: #faf8fc;
    }

    .usa-dedicated-servers-page .pricing-row--popular {
        background: rgba(255, 108, 44, 0.04);
    }

    .usa-dedicated-servers-page .pricing-row--popular td {
        border-bottom-color: rgba(255, 108, 44, 0.15);
    }

    .usa-dedicated-servers-page .plan-name {
        font-weight: 600;
        color: #1a0a2e;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .usa-dedicated-servers-page .plan-badge {
        font-size: 0.65rem;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        padding: 2px 9px;
        border-radius: 50px;
        background: rgba(255, 108, 44, 0.12);
        color: #ff6c2c;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .usa-dedicated-servers-page .plan-badge--gpu {
        background: rgba(145, 10, 103, 0.1);
        color: #910A67;
    }

    .usa-dedicated-servers-page .price-tag {
        font-family: 'Poppins', sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: #910A67;
    }

    .usa-dedicated-servers-page .price-tag span {
        font-size: 0.8rem;
        font-weight: 500;
        color: #8878a0;
        font-family: 'Poppins', sans-serif;
    }

    .usa-dedicated-servers-page .price-tag--custom {
        font-size: 1rem;
        font-style: italic;
        color: #8878a0;
    }

    .usa-dedicated-servers-page .pricing-aside__card {
        background: linear-gradient(135deg, #3C0753, #910A67);
        color: #ffffff;
        border-radius: 20px;
        padding: 32px 28px;
        margin-bottom: 16px;
    }

    .usa-dedicated-servers-page .pricing-aside__card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .usa-dedicated-servers-page .pricing-aside__card p {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 24px;
        line-height: 1.65;
    }

    .usa-dedicated-servers-page .pricing-aside__card .btn-primary {
        background: #ffffff;
        color: #3C0753;
        box-shadow: none;
    }

    .usa-dedicated-servers-page .pricing-aside__card .btn-primary:hover {
        background: #ff6c2c;
        color: #ffffff;
    }

    .usa-dedicated-servers-page .pricing-aside__guarantee {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #ffffff;
        border: 1px solid #e6dff0;
        border-radius: 12px;
        padding: 16px 18px;
        font-size: 0.85rem;
        color: #5a4a6e;
        font-weight: 500;
    }

    .usa-dedicated-servers-page .pricing-aside__guarantee svg {
        width: 22px;
        height: 22px;
        color: #910A67;
        flex-shrink: 0;
    }

    /* ══════════════════════════════════════════════
   LOCATIONS SECTION
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .locations {
        padding: 50px 0px;
        background: #ffffff;
    }

    .usa-dedicated-servers-page .locations-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }

    /* Update these map container styles */
    .usa-dedicated-servers-page .locations-map {
        position: relative;
        width: 100%;
        border-radius: 20px;
        background: #faf8fc;
        border: 1px solid #e6dff0;
        overflow: hidden;
    }

    .usa-dedicated-servers-page .locations-map img {
        width: 100%;
        height: auto;
        display: block;
        /* Removes unwanted space below the image */
    }

    .usa-dedicated-servers-page .usa-map {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: transparent;
        /* Changed from colored background */
        /* Removed border and border-radius since the wrapper handles it */
    }

    /* Tooltip animation (optional but smooth) */
    .usa-dedicated-servers-page .map-tooltip {
        transition: transform 0.1s ease-out;
        pointer-events: none;
        /* Prevents the tooltip from blocking hover events */
    }

    .usa-dedicated-servers-page .map-dot {
        fill: #910A67;
        stroke: #ffffff;
        stroke-width: 1.5;
        cursor: pointer;
        transition: all 0.15s ease;
        filter: drop-shadow(0 2px 4px rgba(145, 10, 103, 0.3));
    }

    .usa-dedicated-servers-page .map-dot:hover {
        fill: #ff6c2c;
        r: 8;
    }

    .usa-dedicated-servers-page .map-dot--central {
        fill: #720455;
    }

    .usa-dedicated-servers-page .map-dot--west {
        fill: #ff6c2c;
    }

    .usa-dedicated-servers-page .map-legend {
        display: flex;
        gap: 20px;
        margin-top: 12px;
        justify-content: center;
    }

    .usa-dedicated-servers-page .map-legend__item {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 0.8rem;
        color: #5a4a6e;
        font-weight: 500;
    }

    .usa-dedicated-servers-page .map-legend__item::before {
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .usa-dedicated-servers-page .map-legend__item--east::before {
        background: #910A67;
    }

    .usa-dedicated-servers-page .map-legend__item--central::before {
        background: #720455;
    }

    .usa-dedicated-servers-page .map-legend__item--west::before {
        background: #ff6c2c;
    }

    .usa-dedicated-servers-page .region-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .usa-dedicated-servers-page .region {
        background: #faf8fc;
        border-radius: 12px;
        padding: 24px;
        border: 1px solid #e6dff0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .region:hover {
        border-color: #910A67;
        box-shadow: 0 2px 8px rgba(60, 7, 83, 0.08);
    }

    .usa-dedicated-servers-page .region__header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }

    .usa-dedicated-servers-page .region__dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .usa-dedicated-servers-page .region__dot--east {
        background: #910A67;
    }

    .usa-dedicated-servers-page .region__dot--central {
        background: #720455;
    }

    .usa-dedicated-servers-page .region__dot--west {
        background: #ff6c2c;
    }

    .usa-dedicated-servers-page .region h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #1a0a2e;
    }

    .usa-dedicated-servers-page .region ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0px;
    }

    .usa-dedicated-servers-page .region ul li a {
        display: inline-block;
        font-size: 0.82rem;
        font-weight: 500;
        color: #5a4a6e;
        background: #ffffff;
        border: 1px solid #e6dff0;
        border-radius: 50px;
        padding: 4px 12px;
        transition: all 0.15s ease;
    }

    .usa-dedicated-servers-page .region ul li a:hover {
        background: #910A67;
        color: #ffffff;
        border-color: #910A67;
    }

    /* ══════════════════════════════════════════════
   CLIENTS SECTION
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .clients {
        background: linear-gradient(135deg, #3C0753 0%, #720455 60%, #910A67 100%);
        padding: 50px 0px;
        position: relative;
        overflow: hidden;
    }

    .usa-dedicated-servers-page .clients__bg {
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='white' stroke-opacity='0.03' fill='none'/%3E%3Ccircle cx='50' cy='50' r='25' stroke='white' stroke-opacity='0.02' fill='none'/%3E%3C/svg%3E");
        background-size: 200px 200px;
    }

    .usa-dedicated-servers-page .client-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .usa-dedicated-servers-page .client-item {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 32px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
        color: #ffffff;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(8px);
        cursor: default;
    }

    .usa-dedicated-servers-page .client-item:hover {
        background: rgba(255, 108, 44, 0.15);
        border-color: rgba(255, 108, 44, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    }

    .usa-dedicated-servers-page .client-item__icon {
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .client-item__icon svg {
        width: 28px;
        height: 28px;
    }

    .usa-dedicated-servers-page .client-item:hover .client-item__icon {
        background: #ff6c2c;
        color: #ffffff;
    }

    /* ══════════════════════════════════════════════
   CTA FINAL SECTION
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .cta-final {
        padding: 50px 0;
        background: #faf8fc;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .usa-dedicated-servers-page .cta-final__grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(145, 10, 103, 0.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(145, 10, 103, 0.06) 1px, transparent 1px);
        background-size: 40px 40px;
        mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }

    .usa-dedicated-servers-page .cta-final__inner {
        position: relative;
        z-index: 1;
        max-width: 1000px;
        margin: 0 auto;
    }

    .usa-dedicated-servers-page .cta-final__tag {
        display: inline-block;
        font-family: 'Poppins', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #ff6c2c;
        background: rgba(255, 108, 44, 0.1);
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 20px;
    }

    .usa-dedicated-servers-page .cta-final h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 35px;
        font-weight: 800;
        letter-spacing: -0.02em;
        color: #1a0a2e;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .usa-dedicated-servers-page .cta-final p {
        font-size: 1.05rem;
        color: #5a4a6e;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .usa-dedicated-servers-page .cta-buttons {
        display: flex;
        flex-direction: row !important;
        gap: 16px;
        justify-content: center;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }

    .usa-dedicated-servers-page .cta-trust {
        display: flex;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
        font-size: 0.82rem;
        color: #8878a0;
        font-weight: 500;
    }

    .usa-dedicated-servers-page .cta-trust span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    /* ══════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .faq {
        padding: clamp(60px, 8vw, 110px) 0;
        background: #ffffff;
    }

    .usa-dedicated-servers-page .faq-layout {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 60px;
        align-items: start;
    }

    .usa-dedicated-servers-page .faq-sidebar {
        position: sticky;
        top: 100px;
    }

    .usa-dedicated-servers-page .faq-sidebar__title {
        font-family: 'Poppins', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.2;
        color: #1a0a2e;
        margin: 12px 0 16px;
    }

    .usa-dedicated-servers-page .faq-sidebar p {
        font-size: 0.92rem;
        color: #5a4a6e;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .usa-dedicated-servers-page .faq-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .usa-dedicated-servers-page .faq-item {
        border: 1px solid #e6dff0;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .faq-item[open] {
        border-color: #910A67;
        box-shadow: 0 2px 8px rgba(60, 7, 83, 0.08);
    }

    .usa-dedicated-servers-page .faq-item summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 24px;
        cursor: pointer;
        list-style: none;
        font-weight: 600;
        font-size: 0.95rem;
        color: #1a0a2e;
        transition: all 0.15s ease;
        user-select: none;
        background: #ffffff;
    }

    .usa-dedicated-servers-page .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .usa-dedicated-servers-page .faq-item summary:hover {
        background: #faf8fc;
        color: #910A67;
    }

    .usa-dedicated-servers-page .faq-item[open] summary {
        background: linear-gradient(135deg, rgba(60, 7, 83, 0.04), rgba(145, 10, 103, 0.04));
        color: #910A67;
        border-bottom: 1px solid #e6dff0;
    }

    .usa-dedicated-servers-page .faq-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #f3eef8;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8878a0;
        flex-shrink: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .usa-dedicated-servers-page .faq-icon svg {
        width: 16px;
        height: 16px;
    }

    .usa-dedicated-servers-page .faq-item[open] .faq-icon {
        background: #910A67;
        color: #ffffff;
        transform: rotate(180deg);
    }

    .usa-dedicated-servers-page .faq-item__body {
        padding: 20px 24px;
        background: #ffffff;
    }

    .usa-dedicated-servers-page .faq-item__body p {
        font-size: 0.9rem;
        color: #5a4a6e;
        line-height: 1.7;
    }

    /* ══════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════ */
    .usa-dedicated-servers-page .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .usa-dedicated-servers-page .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .usa-dedicated-servers-page .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .usa-dedicated-servers-page .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .usa-dedicated-servers-page .reveal-delay-3 {
        transition-delay: 0.3s;
    }

    .usa-dedicated-servers-page .reveal-delay-4 {
        transition-delay: 0.4s;
    }

    .usa-dedicated-servers-page .reveal-delay-5 {
        transition-delay: 0.5s;
    }

    /* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
    @media (max-width: 1100px) {
        .usa-dedicated-servers-page .workload-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .usa-dedicated-servers-page .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .usa-dedicated-servers-page .feature-card--wide {
            grid-column: span 2;
        }
    }

    @media (max-width: 900px) {
        .usa-dedicated-servers-page .intro__layout {
            grid-template-columns: 1fr;
        }

        .usa-dedicated-servers-page .intro__visual {
            order: -1;
        }

        .usa-dedicated-servers-page .locations-layout {
            grid-template-columns: 1fr;
        }

        .usa-dedicated-servers-page .pricing-wrapper {
            grid-template-columns: 1fr;
        }

        .usa-dedicated-servers-page .faq-layout {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .usa-dedicated-servers-page .faq-sidebar {
            position: static;
        }

        .usa-dedicated-servers-page .client-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .usa-dedicated-servers-page .workload-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .usa-dedicated-servers-page .features-grid {
            grid-template-columns: 1fr;
        }

        .usa-dedicated-servers-page .feature-card--wide {
            grid-column: span 1;
            flex-direction: column;
        }

        .usa-dedicated-servers-page .client-grid {
            grid-template-columns: 1fr;
        }

        .usa-dedicated-servers-page .workload-grid {
            grid-template-columns: 1fr;
        }
    }

    .usa-dedicated-servers-page .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .usa-dedicated-servers-page .cta-trust {
        gap: 12px;
        font-size: 0.78rem;
    }

    .usa-dedicated-servers-page .pricing-table th:last-child,
    .usa-dedicated-servers-page .pricing-table td:last-child {
        display: none;
    }
/* usa-dedicated-servers-page */