* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.green-text {
    color: #22c55e;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(34,197,94,0.2)),
                url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.molecule-animation {
    margin-bottom: 2rem;
    opacity: 0;
}

.atom {
    animation: pulse 2s ease-in-out infinite;
}

.bond {
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes glow {
    0% { stroke-width: 2; opacity: 0.5; }
    100% { stroke-width: 4; opacity: 1; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    color: #d1d5db;
}

.cta-button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    text-decoration: none;
    display: inline-block;
}

.cta-button.outline {
    background: transparent;
    border: 2px solid #22c55e;
    color: #22c55e;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.cta-button.outline:hover {
    background: rgba(34, 197, 94, 0.1);
}

/* Tech Slider Section */
.tech-slider-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0f172a);
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 3rem 2rem 2rem;
    color: white;
}

.slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #22c55e;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-btn {
    background: rgba(34, 197, 94, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: rgba(34, 197, 94, 1);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #22c55e;
    transform: scale(1.2);
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background: #0f172a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.benefit-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

.benefit-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Pipeline Section */
.pipeline-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0f172a, #000000);
}

.pipeline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    opacity: 0;
    transform: scale(0.8);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #22c55e;
}

.process-step p {
    color: #d1d5db;
    font-size: 0.9rem;
}

.pipeline-flow {
    flex: 0 0 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    position: relative;
    margin: 2rem 0;
}

.flow-particle {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -5px;
    animation: flow 3s ease-in-out infinite;
    box-shadow: 0 0 10px #22c55e;
}

@keyframes flow {
    0% { left: -5px; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 95px; opacity: 0; }
}

/* Projects Section */
.projects-section {
    padding: 8rem 0;
    background: #000000;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.project-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #22c55e;
}

.project-info p {
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #000000, #0f172a);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1482938289607-e9573fc25ebb?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -2;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    opacity: 0;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.7; }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-outline:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
}

/* Page Navigation */
.page-navigation {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

/* Sub Hero Section for Technology and Applications pages */
.sub-hero-section {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sub-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(22, 163, 74, 0.3)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.applications-bg {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(22, 163, 74, 0.3)),
                url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?w=1920&h=1080&fit=crop');
}

.sub-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.sub-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.sub-hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Technology Page Styles */
.tech-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.tech-item {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease;
    z-index: -1;
}

.tech-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.tech-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.tech-icon {
    font-size: 2rem;
    color: white;
}

.tech-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

.tech-item p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-specs {
    margin-top: 1.5rem;
}

.spec-item {
    margin-bottom: 1rem;
}

.spec-label {
    display: block;
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.3rem;
}

.spec-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.spec-progress {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 3px;
    width: 0%;
    transition: width 1.5s ease-in-out;
}

.spec-value {
    display: block;
    font-size: 0.9rem;
    color: #22c55e;
    text-align: right;
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a1f18, #000000);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(34, 197, 94, 0.1), 
        rgba(34, 197, 94, 1) 10%, 
        rgba(34, 197, 94, 1) 90%, 
        rgba(34, 197, 94, 0.1));
}

.timeline-item {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 5%;
    left: 50%;
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.timeline-content h3 {
    color: #22c55e;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #d1d5db;
    font-size: 0.95rem;
}

/* Applications Page Styles */
.industries-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.industries-tabs {
    margin-top: 2rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #d1d5db;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.tab-btn:hover {
    border-color: rgba(34, 197, 94, 0.5);
    color: #fff;
}

.tab-btn.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    visibility: visible;
}

