:root {
    --dark-navy: #0c003b;
    --dark-gray: #181818;
    --electric-blue: #00aaff;
    --neon-green: #00cc88;
    --soft-orange: #ff8a5b;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --accent-gradient: linear-gradient(45deg, var(--electric-blue), var(--neon-green));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-navy), var(--dark-gray));
    color: var(--text-light);
    overflow-x: hidden;
}

.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--accent-gradient);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5), 0 0 30px rgba(0, 204, 136, 0.3);
    animation: pulse 2s ease-in-out infinite;
    will-change: transform, box-shadow;
}

.cursor-follower {
    position: fixed;
    width: 50px;
    height: 50px;
    background: rgba(0, 204, 136, 0.2);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 999;
    backdrop-filter: blur(7px);
    transition: background 0.3s ease, transform 0.3s ease;
    will-change: transform, background;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 170, 255, 0.5), 0 0 30px rgba(0, 204, 136, 0.3);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 170, 255, 0.7), 0 0 40px rgba(0, 204, 136, 0.5);
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.navbar {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px) !important;
    padding: 1.5rem 5% !important;
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--text-light) !important;
    margin-right: 2rem;
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
    margin-left: 1.5rem;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-green) !important;
}

.navbar-toggler {
    border: 1px solid var(--neon-green) !important;
    padding: 0.5rem !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 204, 136, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.container {
    display: flex;
    min-height: 100vh;
    position: relative;
    flex-direction: row-reverse;
    padding-top: 80px;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
}

.content-column {
    flex: 1;
    padding: 8% 10% 8% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.visual-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3.2rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(50px);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    color: var(--neon-green);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    color: var(--neon-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(50px);
}

.button-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--dark-navy);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--neon-green);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(0, 204, 136, 0.1);
    border-color: var(--electric-blue);
    color: var(--electric-blue);
    transform: translateY(-3px);
}

.website-mockups {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    gap: 1rem;
}

.mockup {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 170, 255, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
    border: 1px solid var(--neon-green);
    backface-visibility: hidden;
}

.mockup img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mockup:hover {
    transform: translateY(-10px) rotateY(0deg) rotateX(0deg) rotateZ(0deg) !important;
    box-shadow: 0 30px 60px rgba(0, 191, 255, 0.2);
    z-index: 4 !important;
    border-color: var(--electric-blue);
}

.mockup-1 {
    width: 80%;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotateY(10deg) rotateX(5deg) rotateZ(-2deg);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.mockup-2 {
    width: 70%;
    right: 0;
    top: 30%;
    transform: rotateY(-10deg) rotateX(-5deg) rotateZ(2deg);
    z-index: 2;
    animation: float2 5s ease-in-out infinite 1s;
}

.mockup-3 {
    width: 60%;
    left: 8%;
    bottom: 45%;
    transform: rotateY(-5deg) rotateX(8deg) rotateZ(-3deg);
    z-index: 1;
    animation: float3 7s ease-in-out infinite 0.7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(10deg) rotateX(5deg) rotateZ(-2deg); }
    50% { transform: translateY(-20px) rotateY(10deg) rotateX(5deg) rotateZ(-2deg); }
}

@keyframes float2 {
    0%, 100% { transform: rotateY(-10deg) rotateX(-5deg) rotateZ(2deg); }
    50% { transform: translateY(-15px) rotateY(-10deg) rotateX(-5deg) rotateZ(2deg); }
}

@keyframes float3 {
    0%, 100% { transform: rotateY(-5deg) rotateX(8deg) rotateZ(-3deg); }
    50% { transform: translateY(-25px) rotateY(-5deg) rotateX(8deg) rotateZ(-3deg); }
}

footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    padding: 2rem 5%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

footer a {
    color: var(--neon-green);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--electric-blue);
}

.company-overview, .team-section, .mission-vision, .services-grid, .projects-section, .contact-section, .terms-section, .privacy-section {
    margin: 3rem 0;
    z-index: 3;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}


.team-card .team-image{
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}
.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 12px;
}

.team-card:hover .team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-overlay h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-overlay .role {
    color: var(--electric-blue);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.team-overlay .bio {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
    transform: scale(1.1);
}

.mission-card h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p, .mission-card ul {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.mission-card ul li::before {
    content: '✔';
    color: var(--electric-blue);
    position: absolute;
    left: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    width: 48%;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-card h3 {
    color: var(--neon-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tech-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-list li {
    background: rgba(0, 170, 255, 0.2);
    color: var(--electric-blue);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 2rem;
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.contact-form h2 {
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--electric-blue);
    color: var(--text-light);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--neon-green);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 204, 136, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
}

.contact-details {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 2rem;
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.contact-details h2 {
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-list .contact-icon {
    font-size: 1.5rem;
    color: var(--electric-blue);
    margin-right: 1rem;
}

.contact-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--neon-green);
}

.contact-list p {
    margin: 0;
}
.contact-form:hover, .contact-details:hover {
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.3);
    z-index: 4;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.terms-content {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 2rem;
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.terms-item {
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.terms-item h2 {
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.terms-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.terms-item ul li {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.terms-item ul li::before {
    content: '✔';
    color: var(--electric-blue);
    position: absolute;
    left: 0;
}

.terms-item a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-item a:hover {
    color: var(--electric-blue);
}

.privacy-content {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    padding: 2rem;
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.privacy-item {
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
    z-index: 3;
}

.privacy-item h2 {
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.privacy-item p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.privacy-item ul li {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-item ul li::before {
    content: '✔';
    color: var(--electric-blue);
    position: absolute;
    left: 0;
}

.privacy-item a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-item a:hover {
    color: var(--electric-blue);
}

@media (max-width: 1024px) {
    body {
        cursor: default;
    }

    .custom-cursor, .cursor-follower {
        display: none;
    }

  

    .container {
        flex-direction: column;
        padding-top: 60px;
    }

    .content-column {
        order: 2;
        padding: 2rem;
        text-align: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.3);
    }

    .visual-column {
        order: 1;
        justify-content: center;
        min-height: 50vh;
        padding: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .subtext {
        font-size: 1.1rem;
    }

    .button-container {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        cursor: pointer;
    }

    .website-mockups {
        height: 400px;
    }

    #canvas-container {
        opacity: 0.7;
    }
    .team-card {
        width: 100%;
        height: 100%;
        
    }
    .team-card .team-image{
        width: 100%;
        height: 100%;
        
    }
    

    .services-grid, .team-grid, .mission-vision-grid, .project-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 250px;
    }

    .team-overlay .bio, .mission-card p, .service-card p, .project-card p, .contact-list li, .terms-item p, .terms-item ul li, .privacy-item p, .privacy-item ul li {
        font-size: 1rem;
    }
    .service-card .btn-secondary {
        
        width: 55%;
    }
    
    .map-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .visual-column {
        min-height: 300px;
    }

    #canvas-container {
        opacity: 0.4;
    }
}