/* Home Page Specific Styles */

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.svg');
    background-size: cover;
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--accent-color);
    z-index: -1;
}

/* Modern Hero Section */
.hero-modern {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    color: #fff;
    background-color: #050a1c;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(56, 102, 233, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 102, 233, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(56, 102, 233, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 78, 205, 0.1), transparent 40%);
}

.hero-modern .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-modern .hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    margin-right: 0.5rem;
    color: #3866e9;
}

.hero-modern h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-modern h1 .highlight {
    background: linear-gradient(to right, #3866e9, #8e4bdb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.hero-modern .hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-modern .btn-primary {
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    background: linear-gradient(to right, #3866e9, #6d53e7);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(56, 102, 233, 0.3);
}

.hero-modern .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 102, 233, 0.4);
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-video:hover {
    opacity: 0.85;
}

.video-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.video-icon i {
    color: #fff;
    font-size: 0.9rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-modern .hero-image {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: center;
}

.dashboard-image {
    position: relative;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.dashboard-image:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    background: rgba(26, 34, 53, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: float 6s infinite ease-in-out;
    z-index: 2;
}

.card-1 {
    top: 15%;
    left: -15%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -15%;
    animation-delay: 2s;
}

.card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(56, 102, 233, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.card-1 .card-icon {
    background: rgba(56, 102, 233, 0.15);
    color: #3866e9;
}

.card-2 .card-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.card-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.2rem;
}

.card-metric {
    font-size: 1.1rem;
    font-weight: 700;
}

.card-1 .card-metric {
    color: #3866e9;
}

.card-2 .card-metric {
    color: #10b981;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 1200px) {
    .hero-modern h1 {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-modern .container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-modern .hero-content {
        max-width: 100%;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-modern .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-modern .hero-image {
        width: 80%;
    }
    
    .card-1 {
        top: 10%;
        left: 5%;
    }
    
    .card-2 {
        bottom: 10%;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 4rem 0;
    }
    
    .hero-modern h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-modern .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-modern .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .btn-video {
        margin-top: 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-modern .hero-image {
        width: 100%;
    }
    
    .floating-card {
        display: none;
    }
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: white;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--grey-light-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--grey-color);
    font-style: normal;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--grey-color);
}

.cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Server Status Section */
.server-status {
    background-color: #0f1629;
    padding: 2rem 0;
    color: #fff;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge.all-operational {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.status-card {
    background-color: #1a2235;
    border-radius: 10px;
    padding: 1.5rem;
}

.status-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1rem;
    font-weight: 500;
    color: #e5e7eb;
}

.status-indicator {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.status-indicator.online::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.response-graph {
    height: 60px;
    background-color: #2a3347;
    border-radius: 6px;
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .stats .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Hero Section Styles */
.hero-dark {
    position: relative;
    background-color: #0b132b;
    padding: 4rem 0;
    overflow: hidden;
    color: white;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(11, 19, 43, 0.8) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(11, 19, 43, 0.8) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #4361ee;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #adb5bd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-light {
    color: white;
    border-color: white;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #e9ecef;
}

.feature-item i {
    color: #4361ee;
}

/* Dashboard Preview Styles */
.dashboard-preview {
    position: relative;
    z-index: 2;
    background-color: #1a2332;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-header {
    background-color: #0b132b;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2a3649;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background-color: #ff5f57;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #28c840;
}

.dashboard-url {
    color: #adb5bd;
    font-size: 0.9rem;
    font-family: monospace;
}

.dashboard-content {
    padding: 1.5rem;
}

.dashboard-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: white;
}

.status-tag {
    background-color: #198754;
    color: white;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 500;
}

.server-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-card {
    background-color: #1e293b;
    border-radius: 6px;
    padding: 1rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: white;
    font-size: 0.9rem;
}

.status.online {
    color: #4ade80;
}

.status-indicator {
    height: 6px;
    background-color: #4ade80;
    border-radius: 3px;
}

.response-graph {
    background-color: #1e293b;
    border-radius: 6px;
    padding: 1.5rem;
}

.graph-label {
    color: #adb5bd;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.graph-bars {
    display: flex;
    align-items: flex-end;
    height: 100px;
    gap: 5px;
}

.bar {
    flex: 1;
    background-color: #4361ee;
    border-radius: 3px 3px 0 0;
    height: 0;
    animation: animateBar 0.6s ease-out forwards;
}

.bar:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 45%; animation-delay: 0.15s; }
.bar:nth-child(3) { height: 65%; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 40%; animation-delay: 0.25s; }
.bar:nth-child(5) { height: 55%; animation-delay: 0.3s; }
.bar:nth-child(6) { height: 75%; animation-delay: 0.35s; }
.bar:nth-child(7) { height: 60%; animation-delay: 0.4s; }
.bar:nth-child(8) { height: 50%; animation-delay: 0.45s; }
.bar:nth-child(9) { height: 65%; animation-delay: 0.5s; }
.bar:nth-child(10) { height: 80%; animation-delay: 0.55s; }
.bar:nth-child(11) { height: 70%; animation-delay: 0.6s; }
.bar:nth-child(12) { height: 50%; animation-delay: 0.65s; }
.bar:nth-child(13) { height: 60%; animation-delay: 0.7s; }
.bar:nth-child(14) { height: 40%; animation-delay: 0.75s; }
.bar:nth-child(15) { height: 55%; animation-delay: 0.8s; }
.bar:nth-child(16) { height: 65%; animation-delay: 0.85s; }
.bar:nth-child(17) { height: 75%; animation-delay: 0.9s; }
.bar:nth-child(18) { height: 45%; animation-delay: 0.95s; }
.bar:nth-child(19) { height: 55%; animation-delay: 1s; }

@keyframes animateBar {
    0% { height: 0; }
    100% { height: attr(data-height); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .server-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .server-status-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Ultra Modern Hero Styles - 2025 Design Trends */
.hero-ultra-modern {
    position: relative;
    background: linear-gradient(125deg, #0a0f1e 0%, #1a1f36 100%);
    min-height: 90vh;
    padding: 5rem 0;
    overflow: hidden;
    color: white;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(64, 120, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(64, 120, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 0;
}

.blob-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, rgba(99, 102, 241, 0) 70%);
    top: -10%;
    left: -10%;
    animation: float-slow 15s ease-in-out infinite alternate;
}

.blob-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(79, 209, 197, 0.5) 0%, rgba(79, 209, 197, 0) 70%);
    bottom: -20%;
    right: -10%;
    animation: float-slow 20s ease-in-out infinite alternate;
}

.blob-3 {
    width: 25vw;
    height: 25vw;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.3) 0%, rgba(244, 114, 182, 0) 70%);
    top: 30%;
    right: 20%;
    animation: float-slow 18s ease-in-out infinite alternate-reverse;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 5;
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content .hero-badge i {
    margin-right: 0.75rem;
    color: #6366f1;
}

.animated-gradient-text {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

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

.animated-gradient-text .highlight {
    background: linear-gradient(90deg, #6366f1, #3b82f6, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: textHighlightShine 5s ease-in-out infinite;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.btn-glow {
    position: relative;
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
    overflow: hidden;
    z-index: 1;
}

.btn-glow: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: 0.5s;
    z-index: -1;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}

.btn-glow:hover:before {
    left: 100%;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1rem;
}

.metric-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 150px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.metric-value .percent,
.metric-value .plus {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.metric-icon {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.4);
}

/* Dashboard Preview 3D Styles */
.dashboard-preview-3d {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 5;
    perspective: 2000px;
}

.dashboard-overlay {
    background: rgba(20, 24, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotateX(5deg) rotateY(0deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    backdrop-filter: blur(10px);
}

.dashboard-preview-3d:hover .dashboard-overlay {
    transform: rotateX(0deg) rotateY(0deg);
}

.dashboard-header {
    background: rgba(13, 16, 31, 0.9);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background-color: #ff5f57;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #28c840;
}

.dashboard-url {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: monospace;
}

.dashboard-controls {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.dashboard-content {
    display: flex;
    padding: 0;
}

.dashboard-sidebar {
    background: rgba(17, 19, 33, 0.8);
    width: 60px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-item.active {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    color: white;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.dashboard-main {
    flex: 1;
    padding: 1.5rem;
}

.dashboard-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: white;
    font-weight: 600;
}

.status-tag {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.status-tag.pulse:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.server-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-3px);
    background: rgba(30, 41, 59, 0.7);
}

.status-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: white;
    font-size: 0.9rem;
}

.status.online {
    color: #10b981;
    display: flex;
    align-items: center;
}

.status.online:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-indicator {
    height: 6px;
    background-color: #10b981;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.status-chart {
    height: 40px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C150,80 350,0 500,60 C650,120 800,20 1000,90 C1050,80 1150,80 1200,40 L1200,120 L0,120 Z' style='fill: %2310b981; opacity: 0.2;'/%3E%3Cpath d='M0,40 C150,80 350,0 500,60 C650,120 800,20 1000,90 C1050,80 1150,80 1200,40' style='fill: none; stroke: %2310b981; stroke-width: 2;'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: 0 0;
    opacity: 0.8;
    animation: moveChart 10s linear infinite;
}

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

.response-graph {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.graph-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.graph-period {
    display: flex;
    gap: 1rem;
}

.graph-period span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.graph-period span:hover {
    color: rgba(255, 255, 255, 0.8);
}

.graph-period span.active {
    color: #6366f1;
    font-weight: 500;
}

.graph-bars {
    display: flex;
    align-items: flex-end;
    height: 120px;
    gap: 8px;
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #6366f1 0%, #3b82f6 100%);
    border-radius: 3px 3px 0 0;
    height: 0;
    animation: animateBar 0.8s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(255, 255, 255, 0.2);
}

.bar:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 45%; animation-delay: 0.15s; }
.bar:nth-child(3) { height: 65%; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 40%; animation-delay: 0.25s; }
.bar:nth-child(5) { height: 55%; animation-delay: 0.3s; }
.bar:nth-child(6) { height: 75%; animation-delay: 0.35s; }
.bar:nth-child(7) { height: 60%; animation-delay: 0.4s; }
.bar:nth-child(8) { height: 50%; animation-delay: 0.45s; }
.bar:nth-child(9) { height: 65%; animation-delay: 0.5s; }
.bar:nth-child(10) { height: 80%; animation-delay: 0.55s; }
.bar:nth-child(11) { height: 70%; animation-delay: 0.6s; }
.bar:nth-child(12) { height: 50%; animation-delay: 0.65s; }
.bar:nth-child(13) { height: 60%; animation-delay: 0.7s; }
.bar:nth-child(14) { height: 40%; animation-delay: 0.75s; }
.bar:nth-child(15) { height: 55%; animation-delay: 0.8s; }
.bar:nth-child(16) { height: 65%; animation-delay: 0.85s; }
.bar:nth-child(17) { height: 75%; animation-delay: 0.9s; }
.bar:nth-child(18) { height: 45%; animation-delay: 0.95s; }
.bar:nth-child(19) { height: 55%; animation-delay: 1s; }

@keyframes animateBar {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Company Logos Section */
.hero-companies {
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.company-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.company-logo {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: all 0.3s ease;
}

.company-logo:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .animated-gradient-text {
        font-size: 3rem;
    }
    
    .server-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-ultra-modern {
        padding: 4rem 0;
    }
    
    .animated-gradient-text {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-metrics {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .metric-card {
        min-width: 130px;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    .company-logos {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .animated-gradient-text {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 2rem;
    }
    
    .server-status-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none;
    }
    
    .company-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .metric-icon {
        top: 50%;
        right: -15px;
        transform: translateY(-50%);
    }
}

/* Ensure particles container is properly positioned */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Add this script tag at the end of your index.php */
/* 
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
    document.addEventListener('DOMContentLoaded', function() {
        particlesJS('particles-js', {
            "particles": {
                "number": {
                    "value": 80,
                    "density": {
                        "enable": true,
                        "value_area": 800
                    }
                },
                "color": {
                    "value": "#ffffff"
                },
                "shape": {
                    "type": "circle",
                    "stroke": {
                        "width": 0,
                        "color": "#000000"
                    },
                },
                "opacity": {
                    "value": 0.3,
                    "random": true,
                    "anim": {
                        "enable": false,
                        "speed": 1,
                        "opacity_min": 0.1,
                        "sync": false
                    }
                },
                "size": {
                    "value": 3,
                    "random": true,
                    "anim": {
                        "enable": false,
                        "speed": 40,
                        "size_min": 0.1,
                        "sync": false
                    }
                },
                "line_linked": {
                    "enable": true,
                    "distance": 150,
                    "color": "#ffffff",
                    "opacity": 0.2,
                    "width": 1
                },
                "move": {
                    "enable": true,
                    "speed": 2,
                    "direction": "none",
                    "random": false,
                    "straight": false,
                    "out_mode": "out",
                    "bounce": false,
                    "attract": {
                        "enable": false,
                        "rotateX": 600,
                        "rotateY": 1200
                    }
                }
            },
            "interactivity": {
                "detect_on": "canvas",
                "events": {
                    "onhover": {
                        "enable": true,
                        "mode": "grab"
                    },
                    "onclick": {
                        "enable": true,
                        "mode": "push"
                    },
                    "resize": true
                },
                "modes": {
                    "grab": {
                        "distance": 140,
                        "line_linked": {
                            "opacity": 0.5
                        }
                    },
                    "push": {
                        "particles_nb": 4
                    }
                }
            },
            "retina_detect": true
        });
    });
</script>
*/ 