/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111827;
    color: #fff;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a{
    text-decoration: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
}


.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #149925;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #149925;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: #149925;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #0da01f;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero container */
.hero-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem 2rem; /* Added top padding for navbar */
}

.hero-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

/* Hero text */
.hero-text {
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.highlight {
    color: #0EB623;
    position: relative;
}


.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Hero actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: #0EB623;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #374151;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #0EB623;
    color: #0EB623;
    transform: translateY(-2px);
}

/* Background elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, #0EB623, #22c55e, #16a34a, #15803d);
    filter: blur(40px);
    opacity: 0.8;
    animation: move-left-right 8s ease-in-out infinite;
}

.orb-1 {
    top: 20%;
    left: 10%;
    animation: move-left-right 8s ease-in-out infinite;
    background: linear-gradient(45deg, #0EB623, #22c55e, #16a34a, #15803d);
}

.orb-2 {
    top: 60%;
    right: 15%;
    animation: move-right-left 10s ease-in-out infinite;
    background: linear-gradient(135deg, #22c55e, #16a34a, #15803d, #14532d);
    animation-delay: -3s;
}

.orb-3 {
    bottom: 20%;
    left: 50%;
    animation: move-up-down 12s ease-in-out infinite;
    background: linear-gradient(225deg, #16a34a, #15803d, #14532d, #052e16);
    animation-delay: -6s;
}

@keyframes move-left-right {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateX(300px) rotate(120deg);
    }
}

@keyframes move-right-left {
    0%, 100% {
        transform: translateX(400px) rotate(0deg);
    }
    50% {
        transform: translateX(-100px) rotate(-200deg);
    }
}

@keyframes move-up-down {
    0%, 100% {
        transform: translateY(-300px) rotate(0deg);
    }
    50% {
        transform: translateY(100px) rotate(70deg);
    }
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

/* Solutions Section */
.solutions-section {
    background: #111827 ;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Industry Solutions Section */
.industry-solutions-section {
    background: #fff; /* White background */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.industry-solutions-section .section-title {
    color: #111827; /* Dark gray title */
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.industry-solutions-section .section-subtitle {
    color: #111827; /* Dark gray subtitle */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.industry-solutions-section .section-description {
    color: #111827; /* Dark gray description */
    opacity: 0.8;
}

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

.industry-card {
    background: #fff;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(20, 153, 37, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}



.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0EB623;
    filter: drop-shadow(0 0 10px rgba(20, 153, 37, 0.3));
}

.industry-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.industry-card p {
    font-size: 1rem;
    color: #111827;
    opacity: 0.8;
    margin-bottom: auto;
    line-height: 1.6;
}

.industry-card .learn-more-btn {
    margin-top: 2rem;
    background: #0EB623;
    color: #fff;
    border: 1px solid #0EB623;
}

.industry-card .learn-more-btn:hover {
    background: transparent;
    color: #0EB623;
    border-color: #0EB623;
}

/* Global Infrastructure Section */
.global-infrastructure-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/global.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

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

.global-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.global-description {
    font-size: 1.25rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.explore-btn {
    background: #0EB623;
    color: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 182, 35, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 182, 35, 0.4);
    background: #0da01f;
}

/* AI-Powered Solutions Section */
.ai-solutions-section {
    background: #111827;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.ai-solutions-section .section-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ai-solutions-section .section-subtitle {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ai-solutions-section .section-description {
    color: #fff;
    opacity: 0.9;
}

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

.ai-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(20, 153, 37, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}


.ai-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0EB623;
    filter: drop-shadow(0 0 10px rgba(20, 153, 37, 0.3));
}

.ai-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ai-card p {
    font-size: 1rem;
    color: #d1d5db;
    opacity: 0.9;
    margin-bottom: auto;
    line-height: 1.6;
}

.ai-actions {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

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

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #111827;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(17, 24, 39, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(20, 153, 37, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #111827;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(17, 24, 39, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #111827;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #149925;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(20, 153, 37, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(17, 24, 39, 0.6);
}

.submit-btn {
    background: #149925;
    color: #fff;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 153, 37, 0.3);
}

/* Footer */
.footer {
    background: #111827;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(20, 153, 37, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.footer-description {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #149925;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: #d1d5db;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.contact-item i {
    color: #149925;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(20, 153, 37, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* About Page Styles */
.about-hero {
    background: #111827;
    padding: 8rem 0 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad1" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:%23149925;stop-opacity:0.3" /><stop offset="100%" style="stop-color:%23149925;stop-opacity:0" /></radialGradient></defs><circle cx="20" cy="20" r="30" fill="url(%23grad1)" /><circle cx="80" cy="60" r="25" fill="url(%23grad1)" /><circle cx="50" cy="80" r="20" fill="url(%23grad1)" /></svg>');
    opacity: 0.6;
    z-index: 1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #149925;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(20, 153, 37, 0.3);
}

.about-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    opacity: 0.9;
    line-height: 1.6;
}

.about-content {
    background: #fff;
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: #111827;
}

.about-text .section-title {
    color: #111827;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-description {
    color: #111827;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-item i {
    font-size: 2rem;
    color: #149925;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-item-about h4 {
    color: #111827 !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item-about p {
    color: #111827 !important;
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #149925, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image i {
    font-size: 8rem;
    color: #fff;
    opacity: 0.9;
}

.about-stats {
    background: #111827;
    padding: 4rem 0;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(20, 153, 37, 0.2);
}

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #149925;
    margin-bottom: 0.5rem;
}

