/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.nav-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: #8B5CF6;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B5CF6;
}

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

.nav-menu a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B5CF6;
}

.btn-contact {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
}

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

.btn-outline {
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
    background: transparent;
}

.btn-outline:hover {
    background: #8B5CF6;
    color: white;
    transform: translateY(-2px);
}

/* Hero Animation */
.hero-animation {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    animation-name: pulse1;
}

.circle-2 {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
    animation-name: pulse2;
    animation-delay: -2s;
}

.circle-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
    animation-name: pulse3;
    animation-delay: -4s;
}

.circle-4 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(168, 85, 247, 0.4));
    animation-name: pulse4;
    animation-delay: -6s;
}

.circle-5 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    animation-name: pulse5;
    animation-delay: -1s;
}

@keyframes pulse1 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.1; }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.15) rotate(-180deg); opacity: 0.2; }
}

@keyframes pulse3 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.3; }
}

@keyframes pulse4 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.25) rotate(-180deg); opacity: 0.4; }
}

@keyframes pulse5 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(360deg); opacity: 0.8; }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    position: relative;
}

.service-icon-1 {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.service-icon-2 {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.service-icon-3 {
    background: linear-gradient(135deg, #10B981, #059669);
}

.service-icon-4 {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Approach Section */
.approach {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(180deg, #8B5CF6, #A855F7);
}

.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6B7280;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content.single-column {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #8B5CF6;
}

.footer-section p {
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: #9CA3AF;
    margin-bottom: 0.5rem;
    cursor: default;
    transition: color 0.3s ease;
}

.footer-section ul li:hover {
    color: #8B5CF6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9CA3AF;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8B5CF6;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 805px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
      display: none;
      flex-direction: column;
      background: white;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
      border-top: 1px solid #e5e7eb;
      z-index: 999;
      padding: 1rem 2rem;
    }

    .nav-menu.open {
      display: flex;
    }

    .nav-toggle {
      display: block;
    }

.hero-animation {
  display: none;
}

.hero {
  padding: 8rem 1.5rem 3rem; /* increase top padding */
  min-height: auto;
}
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-buttons {
      justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-timeline::before {
        left: 1.5rem;
    }

    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .btn-contact {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

.hero {
  padding: 7rem 1.5rem 3rem; /* increase top padding */
  min-height: auto;
}

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .approach-step {
        gap: 1rem;
    }

    .approach-timeline::before {
        left: 1rem;
    }

    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 320px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .nav {
        padding: 0.5rem 0.75rem;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.8rem;
    }

    .brand-text {
        font-size: 1.25rem;
    }

.hero {
  padding: 6rem 1.5rem 3rem; /* increase top padding */
  min-height: auto;
}

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Ultra Small (250px) */
@media (max-width: 250px) {
    html {
        font-size: 11px;
    }

    .container {
        padding: 0 0.5rem;
    }

    .nav {
        padding: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-text {
        font-size: 1rem;
    }

.hero {
  padding: 9rem 1.5rem 3rem; /* increase top padding */
  min-height: auto;
}

    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 0.75rem;
    }

    .service-icon {
        width: 32px;
        height: 32px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .approach-step {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .step-number {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .contact-item {
        gap: 0.5rem;
    }

    .contact-icon {
        width: 16px;
        height: 16px;
    }

    .contact-item span {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
}

.logo-img {
    height: 32px;
    width: auto;
    display: block;
}