/* General Styles */
:root {
    --bg-color: #1a1a2e;
    --card-bg: #16213e;
    --text-color: #e6e6e6;
    --text-muted: #a0aec0;
    --primary-color: #4cc9f0;
    --primary-hover: #38b6db;
    --secondary-color: #7b2cbf;
    --border-color: #2d3748;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.main-header {
    background: #000000;
    color: var(--text-color);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.main-header .logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0rem;
}

.logo {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 1.5em; /* Makes the logo height match the text height */
    width: auto; /* Maintains aspect ratio */
    display: inline-block;
    vertical-align: middle;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.2s ease;
    border: 1px solid #e5e7eb;
    background: white;
    color: #1f2937;
}

.header-button.login-signup {
    background: #ffffff;
    color: black;
    border-color: #000000;
    padding: 0.5rem 1.5rem;
}

.header-button.login-signup:hover {
    background: #333333;
    border-color: #333333;
    color: white;
}

.header-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    cursor: pointer;
}


.main-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 6rem 0 4rem; /* Reduced top and bottom padding */
    overflow: hidden;
    background: #0a0f1e;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 15, 30, 0.9), rgba(10, 15, 30, 0.95));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 2rem;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 3rem 0;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.highlight-text {
    color: #4cc9f0;
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 0 3rem 0;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Enterprise Compliance Section */
.enterprise-compliance {
    background-color: #1a1a2e; /* Matching the header background */
    color: white;
    padding: 5rem 0;
}

.enterprise-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.enterprise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.enterprise-subtitle {
    font-size: 1.25rem;
    color: #a0aec0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.compliance-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.compliance-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.compliance-feature:hover {
    background: rgba(76, 201, 240, 0.1);
    transform: translateY(-2px);
}

.compliance-feature svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.compliance-feature span {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #e6e6e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .compliance-features {
        grid-template-columns: 1fr;
    }
    
    .enterprise-content h2 {
        font-size: 2rem;
    }
    
    .enterprise-subtitle {
        font-size: 1.1rem;
    }
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(76, 201, 240, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4cc9f0;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 3rem;
}

/* Features Showcase Section */
.features-showcase {
    background: #000000;
    padding: 6rem 0 8rem; /* Increased bottom padding for better balance */
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.features-showcase .feature-cards {
    margin: 0;
    padding: 0 1rem;
}

.features-showcase .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-showcase .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

.features-showcase .feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 50%;
    padding: 15px;
    box-sizing: border-box;
}

.features-showcase .feature-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.features-showcase .feature-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 1rem 0 1rem 0;
    font-weight: 600;
    text-align: center;
    width: 100%;
width: 100%;
}

.features-showcase .feature-card p {
color: rgba(255, 255, 255, 0.8);
line-height: 1.6;
margin: 0;
font-size: 1.1rem;
text-align: center;
width: 100%;
    margin: 0;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
}

/* Stakeholders Section */
.stakeholders-section {
    background: #000000;
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 1;
}

.stakeholders-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stakeholders-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stakeholders-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stakeholder-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stakeholder-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stakeholder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 201, 240, 0.3);
}

.stakeholder-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 50%;
    padding: 15px;
    box-sizing: border-box;
}

.stakeholder-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.stakeholder-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 1rem 0;
    font-weight: 600;
}

.stakeholder-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stakeholder-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .stakeholders-section h2 {
        font-size: 2rem;
    }
}

/* Dynamic text animations */
.feature-card p {
    min-height: 3em; /* Adjust based on your line height and number of lines */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.feature-card span {
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    position: absolute;
}

.fade-out {
    opacity: 0;
    transform: translateY(5px);
    position: absolute;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: #333333;
    color: #ffffff;
    padding-right: 2.5rem;
    position: relative;
}

.cta-button.primary::after {
    content: '→';
    position: absolute;
    right: 1.2rem;
    transition: transform 0.2s ease;
}

.cta-button.primary:hover {
    background: #444444;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover::after {
    transform: translateX(3px);
}

.cta-button.secondary {
    background: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.cta-button.secondary:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dynamic-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    min-height: 2.5rem;
    transition: all 0.3s ease;
    opacity: 1;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
}

.cta-button.primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 201, 240, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: rgba(76, 201, 240, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    background: #fff;
    color: #000;
    padding: 2rem 0;
}

.about h2,
.about h3,
.about p {
    color: #fff;
}

/* General video container styling */
.video-container {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    overflow: hidden;
    background: #000; /* Fallback color */
}

/* Background video styling */
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: 1;
    object-fit: cover;
}

/* Overlay styling */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 2;
    text-align: center;
    padding: 1rem;
}

.video-overlay h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.video-overlay p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #0078D4;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.industries {
    background: #000000;
    color: #fff;
    text-align: center;
    padding: 0rem 0rem;
    position: relative;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-color);
}

.feature-section {
    margin-bottom: 6rem;
}

.feature-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-container.feature-reverse {
    flex-direction: row-reverse;
}

.feature-media {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-media:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.placeholder-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.placeholder-image p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.feature-content {
    flex: 1;
    padding: 0 1.5rem;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.feature-list li:hover {
    color: var(--text-color);
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.feature-section {
    margin-bottom: 6rem;
    padding: 2rem 0;
}

.feature-section:last-child {
    margin-bottom: 3rem;
}

.feature-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-media {
    flex: 1 1 65%;
    position: relative;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-content {
    flex: 1 1 35%;
    padding: 0rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Remove gradient overlay for cleaner look */
.gradient-overlay {
    display: none;
}

.feature-title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem 0;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}


.feature-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-top: 1.5rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .feature-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-media,
    .feature-content {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .feature-content {
        padding: 0 1rem 1rem;
    }

    .feature-section {
        margin-bottom: 2rem;
    }

    .feature-title {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .feature-description {
        margin-top: 0.5rem;
    }
}

@media (max-width: 992px) {
    .feature-container {
        flex-direction: column;
        max-width: 600px;
    }
    
    .feature-media {
        width: 100%;
        min-height: 300px;
    }
    
    .feature-content {
        padding: 2rem;
        text-align: center;
    }
    
    .feature-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .feature-reverse {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .features {
        padding: 2rem 0;
    }
    
    .feature-section {
        margin-bottom: 2.5rem;
    }
    
    .feature-content {
        padding: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.6rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
}

/* Removed slider-related styles as they're no longer needed */

.slide-content .feature-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #0078D4;
}

.slide-content .feature-description {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    color: #000 !important;
}

/* Navigation buttons and dots remain the same */
.navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.nav-button {
    padding: 0.5rem 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 3;
}

.nav-button:hover {
    background: #0056b3;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.dot.active {
    background: #007bff;
}

/* Features Section */
.features {
    background: #f4f4f4;
    padding: 3rem 1rem;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 3rem 1rem;
    text-align: center;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact .name-group,
.contact .email-group,
.contact .phone-group {
    display: flex;
    flex-direction: column;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact button {
    background: #0078D4;
    color: #fff;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    display: block;
}

.contact button:hover {
    background: #005FA3;
}

/* Footer */
.main-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}
