/* Global Styles */
:root {
    --primary-color: #0a192f; /* Dark Navy */
    --secondary-color: #112240; /* Slightly lighter Navy */
    --accent-color: #d4af37; /* Gold */
    --text-light: #e6f1ff;
    --text-gray: #8892b0;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Placeholder Image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-primary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 1px solid var(--text-gray);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Services */
.services {
    background-color: var(--primary-color);
}

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

.service-card {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(5px);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* About */
.about {
    background-color: var(--secondary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.about-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.img-placeholder i {
    font-size: 5rem;
    color: var(--text-gray);
}

/* Stats */
.stats {
    background-color: var(--accent-color);
    padding: 60px 0;
    color: var(--primary-color);
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Contact */
.contact {
    background-color: var(--primary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
    text-align: center;
}

.info-item p {
    color: var(--text-light);
}

.contact-form {
    background: rgba(17, 34, 64, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    border: 1px solid var(--text-gray);
    border-radius: 4px;
    color: var(--text-light);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: #020c1b;
    padding: 30px 0;
    text-align: center;
    color: var(--text-gray);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    color: var(--text-gray);
    margin-left: 20px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Target Audience */
.target-audience {
    background-color: var(--secondary-color);
}

.audience-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.audience-item {
    background: rgba(10, 25, 47, 0.6);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.audience-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.audience-item p {
    color: var(--text-gray);
}

/* Industries & Sectors */
.industries {
    background-color: var(--primary-color);
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.col-half h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 10px;
    display: inline-block;
}

.check-list li {
    margin-bottom: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--accent-color);
}

/* Requirements */
.requirements {
    background-color: var(--secondary-color);
    text-align: center;
}

.subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.req-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.req-item {
    background-color: var(--primary-color);
    padding: 20px 40px;
    border-radius: 50px;
    color: var(--white);
    border: 1px solid var(--accent-color);
    font-weight: 600;
}

.mt-30 {
    margin-top: 30px;
}

/* Process */
.process {
    background-color: var(--primary-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--primary-color);
    border: 4px solid var(--accent-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--secondary-color);
    position: relative;
    border-radius: 6px;
}

.timeline-content h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-gray);
}

/* Ecosystem */
.ecosystem {
    background-color: var(--secondary-color);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ecosystem-grid.single-col {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.ecosystem-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.partner-list li {
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(5px);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.95rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.partner-list li:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 21px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }

    .req-grid {
        flex-direction: column;
    }

    .nav-links {
        display: none; /* Implement mobile menu in JS */
    }
    
    .hamburger {
        display: block;
    }

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

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--secondary-color);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--accent-color);
    width: 80%;
    max-width: 700px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    color: var(--text-gray);
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
}

.modal-content p {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.modal-list li {
    margin-bottom: 15px;
    color: var(--text-light);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 0.95rem;
}

.modal-list i {
    color: var(--accent-color);
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

/* Ecosystem Diagram */
.ecosystem-diagram-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.ecosystem-step {
    text-align: center;
    flex: 1;
}

.eco-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    margin-bottom: 15px;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.eco-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.logo-wrapper {
    background-color: white; /* Logo has white background, so we embrace it */
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin: 0 auto;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.3);
}

.eco-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.eco-arrow {
    flex: 0.5;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dotted-line {
    width: 100%;
    border-top: 3px dotted var(--accent-color);
    position: relative;
}

.ecosystem-step p {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .ecosystem-diagram-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .eco-arrow {
        transform: rotate(90deg);
        width: 50px;
    }
}
