/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1 0 auto;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Remove any existing background */
    background: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Place the video behind the content */
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensure content is above the video */
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff8787;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-item {
    text-align: center;
    max-width: 300px;
}

.feature-item i {
    font-size: 3rem;
    color: #6e8efb;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    text-align: center;
}

.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonial Section */
.testimonial {
    background-color: #6e8efb;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
}

/* Call to Action Section */
.call-to-action {
    background-color: #f8f9fa;
    text-align: center;
    padding: 80px 0;
}

.call-to-action h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

.dashboard-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

html, body {
    height: 100%;
}

.footer {
    flex-shrink: 0;
    margin-top: auto;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 10px;
}

.quick-start {
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 2rem 0;
}

.guide-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .guide-steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 1rem;
    }
}
.system-status {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 2rem 0;
}

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

.status-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.status-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.status-icon i {
    font-size: 1.8rem;
    color: #007bff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #007bff;
    animation: pulse 2s infinite;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.status-text {
    color: #28a745;
    font-weight: 500;
}

.status-details {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

.help-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 2rem 0;
}
.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}
.help-card {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.help-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-icon i {
    font-size: 2rem;
    color: #007bff;
}

.help-card h4 {
    margin: 1rem 0;
    color: #333;
    font-size: 1.2rem;
}

.help-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.help-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.help-button:hover {
    transform: scale(1.05);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        height: calc(100vh - 40px); /* Adjust height for smaller screens */
    }
}

.feedback-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.feedback-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.feedback-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.feedback-section iframe {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
