:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #00c6ff;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    transform: scale(0.9);
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.navbar .btn-login {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.navbar .btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.hero {
    background: url("3409297.jpg");
    color: white;
    padding: 130px 0 100px;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='pattern' width='40' height='40' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform='rotate(45)'%3E%3Crect width='100%25' height='100%25' fill='none'/%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23pattern)'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-btn {
    background: white;
    color: var(--primary);
    border-radius: 30px;
    padding: 12px 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.hero-btn:hover:before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.feature-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
    z-index: -1;
    transition: all 0.5s ease;
}

.feature-card:hover:before {
    width: 200%;
    height: 200%;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 198, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotateY(180deg);
}

.feature-icon {
    font-size: 2rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.pricing-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(0, 198, 255, 0.03));
}

.pricing-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: none;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-card .card-header {
    background: transparent;
    border: none;
    padding-top: 30px;
    text-align: center;
}

.pricing-card .card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card .speed {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0 10px;
}

.pricing-card.featured:before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: var(--dark);
}

.pricing-card .period {
    color: var(--gray);
    font-weight: 400;
    font-size: 0.9rem;
}

.pricing-card .features {
    margin: 25px 0;
}

.pricing-card .features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .features li i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 0.9rem;
}

.pricing-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-section {
    position: relative;
}

.contact-card {
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    background: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 198, 255, 0.1));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-icon i {
    font-size: 1.2rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.contact-info-text {
    font-weight: 500;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    margin: 0 10px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}
/* Add to your existing style section */

/* Tech background elements */
.tech-bg-elements,
.services-bg,
.pricing-particles,
.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Circuit paths */
.circuit-path {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    border-radius: 1px;
}

.tech-node {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
    animation: nodePulse 3s infinite;
    animation-delay: var(--delay, 0s);
}

/* Service section server styling */
.service-server-row {
    position: absolute;
    left: 0;
    width: 100%;
    height: 10px;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    opacity: 0.15;
}

.service-led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: blink 3s infinite;
}

.service-led.green {
    background-color: #10b981;
    box-shadow: 0 0 5px #10b981;
}

.service-led.blue {
    background-color: #3b82f6;
    box-shadow: 0 0 5px #3b82f6;
}

.service-led.amber {
    background-color: #f59e0b;
    box-shadow: 0 0 5px #f59e0b;
}

/* Data nodes for pricing section */
.data-node {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
    animation: floatNode 10s linear infinite;
}

@keyframes floatNode {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--x, 100px), var(--y, -100px));
        opacity: 0;
    }
}

/* Contact section circuit elements */
.contact-circuit {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 1px;
}

.contact-node {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 4px rgba(59, 130, 246, 0.3);
    animation: pulseSlow 4s infinite;
}

@keyframes pulseSlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

/* Service cards server rack styling */
.service-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
    height: 100%;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 2;
}

.service-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(0deg, transparent 24px, rgba(37, 99, 235, 0.05) 25px, transparent 26px),
            linear-gradient(90deg, transparent 24px, rgba(37, 99, 235, 0.05) 25px, transparent 26px);
    background-size: 25px 25px;
    opacity: 0.2;
    z-index: -1;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 198, 255, 0.1));
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.service-icon:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.2);
    top: 10px;
    right: 10px;
    animation: blink 2s infinite;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

/* Enhanced data packet flow animations */
@keyframes flow1 {
    0% { left: 10%; top: 20%; opacity: 0; width: 5px; }
    20% { left: 30%; top: 25%; opacity: 1; width: 15px; }
    40% { left: 50%; top: 20%; opacity: 1; width: 20px; }
    60% { left: 70%; top: 25%; opacity: 1; width: 15px; }
    80% { left: 85%; top: 30%; opacity: 1; width: 10px; }
    100% { left: 95%; top: 35%; opacity: 0; width: 5px; }
}

@keyframes flow2 {
    0% { right: 10%; top: 40%; opacity: 0; width: 5px; }
    20% { right: 30%; top: 35%; opacity: 1; width: 15px; }
    40% { right: 50%; top: 40%; opacity: 1; width: 20px; }
    60% { right: 70%; top: 35%; opacity: 1; width: 15px; }
    80% { right: 85%; top: 30%; opacity: 1; width: 10px; }
    100% { right: 95%; top: 25%; opacity: 0; width: 5px; }
}

@keyframes flow3 {
    0% { left: 50%; top: 10%; opacity: 0; width: 5px; }
    20% { left: 40%; top: 30%; opacity: 1; width: 12px; }
    40% { left: 30%; top: 50%; opacity: 1; width: 18px; }
    60% { left: 20%; top: 70%; opacity: 1; width: 12px; }
    80% { left: 10%; top: 85%; opacity: 1; width: 8px; }
    100% { left: 5%; top: 90%; opacity: 0; width: 5px; }
}

