/* Reset default browser styles and set up basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set up the main font and background for the entire page */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/

/* Make each section a snap point */
section {
    scroll-snap-align: start; /* Each section will snap to the top of viewport */
    min-height: 100vh; /* Ensures each section takes up at least the full viewport */
}

/* Container class to center content and add padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation bar styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation container to organize nav items */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Company logo styling */
.nav-logo h2 {
    color: #8b5cf6;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Navigation menu styling */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Individual navigation links */
.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover effect for navigation links */
.nav-menu a:hover {
    color: #8b5cf6;
}

/* Special styling for the contact button */
.contact-btn {
    background: #8b5cf6;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #7c3aed;
    color: #ffffff !important;
}

/* Mobile hamburger menu (hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero section - the main banner area */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0px 10px 10px;
    text-align: center;
    overflow: hidden; /* Add this line */
}

/* Background pattern for the hero section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(139, 92, 246, 0.1) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(139, 92, 246, 0.05) 50%, transparent 51%);
    background-size: 60px 60px;
    animation: backgroundMove 20s linear infinite;
}

/* Animation for the background pattern */
@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Hero content container */
.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin-top: -240px; /* Add margin to push content below navbar */
}

/* Customer testimonial badge */
.testimonial-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out;
}

/* Customer avatar circles */
.customer-avatars {
    display: flex;
    gap: -10px;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #8b5cf6, #ec4899, #f59e0b);
    border: 2px solid #0a0a0a;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Main hero title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Highlighted text in the title */
.highlight {
    color: #8b5cf6;
}

/* Hero description text */
.hero-description {
    font-size: 1.2rem;
    color: #a1a1aa;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Container for hero buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Primary button styling */
.btn-primary {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Secondary button styling */
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Services section styling */
.services {
    padding: 100px 0;
    background: #0a0a0a; /* Add this or use your preferred color */
}

/* Section title styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Grid layout for service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Individual service card styling */
.service-card {
    padding: 2.5rem;  /* Increase padding (was likely 1.5-2rem) */
    min-height: 340px; /* Set minimum height */
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Service icon styling */
.service-icon {
    font-size: 2.5rem; /* Larger icons */
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #a1a1aa;
    line-height: 1.7;
}

.service-features {
    margin-top: auto; /* Pushes features to bottom */
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #d4d4d8;
}

.feature-item::before {
    content: "✓";
    color: #8b5cf6;
    margin-right: 0.75rem;
}

/* About section styling */
/* Add this CSS to your styles.css file */

/* Meet Developers Section */
.meet-developers {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

/* Section title with underline */
.meet-developers .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    border-radius: 2px;
}

/* Developers grid layout */
.developers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Individual developer card */
.developer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Animated top border */
.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #ec4899, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hover effects */
.developer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.4);
}

.developer-card:hover::before {
    opacity: 1;
}

/* Developer image container */
.developer-image {
    margin-bottom: 2rem;
    position: relative;
}

/* Image placeholder (replace with actual img tag) */
.image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: 4px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* For actual images, use this instead of .image-placeholder */
.developer-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid rgba(139, 92, 246, 0.3);
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Animated border */
.image-placeholder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8b5cf6, #ec4899, #f59e0b, #8b5cf6);
    border-radius: 50%;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-placeholder span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.developer-card:hover .image-placeholder,
.developer-card:hover .developer-image img {
    transform: scale(1.05);
    border-color: rgba(139, 92, 246, 0.6);
}

/* Developer info styling */
.developer-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.role {
    font-size: 1.1rem;
    color: #8b5cf6;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.description {
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Skills tags */
.skills {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.skill {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.skill:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

/* Team description */
.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.team-description p {
    color: #a1a1aa;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .developers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .developer-card {
        padding: 1.5rem;
    }

    .image-placeholder,
    .developer-image img {
        width: 120px;
        height: 120px;
    }

    .meet-developers .section-title {
        font-size: 2rem;
    }

    .developer-info h3 {
        font-size: 1.5rem;
    }
}

/* Contact section styling */
.contact {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-info p {
    color: #a1a1aa;
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* Contact form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a1a1aa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

/* Footer styling */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a1a1aa;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive design */
@media (max-width: 768px) {
    /* Hide desktop menu on mobile */
    .nav-menu {
        display: none;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Adjust hero title size for mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Stack hero buttons vertically on mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Stack contact content vertically on mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Adjust section title size for mobile */
    .section-title {
        font-size: 2rem;
    }
}
