@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #02020a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary: #00d2ff;
    --secondary: #9d50bb;
    --text-main: #ffffff;
    --text-dim: #b0b0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-blue: #00d2ff;
    --neon-purple: #9d50bb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: url('../img/cursor-saturn.svg') 16 16, auto;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(157, 80, 187, 0.15) 0%, transparent 40%);
}

canvas#bg-stars {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.5;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 210, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--neon-blue);
}

.btn-outline:hover {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin: 40px 0 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title::before,
.section-title::after {
    content: '';
    height: 1px;
    width: 100px;
    background: linear-gradient(to right, transparent, var(--neon-blue));
    margin: 0 20px;
}

.section-title::after {
    background: linear-gradient(to left, transparent, var(--neon-blue));
}

/* Header */
header {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 35px;
    font-weight: 700;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 12px;
}

#header-logo {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 24px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-size: 15px;
    opacity: 0.8;
    transition: 0.3s;
}

nav a:hover {
    opacity: 1;
    color: var(--neon-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--neon-blue);
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 40px;
    gap: 50px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-dim);
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    filter: brightness(1.1) contrast(1.05) drop-shadow(0 20px 50px rgba(0, 210, 255, 0.3));
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-blue);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 210, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-blue);
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
    padding: 50px 0;
}

.project-card {
    background: none;
    border: none;
    backdrop-filter: none;
    text-align: center;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card h3 {
    font-size: 13px;
    margin: 12px 0 8px;
    color: var(--text-main);
    opacity: 0.9;
}

.project-card .btn {
    padding: 6px 12px;
    font-size: 11px;
}

.project-img {
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 5px;
}

.project-img.p1 {
    background-image: url('../img/maikal_logo.jpg');
}

.project-img.p2 {
    background-image: url('../img/Go4agri_logo.png');
}

.project-img.p3 {
    background-image: url('../img/Ives.jpeg');
    padding: 10px;
}

.project-img.p4 {
    background-image: url('../img/himalaya_logo.jpg');
}

.project-img.p5 {
    background-image: url('../img/logo.png');
}

.project-img.p6 {
    background-image: url('../img/sattvahaar_logo.png');
    background-size: 70%;
    height: 80px;
    border-radius: 20px;
}

.project-img.p7 {
    background-image: url('../img/indite_logo.png');
}

.project-img.p8 {
    background-image: url('../img/ganga_logo.png');
}

.project-img.p9 {
    background-image: url('../img/agroseed_logo.png');
}

.see-more-card {
    cursor: pointer;
    background: rgba(0, 210, 255, 0.05);
    border: 1px dashed var(--neon-blue) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.see-more-card:hover {
    background: rgba(0, 210, 255, 0.1);
    transform: translateY(-5px);
}

.see-more-card h3 {
    margin-top: 15px;
    color: var(--neon-blue) !important;
}

.see-more-card span {
    font-size: 12px;
    color: var(--text-dim);
}

.see-more-img {
    height: 60px;
    width: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto;
}

.project-card h3 {
    margin-bottom: 15px;
}

.project-card .btn {
    width: 100%;
    text-align: center;
}

/* Process */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 40px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.process-step {
    text-align: center;
    background: var(--bg-color);
    padding: 10px;
    width: 150px;
}

.step-dot {
    width: 20px;
    height: 20px;
    background: var(--neon-blue);
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 0 15px var(--neon-blue);
    position: relative;
}

.step-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100px;
    height: 2px;
    background: var(--neon-blue);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 30px;
    position: relative;
}

.quote-icon {
    color: var(--neon-blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.test-text {
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 20px;
}

/* About Me */
.about-me {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.about-photo {
    flex: 1;
}

.about-photo img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--neon-blue);
}

.about-info {
    flex: 2;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--neon-blue);
    background: rgba(0, 210, 255, 0.05);
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(2, 2, 10, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        font-size: 18px;
    }

    .services-grid,
    .why-grid,
    .projects-grid,
    .testimonials-grid,
    .about-me {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-timeline::before {
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .process-step {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        width: 100%;
        padding-left: 20px;
    }

    .step-dot {
        margin: 0;
    }

    .step-dot::after {
        display: none;
    }

    .form-row {
        flex-direction: column;
    }
}