/* Global Styles */
:root {
    --primary-color: #0a192f;
    --secondary-color: #64ffda;
    --text-color: #8892b0;
    --heading-color: #ccd6f6;
    --bg-light: #112240;
    --white: #e6f1ff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.primary-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
}

/* Header & Navbar */
header {
    background-color: rgba(10, 25, 47, 0.95);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
  	margin-top: 10px;
}

.logo .logo-img{
    height: 60px
}

.logo span {
    color: var(--heading-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('background.jpg') no-repeat center center/cover;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero .highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* About Section */
/* About Section Redesign */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 20px 0;
}

.about-content {
    flex: 1;
    max-width: 550px;
}

.about-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 300;
    /* Lighter weight for modern look */
}

.about-title .highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.founder-info {
    margin-top: 40px;
}

.founder-info h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.founder-info span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
}

/* Image with Brush Effect */
.about-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 600px;
    display: flex;
    justify-content: flex-end;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* CSS Mask for brush effect - REPLACED with clean style for reliability */
    border-radius: 20px;
    box-shadow: 20px 20px 0 rgba(100, 255, 218, 0.1);
    /* Secondary color shadow */
    border: 2px solid var(--secondary-color);
}

/* Tablet Responsiveness */
@media screen and (max-width: 900px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        text-align: left;
    }

    .about-image-wrapper {
        justify-content: center;
        max-width: 80%;
    }
}

/* Services Section */
.bg-light {
    background-color: #0f203a;
    /* Slightly lighter than main bg */
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 6px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: #0a192f;
    border: 1px solid #233554;
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
}

.contact-form button {
    align-self: flex-start;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    background-color: #020c1b;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Mobile Responsive */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px;
    transition: var(--transition);
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 80px;
        background-color: var(--bg-light);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        /* Increased for better touch on tablets */
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 50px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        /* Add shadow for depth */
    }

    .nav-links li {
        opacity: 0;
        margin: 30px 0;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero h1 {
        font-size: 3rem;
        /* Slightly reduced for tablet */
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        padding: 30px;
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .nav-links {
        width: 100%;
        /* Full width on mobile */
    }

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

    .hero p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    .stat-card {
        padding: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-wrapper {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .info-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Burger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}