@keyframes flow4 {
    0% { right: 50%; top: 10%; opacity: 0; width: 5px; }
    20% { right: 40%; top: 30%; opacity: 1; width: 12px; }
    40% { right: 30%; top: 50%; opacity: 1; width: 18px; }
    60% { right: 20%; top: 70%; opacity: 1; width: 12px; }
    80% { right: 10%; top: 85%; opacity: 1; width: 8px; }
    100% { right: 5%; top: 90%; opacity: 0; width: 5px; }
}

@keyframes flow5 {
    0% { left: 10%; bottom: 10%; opacity: 0; width: 5px; }
    20% { left: 25%; bottom: 25%; opacity: 1; width: 12px; }
    40% { left: 40%; bottom: 40%; opacity: 1; width: 18px; }
    60% { left: 55%; bottom: 55%; opacity: 1; width: 12px; }
    80% { left: 70%; bottom: 70%; opacity: 1; width: 8px; }
    100% { left: 85%; bottom: 85%; opacity: 0; width: 5px; }
}

@keyframes flow6 {
    0% { right: 10%; bottom: 10%; opacity: 0; width: 5px; }
    20% { right: 25%; bottom: 25%; opacity: 1; width: 12px; }
    40% { right: 40%; bottom: 40%; opacity: 1; width: 18px; }
    60% { right: 55%; bottom: 55%; opacity: 1; width: 12px; }
    80% { right: 70%; bottom: 70%; opacity: 1; width: 8px; }
    100% { right: 85%; bottom: 85%; opacity: 0; width: 5px; }
}

@keyframes flow7 {
    0% { left: 50%; bottom: 10%; opacity: 0; width: 5px; }
    20% { left: 40%; bottom: 25%; opacity: 1; width: 12px; }
    40% { left: 30%; bottom: 40%; opacity: 1; width: 18px; }
    60% { left: 20%; bottom: 55%; opacity: 1; width: 12px; }
    80% { left: 10%; bottom: 70%; opacity: 1; width: 8px; }
    100% { left: 5%; bottom: 80%; opacity: 0; width: 5px; }
}

@keyframes flow8 {
    0% { right: 50%; bottom: 10%; opacity: 0; width: 5px; }
    20% { right: 40%; bottom: 25%; opacity: 1; width: 12px; }
    40% { right: 30%; bottom: 40%; opacity: 1; width: 18px; }
    60% { right: 20%; bottom: 55%; opacity: 1; width: 12px; }
    80% { right: 10%; bottom: 70%; opacity: 1; width: 8px; }
    100% { right: 5%; bottom: 80%; opacity: 0; width: 5px; }
}

/* Hero Section Server-themed styling */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-animation:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(0deg, transparent 24px, rgba(255, 255, 255, 0.05) 25px, transparent 26px),
            linear-gradient(90deg, transparent 24px, rgba(255, 255, 255, 0.05) 25px, transparent 26px);
    background-size: 25px 25px;
}

/* Pricing cards server styling */
.pricing-card {
    position: relative;
    z-index: 1;
}

.pricing-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(37, 99, 235, 0.03) 15px, rgba(37, 99, 235, 0.03) 16px),
            repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(37, 99, 235, 0.03) 15px, rgba(37, 99, 235, 0.03) 16px);
    z-index: -1;
    opacity: 0.5;
    border-radius: 20px;
}

.pricing-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 198, 255, 0.1));
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
}



/* Contact form card and info card server styling */
.contact-info-card,
.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
}

.contact-info-card:after,
.contact-form-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(0deg, transparent 29px, rgba(37, 99, 235, 0.03) 30px, transparent 31px),
            linear-gradient(90deg, transparent 29px, rgba(37, 99, 235, 0.03) 30px, transparent 31px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.5;
    border-radius: 15px;
}

/* Counter cards server styling */
.counter-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    z-index: 1;
}

.counter-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    z-index: 0;
}

.counter-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 25%, transparent 25%, transparent 50%,
    rgba(37, 99, 235, 0.03) 50%, rgba(37, 99, 235, 0.03) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.counter-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.counter-value:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    top: 15px;
    right: -15px;
    animation: blink 2s infinite;
    display: inline-block;
}

/* About items server theme */
.about-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(0, 198, 255, 0.1));
    font-size: 1.3rem;
    color: var(--primary);
    margin-right: 1.2rem;
    position: relative;
    overflow: hidden;
}

.about-icon-wrapper:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.2);
    top: 8px;
    right: 8px;
    animation: blink 2s infinite;
}

/* Testimonial cards server theme */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}

.testimonial-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.testimonial-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(rgba(37, 99, 235, 0.05) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
    border-radius: 15px;
}

.testimonial-rating i {
    color: #fbbf24;
    margin-right: 3px;
}


