:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --light-bg: #f8fafc;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.95) !important;
}

/* Updated Hero section */
.hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9)),
                url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: white;
    position: relative;
    padding: 120px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-card {
  transition: transform 0.3s ease;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  padding: 1.5rem;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  color: white;
}

.client-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer {
  background: #1e293b;
}

.contact-info a:hover {
  color: var(--primary-color) !important;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
}

.btn-primary:hover {
  background: var(--secondary-color);
}

/* Updated Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 100px 20px;
    }

    .hero-content {
        padding: 1rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        width: 100%;
        word-wrap: break-word;
        hyphens: auto;
    }

    .navbar {
        padding: 0.5rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .client-card {
        margin-bottom: 1rem;
    }

    footer {
        text-align: center;
    }

    footer .col-lg-4 {
        margin-bottom: 2rem;
    }

    iframe {
        height: 300px;
    }
}

/* Updated Very Small Screen Styles */
@media (max-width: 576px) {
    .hero {
        padding: 80px 15px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-content {
        padding: 0.5rem;
    }

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