.about-stats .stat-label {
    color: #d1d5db;
    font-size: 1rem;
    opacity: 0.9;
}

.about-cta {
    background: #149925;
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-btn {
    background: #111827;
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn:hover {
    background: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Terms Page Styles */
.terms-section {
    background: #fff;
    padding: 8rem 0 6rem 0;
    min-height: 100vh;
}

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

.terms-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.terms-subtitle {
    font-size: 1.1rem;
    color: #111827;
    opacity: 0.7;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section-item {
    margin-bottom: 3rem;
}

.terms-section-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.terms-section-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #111827;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.terms-section-item ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section-item li {
    font-size: 1rem;
    line-height: 1.7;
    color: #111827;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-info-section {
    background: #fff;
    padding: 6rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(20, 153, 37, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(20, 153, 37, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(20, 153, 37, 0.1);
    border-color: rgba(20, 153, 37, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #149925, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.contact-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-info-card h3 {
    color: #111827;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #111827;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Contact form select styling */
.contact-form select {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(17, 24, 39, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #111827;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23111827' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.contact-form select:focus {
    outline: none;
    border-color: #149925;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(20, 153, 37, 0.1);
}

.contact-form select option {
    background: #fff;
    color: #111827;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Tabs */
.main-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.main-tab {
    background: transparent;
    color: #9ca3af;
    border: 2px solid #374151;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 153, 37, 0.2), transparent);
    transition: left 0.5s ease;
}

.main-tab:hover::before {
    left: 100%;
}

.main-tab:hover {
    color: #0EB623;
    border-color: #0EB623;
    transform: translateY(-2px);
}

.main-tab.active {
    background: #0EB623;
    color: #fff;
    border-color: #0EB623;
    box-shadow: 0 4px 15px rgba(20, 153, 37, 0.3);
}

/* Tab Content */
.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtabs */
.subtab-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
}

.subtab-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.subtab-btn {
    background: transparent;
    color: #9ca3af;
    border: 1px solid #374151;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.subtab-btn:hover {
    color: #0EB623;
    border-color: #0EB623;
    background: rgba(20, 153, 37, 0.1);
}

.subtab-btn.active {
    background:#0EB623;
    color: #fff;
    border-color: #0EB623;
    box-shadow: 0 2px 8px rgba(20, 153, 37, 0.3);
}

.subtab-content {
    position: relative;
}

.subtab-panel {
    display: none;
    animation: slideIn 0.4s ease-in-out;
}

.subtab-panel.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.subtab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.subtab-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.subtab-description {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features {
    margin-bottom: 2rem;
}

.feature-item {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0EB623;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.4;
}

.learn-more-btn {
    background: #0EB623;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
}

.subtab-image {
    position: relative;
}

.subtab-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

/* Stats Section */
.stats-section {
    background: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #0EB623;;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-number::after {
    content: '+';
    font-size: 2.5rem;
    color: #0EB623;;
    opacity: 0.8;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0EB623;
    opacity: 0.8;
    line-height: 1.4;
}

/* Edge Section */
.edge-section {
    background: #111827;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.edge-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0 4rem 0;
}

.edge-stat {
    text-align: center;
}

.edge-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0EB623;
    margin-bottom: 0.5rem;
}

.edge-stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
}

.edge-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* First row - narrow and wide */
.narrow-card {
    grid-column: 1;
    grid-row: 1;
}

.wide-card {
    grid-column: 2 / 4;
    grid-row: 1;
}

/* Second row - three equal cards */
.edge-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.edge-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.edge-card:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}

.edge-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(20, 153, 37, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.edge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0EB623, #22c55e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Make cards flexbox for button alignment */
.edge-card {
    display: flex;
    flex-direction: column;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content p {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: auto;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-content .learn-more-btn {
    margin-top: auto;
}

/* Green background cards */
.edge-card:nth-child(2),
.edge-card:nth-child(4) {
    background: #0EB623;
    border-color: rgba(20, 153, 37, 0.3);
}

.edge-card:nth-child(2),
.edge-card:nth-child(4) {
    background: #0EB623;
    border-color: rgba(20, 153, 37, 0.3);
}

.edge-card:nth-child(2) .card-content .learn-more-btn,
.edge-card:nth-child(4) .card-content .learn-more-btn {
    background: #111827;
    color: #fff;
    border: 1px solid #111827;
}



/* Trusted Section */
.trusted-section {
    background: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.trusted-section .section-title {
    color: #111827;
}

.trusted-section .section-description {
    color: #111827;
    opacity: 0.8;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .floating-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cdn-card,
    .security-card,
    .edge-card {
        grid-column: 1;
    }
    
    .cdn-card {
        grid-row: 1;
    }
    
    .security-card {
        grid-row: 2;
    }
    
    .edge-card {
        grid-row: 3;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    /* Solutions section mobile */
    .solutions-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .main-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .main-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .subtab-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .subtab-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .subtab-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .subtab-text h3 {
        font-size: 1.5rem;
    }
    
    .subtab-description {
        font-size: 1rem;
    }
    
    .subtab-container {
        padding: 1.5rem;
    }
    
    /* Global Infrastructure mobile */
    .global-infrastructure-section {
        padding: 6rem 0;
        background-attachment: scroll;
    }
    
    .global-title {
        font-size: 2.5rem;
    }
    
    .global-description {
        font-size: 1.1rem;
    }
    
    .explore-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* AI Solutions mobile */
    .ai-solutions-section {
        padding: 4rem 0;
    }
    
    .ai-solutions-section .section-subtitle {
        font-size: 2rem;
    }
    
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-card {
        padding: 2rem;
    }
    
    .ai-icon {
        font-size: 2.5rem;
    }
    
    .ai-card h4 {
        font-size: 1.3rem;
    }
    
    .ai-card p {
        font-size: 0.95rem;
    }
    
    /* Contact Form mobile */
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Navigation mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(17, 24, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(20px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-link {
        margin: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-btn {
        margin-top: 1rem;
    }
    
    /* Edge section mobile */
    .edge-section {
        padding: 4rem 0;
    }
    
    .edge-section .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .edge-section .section-description {
        font-size: 1rem;
    }
    
    .edge-stats {
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .edge-stat {
        text-align: center;
    }
    
    .edge-stat-number {
        font-size: 2rem;
    }
    
    .edge-stat-label {
        font-size: 1rem;
    }
    
    .edge-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .narrow-card,
    .wide-card {
        grid-column: 1;
        grid-row: auto;
    }
    
    .edge-card {
        padding: 1.5rem;
    }
    
    .edge-card h3 {
        font-size: 1.3rem;
    }
    
    .edge-card p {
        font-size: 0.95rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 3rem 0 2rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    /* About page mobile */
    .about-hero {
        padding: 6rem 0 4rem 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding: 4rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text .section-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-image {
        width: 250px;
        height: 250px;
    }
    
    .about-image i {
        font-size: 6rem;
    }
    
    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-stats .stat-item {
        padding: 1.5rem;
    }
    
    .about-stats .stat-number {
        font-size: 2rem;
    }
    
    .about-cta {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Contact page mobile */
    .contact-info-section {
        padding: 4rem 0;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    /* Terms page mobile */
    .terms-section {
        padding: 6rem 0 4rem 0;
    }
    
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-subtitle {
        font-size: 1rem;
    }
    
    .terms-section-item {
        margin-bottom: 2rem;
    }
    
    .terms-section-item h2 {
        font-size: 1.3rem;
    }
    
    .terms-section-item p,
    .terms-section-item li {
        font-size: 0.95rem;
    }
    
    /* Stats section mobile */
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Industry Solutions mobile */
    .industry-solutions-section {
        padding: 4rem 0;
    }
    
    .industry-solutions-section .section-subtitle {
        font-size: 2rem;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industry-card {
        padding: 2rem;
    }
    
    .industry-icon {
        font-size: 2.5rem;
    }
    
    .industry-card h4 {
        font-size: 1.3rem;
    }
    
    .industry-card p {
        font-size: 0.95rem;
    }
    
    /* Edge section mobile */
    .edge-section {
        padding: 4rem 0;
    }
    
    .edge-stats {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem 0 3rem 0;
    }
    
    .edge-stat-number {
        font-size: 2.5rem;
    }
    
    .edge-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .wide-card,
    .narrow-card {
        grid-column: span 1;
    }
    
    .edge-card {
        padding: 2rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
    
    /* Trusted section mobile */
    .trusted-section {
        padding: 4rem 0;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .logo-item {
        padding: 1.5rem;
    }
    
    .logo-item img {
        max-height: 50px;
    }
}