.tab-media {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tab-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tab-content:hover .tab-media img {
    transform: scale(1.05);
}

.tab-info {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.tab-info h3 {
    font-size: 2rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.tab-info p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.feature-list i {
    color: #22c55e;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.stat-highlight {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #d1d5db;
}

/* Case Studies Section */
.case-studies-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a1f18, #000000);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.case-study-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.case-study-image {
    position: relative;
    height: 200px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.case-study-content p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-results {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.result-item {
    text-align: center;
    min-width: 80px;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.2rem;
}

.result-label {
    display: block;
    font-size: 0.8rem;
    color: #d1d5db;
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.world-map {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.map-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.map-path {
    fill: rgba(34, 197, 94, 0.1);
    stroke: #22c55e;
    stroke-width: 0.5;
    transition: all 0.3s ease;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.marker-pulse {
    position: relative;
    width: 20px;
    height: 20px;
}

.marker-pulse::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    opacity: 0.7;
}

.marker-pulse::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 0.7;
    }
    80%, 100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.map-info {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2rem;
    min-height: 200px;
    backdrop-filter: blur(5px);
}

.map-region-info {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.map-region-info.active {
    display: block;
}

.map-region-info h3 {
    font-size: 1.8rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.map-region-info p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.region-stats {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.region-stats li {
    display: flex;
    align-items: flex-start;
    color: #d1d5db;
    font-size: 0.95rem;
}

.region-stats i {
    color: #22c55e;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #000000, #0f172a);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1482938289607-e9573fc25ebb?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -2;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    opacity: 0;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.7; }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-outline:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
}

/* Page Navigation */
.page-navigation {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

/* Sub Hero Section for Technology and Applications pages */
.sub-hero-section {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sub-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(22, 163, 74, 0.3)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.applications-bg {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(22, 163, 74, 0.3)),
                url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?w=1920&h=1080&fit=crop');
}

.sub-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.sub-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.sub-hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Technology Page Styles */
.tech-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.tech-item {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease;
    z-index: -1;
}

.tech-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.tech-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.tech-icon {
    font-size: 2rem;
    color: white;
}

.tech-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

.tech-item p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-specs {
    margin-top: 1.5rem;
}

.spec-item {
    margin-bottom: 1rem;
}

.spec-label {
    display: block;
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.3rem;
}

.spec-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.spec-progress {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 3px;
    width: 0%;
    transition: width 1.5s ease-in-out;
}

.spec-value {
    display: block;
    font-size: 0.9rem;
    color: #22c55e;
    text-align: right;
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a1f18, #000000);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(34, 197, 94, 0.1), 
        rgba(34, 197, 94, 1) 10%, 
        rgba(34, 197, 94, 1) 90%, 
        rgba(34, 197, 94, 0.1));
}

.timeline-item {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 5%;
    left: 50%;
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.timeline-content h3 {
    color: #22c55e;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #d1d5db;
    font-size: 0.95rem;
}

/* Applications Page Styles */
.industries-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.industries-tabs {
    margin-top: 2rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #d1d5db;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.tab-btn:hover {
    border-color: rgba(34, 197, 94, 0.5);
    color: #fff;
}

.tab-btn.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    visibility: visible;
}

.tab-media {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tab-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tab-content:hover .tab-media img {
    transform: scale(1.05);
}

.tab-info {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.tab-info h3 {
    font-size: 2rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.tab-info p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.feature-list i {
    color: #22c55e;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.stat-highlight {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #d1d5db;
}

/* Case Studies Section */
.case-studies-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a1f18, #000000);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.case-study-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.case-study-image {
    position: relative;
    height: 200px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.case-study-content p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-results {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.result-item {
    text-align: center;
    min-width: 80px;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.2rem;
}

.result-label {
    display: block;
    font-size: 0.8rem;
    color: #d1d5db;
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.world-map {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.map-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.map-path {
    fill: rgba(34, 197, 94, 0.1);
    stroke: #22c55e;
    stroke-width: 0.5;
    transition: all 0.3s ease;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.marker-pulse {
    position: relative;
    width: 20px;
    height: 20px;
}

.marker-pulse::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    opacity: 0.7;
}

.marker-pulse::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 0.7;
    }
    80%, 100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.map-info {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2rem;
    min-height: 200px;
    backdrop-filter: blur(5px);
}

.map-region-info {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.map-region-info.active {
    display: block;
}

.map-region-info h3 {
    font-size: 1.8rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.map-region-info p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.region-stats {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.region-stats li {
    display: flex;
    align-items: flex-start;
    color: #d1d5db;
    font-size: 0.95rem;
}

.region-stats i {
    color: #22c55e;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #000000, #0f172a);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1482938289607-e9573fc25ebb?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -2;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    opacity: 0;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.7; }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-outline:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
}

/* Page Navigation */
.page-navigation {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

/* Sub Hero Section for Technology and Applications pages */
.sub-hero-section {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sub-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(22, 163, 74, 0.3)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.applications-bg {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(22, 163, 74, 0.3)),
                url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?w=1920&h=1080&fit=crop');
}

.sub-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.sub-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.sub-hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Technology Page Styles */
.tech-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.tech-item {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease;
    z-index: -1;
}

.tech-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.tech-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.tech-icon {
    font-size: 2rem;
    color: white;
}

.tech-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

.tech-item p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-specs {
    margin-top: 1.5rem;
}

.spec-item {
    margin-bottom: 1rem;
}

.spec-label {
    display: block;
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.3rem;
}

.spec-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.spec-progress {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 3px;
    width: 0%;
    transition: width 1.5s ease-in-out;
}

.spec-value {
    display: block;
    font-size: 0.9rem;
    color: #22c55e;
    text-align: right;
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a1f18, #000000);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(34, 197, 94, 0.1), 
        rgba(34, 197, 94, 1) 10%, 
        rgba(34, 197, 94, 1) 90%, 
        rgba(34, 197, 94, 0.1));
}

.timeline-item {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 5%;
    left: 50%;
}

.timeline-date {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.timeline-content h3 {
    color: #22c55e;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #d1d5db;
    font-size: 0.95rem;
}

/* Applications Page Styles */
.industries-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.industries-tabs {
    margin-top: 2rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #d1d5db;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.tab-btn:hover {
    border-color: rgba(34, 197, 94, 0.5);
    color: #fff;
}

.tab-btn.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.5s ease;
    visibility: hidden;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    visibility: visible;
}

.tab-media {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tab-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tab-content:hover .tab-media img {
    transform: scale(1.05);
}

.tab-info {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
}

.tab-info h3 {
    font-size: 2rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.tab-info p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.feature-list i {
    color: #22c55e;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.stat-highlight {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.2rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #d1d5db;
}

/* Case Studies Section */
.case-studies-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a1f18, #000000);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.case-study-card {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.case-study-image {
    position: relative;
    height: 200px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.case-study-content p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-results {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.result-item {
    text-align: center;
    min-width: 80px;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.2rem;
}

.result-label {
    display: block;
    font-size: 0.8rem;
    color: #d1d5db;
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.world-map {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.map-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.map-path {
    fill: rgba(34, 197, 94, 0.1);
    stroke: #22c55e;
    stroke-width: 0.5;
    transition: all 0.3s ease;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.marker-pulse {
    position: relative;
    width: 20px;
    height: 20px;
}

.marker-pulse::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    opacity: 0.7;
}

.marker-pulse::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.33);
        opacity: 0.7;
    }
    80%, 100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.map-info {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2rem;
    min-height: 200px;
    backdrop-filter: blur(5px);
}

.map-region-info {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.map-region-info.active {
    display: block;
}

.map-region-info h3 {
    font-size: 1.8rem;
    color: #22c55e;
    margin-bottom: 1rem;
}

.map-region-info p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.region-stats {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.region-stats li {
    display: flex;
    align-items: flex-start;
    color: #d1d5db;
    font-size: 0.95rem;
}

.region-stats i {
    color: #22c55e;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #000000, #0f172a);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1482938289607-e9573fc25ebb?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: -2;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    opacity: 0;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.7; }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.btn-outline {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-outline:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
}

/* Page Navigation */
.page-navigation {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

/* Sub Hero Section for Technology and Applications pages */
.sub-hero-section {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sub-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(22, 163, 74, 0.3)),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.applications-bg {
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(22, 163, 74, 0.3)),
                url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?w=1920&h=1080&fit=crop');
}

.sub-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.sub-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.3s;
}

.sub-hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Technology Page Styles */
.tech-showcase-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #000000, #0a1f18);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.tech-item {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease;
    z-index: -1;
}

.tech-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.tech-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.tech-icon {
    font-size: 2rem;
    color: white;
}

.tech-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

.tech-item p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-specs {
    margin-top: 1.5rem;
}

.spec-item {
    margin-bottom: 1rem;
}

.spec-label {
    display: block;
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.3rem;
}

.spec-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.spec-progress {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 3px;
    width: 0%;
    transition: width 1.5s ease-in-out;
}

.spec-value {
    display: block;
    font-size: 0.9rem;
    color: #22c55e;
    text-align: right;
}

/* Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0a1f18, #000000);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(34, 197, 94, 0.1), 
        rgba(34, 197, 94, 1) 10%, 
        rgba(34, 197, 94, 1) 90%, 
        rgba(34, 197, 94, 0.1));
}

.timeline-item {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 4rem;
}

.timeline-dot {
    width: 20px; 
}

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
   --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(240, 3%, 6%);
  --title-color: hsl(220, 13%, 95%);
  --text-color: hsl(240, 45%, 98%);
  --body-color: #23B35C;
  
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--first-color-lighten);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.dropdown__list {
  row-gap: 0.25rem;
}
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 2rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--first-color);
  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}
@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

.nav__data>a>img{
    width: 30%;
    padding: 0 30;

}

.container5{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    background-color: #001f7c38;
}

.simple-footer {
    background-color: #000000;
    color: #e5f4f1;
    padding: 3rem 3rem 2rem; /* Increased top padding */
    font-family: 'Segoe UI', sans-serif;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* More vertical space between content blocks */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem; /* More padding above content */
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-logo {
    width: 150px;
    height: auto;
  }

  .footer-left p {
    max-width: 480px;
    font-size: 1rem;
    color: #d8e9e6;
    line-height: 1.8;
  }

  .social-icons {
    margin-top: 0.1rem;
  }

  .social-icons a {
    font-size: 1.9rem;
    margin-right: 1.2rem;
    color: #d8e9e6;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #ffffff;
  }

  .footer-right {
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #94b8b2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12rem;
  padding-bottom: 30px; /* added 'px' unit */
  gap: 20px; /* optional: spacing between items */
}

.footer-right p {
  font-size: 0.7rem;
  margin: 0; /* remove default margin */
}

.footer-right a {
  color: #94b8b2;
  text-decoration: none;
  font-size: 0.7rem;
}

  .footer-right a:hover {
    text-decoration: underline;
  }

  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer-left {
      flex: 1;
    }

    .footer-right {
      flex: 1;
      justify-content: flex-end;
    }
  }