* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1003;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #1fae3d; /* Fallback for green shade */
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #10b981;
}

/* --- Menu Toggle (Hamburger Icon) --- */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #10b981; /* Primary color for the icon */
    padding: 5px;
    z-index: 1001; 
}


/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 2000px;
    max-height: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero p {
    font-size: 2.5rem;
    margin-bottom: 5.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 200px;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #0f766e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f766e;
}

/* Highlights Section */
.highlights {
    padding: 5rem 2rem;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    transition: transform 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.8rem;
    color: #0f766e;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: #4b5563;
    font-size: 1rem;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #0f766e;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.8rem 0;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-card li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Technology Section */
.technology {
    background: linear-gradient(135deg, #0f766e 0%, #1e40af 100%);
    color: white;
}

.technology .section-title {
    -webkit-text-fill-color: white;
    background: none;
}

.technology .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tech-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: linear-gradient(135deg, #f0fdf4 0%, #dbeafe 100%);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    padding: 2rem;
}

.info-item {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.info-icon {
    font-size: 1.5rem;
    color: #10b981;
}

.info-content h4 {
    color: #0f766e;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #22345e;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-weight: bold;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    gap: 10px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    color: #f0f1f3;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Footer Styles */

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #fdfdfd;
    width: 100%;
    
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    text-align: left;
}


.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0; 
    padding: 0;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column; 
        gap: 0.5rem;
    }
    .footer-bottom p {
        text-align: center;
        width: 100%;
    }
}
/* --- Responsive (Mobile View) --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /* Show the hamburger icon */
  .menu-toggle {
        display: block;
        /* Ensure the toggle button (which becomes 'x') is highly visible */
        color: #1a1a1a; 
        z-index: 1002;
    }
    
    .nav-container {
        padding: 0 1rem; /* Adjust padding for mobile */
    }

    /* Style the navigation links for mobile sidebar */
    .nav-links {
        /* OVERRIDING THE ORIGINAL 'display: none;' */
        display: flex; 
        position: fixed;
        top: 80px; /* Below the fixed navbar */
        right: 0;
        width: 70%; /* Width of the sidebar */
        height: calc(100% - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transform: translateX(100%); /* Initially hide off-screen */
        transition: transform 0.3s ease-in-out;
        list-style: none;
        gap: 1.5rem;
    }

    /* Active state to show the menu */
    .nav-links.open {
        transform: translateX(0); /* Slide into view */
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
        color: #1a1a1a; /* Ensure readability */
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Update Desktop Nav-Links Target */
.desktop-links { 
    display: flex;
    gap: 2rem;
    list-style: none;
}

.desktop-links a { 

    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-links a:hover {
    color: #10b981;
}


.mobile-menu {
    display: none; 
}

.powered-logo {
    height: 40px;
    width: auto;
    vertical-align: middle; 
    margin: 0 4px 0 4px; 
    display: inline-block; 
}

.powered-by-container {
    display: inline-flex;
    align-items: center;
    gap: 0; 
}
.powered-by-wrapper {
    display: flex;
    align-items: center; 
    gap: 4px; 
    margin: 0; 
}