/* Mobile First Responsive Design */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card {
    margin-bottom: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .team-img {
    height: 200px;
  }
  
  .gallery-img {
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  /* No animations on mobile per requirements */
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .service-card:hover,
  .team-card:hover,
  .gallery-img:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    min-height: 90vh;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  .service-card,
  .feature-card {
    margin-bottom: 2rem;
  }
  
  .team-img {
    height: 220px;
  }
  
  .gallery-img {
    height: 220px;
    margin-bottom: 1rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    min-height: 95vh;
  }
  
  .service-card,
  .feature-card {
    margin-bottom: 2rem;
  }
  
  .team-img {
    height: 240px;
  }
  
  .gallery-img {
    height: 240px;
    margin-bottom: 1.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero {
    min-height: 100vh;
  }
  
  .service-card,
  .feature-card,
  .review-card {
    margin-bottom: 2rem;
  }
  
  .gallery-img {
    margin-bottom: 2rem;
  }
}

/* Extra Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .service-card,
  .feature-card,
  .review-card {
    margin-bottom: 2rem;
  }
  
  .gallery-img {
    margin-bottom: 2rem;
  }
}

/* Navbar Responsive Adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--bg-white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
}

/* Hero Section Responsive */
@media (max-width: 767.98px) {
  .hero .row {
    flex-direction: column-reverse;
  }
  
  .hero .col-md-6:first-child {
    margin-top: 2rem;
  }
}

/* Services Grid Responsive */
@media (max-width: 767.98px) {
  .services .row .col-lg-4 {
    margin-bottom: 2rem;
  }
}

/* Team Grid Responsive */
@media (max-width: 767.98px) {
  .team .row .col-lg-3,
  .team .row .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* Reviews Grid Responsive */
@media (max-width: 767.98px) {
  .reviews .row .col-lg-4 {
    margin-bottom: 2rem;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer .row .col-md-3,
  .footer .row .col-md-4 {
    margin-bottom: 2rem;
  }
  
  .footer {
    text-align: center;
  }
}

/* Form Responsive */
@media (max-width: 575.98px) {
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
}

/* Gallery Responsive */
@media (max-width: 575.98px) {
  .gallery .col-6 {
    margin-bottom: 1rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery .col-md-4 {
    margin-bottom: 1.5rem;
  }
}

/* Process Steps Responsive */
@media (max-width: 767.98px) {
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Case Studies Responsive */
@media (max-width: 767.98px) {
  .casestudy .col-lg-4 {
    margin-bottom: 2rem;
  }
}

/* FAQ Responsive */
@media (max-width: 575.98px) {
  .faq-card {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }
}

/* Blog Grid Responsive */
@media (max-width: 767.98px) {
  .blog .col-lg-4 {
    margin-bottom: 2rem;
  }
}

/* Price Plan Responsive */
@media (max-width: 991.98px) {
  .priceplan .col-lg-4 {
    margin-bottom: 2rem;
  }
}

/* Contact Info Responsive */
@media (max-width: 767.98px) {
  .contact-info {
    margin-top: 2rem;
    text-align: center;
  }
}

/* Breadcrumb Responsive */
@media (max-width: 575.98px) {
  .breadcrumb-img {
    height: 150px;
  }
}

/* Utility Responsive Classes */
@media (max-width: 575.98px) {
  .text-center-mobile {
    text-align: center;
  }
  
  .mb-4-mobile {
    margin-bottom: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero::before {
    display: none;
  }
  
  .hero {
    min-height: auto;
    background: white;
  }
  
  .section {
    padding: 2rem 0;
  }
} 

body {
    overflow-x: hidden;
}

.hero-content {
    padding-top: 100px;
}