/* ========================================
   RESPONSIVE STYLES - BOOTSTRAP 5 BREAKPOINTS
   Mobile-First Design
   ======================================== */

/* ========================================
   MOBILE STYLES (Default)
   ======================================== */

/* Section Padding for Mobile */
.section {
  padding: var(--section-padding-mobile);
}

#about,
#services,
#features,
#priceplan,
#team,
#reviews,
#casestudy,
#process,
#timeline,
#career,
#coreinfo,
#blog,
#faq,
#gallery,
#contact {
  padding: var(--section-padding-mobile);
}

/* Hero Section Mobile */
#hero {
  min-height: 80vh;
  text-align: center;
}

#hero .hero-content {
  margin-bottom: 2rem;
    padding-top: 250px;
}

/* Typography Mobile */
h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.3rem;
}

/* Navigation Mobile */
.navbar-brand {
  font-size: 1.2rem;
}

/* Cards Mobile Spacing */
.service-card,
.feature-item,
.price-card,
.team-card,
.review-card,
.case-card {
  margin-bottom: 2rem;
}

/* Process Steps Mobile */
#process .process-step::after {
  display: none;
}

/* Gallery Mobile */
#gallery .gallery-item img {
  height: 200px;
}

/* Contact Form Mobile */
#contact .contact-form,
#contact .contact-info {
  margin-bottom: 2rem;
}

/* Footer Mobile */
#footer .footer-section {
  text-align: center;
  margin-bottom: 2rem;
}

/* ========================================
   TABLET STYLES (≥768px)
   ======================================== */

@media (min-width: 768px) {
  /* Hero Section */
  #hero {
    min-height: 90vh;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  /* Gallery */
  #gallery .gallery-item img {
    height: 220px;
  }
  
  /* Contact */
  #contact .contact-form,
  #contact .contact-info {
    margin-bottom: 0;
  }
}

/* ========================================
   DESKTOP STYLES (≥992px)
   ======================================== */

@media (min-width: 992px) {
  /* Section Padding */
  .section {
    padding: var(--section-padding);
  }
  
  #about,
  #services,
  #features,
  #priceplan,
  #team,
  #reviews,
  #casestudy,
  #process,
  #timeline,
  #career,
  #coreinfo,
  #blog,
  #faq,
  #gallery,
  #contact {
    padding: var(--section-padding);
  }
  
  /* Hero Section */
  #hero {
    min-height: 100vh;
    text-align: left;
  }
  
  /* Typography */
  h1 {
    font-size: var(--font-size-h1);
  }
  
  h2 {
    font-size: var(--font-size-h2);
  }
  
  h3 {
    font-size: var(--font-size-h3);
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  /* Process Steps */
  #process .process-step::after {
    display: block;
  }
  
  /* Gallery */
  #gallery .gallery-item img {
    height: 250px;
  }
  
  /* Footer */
  #footer .footer-section {
    text-align: left;
    margin-bottom: 2rem;
  }
}

/* ========================================
   LARGE DESKTOP STYLES (≥1200px)
   ======================================== */

@media (min-width: 1200px) {
  /* Container Max Width */
  .container {
    max-width: 1140px;
  }
  
  /* Gallery */
  #gallery .gallery-item img {
    height: 280px;
  }
  
  /* Enhanced Spacing */
  .service-card,
  .feature-item,
  .price-card {
    padding: 2.5rem;
  }
}

/* ========================================
   EXTRA LARGE DESKTOP STYLES (≥1400px)
   ======================================== */

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ========================================
   NO ANIMATIONS ON MOBILE (Performance)
   ======================================== */

@media (max-width: 767px) {
  .service-card:hover,
  .feature-item:hover,
  .team-card:hover,
  .blog-card:hover,
  .gallery-item img:hover {
    transform: none;
  }
  
  .about .feature-card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  #header,
  #footer {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }
  
  .service-card,
  .feature-item,
  .price-card,
  .team-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
} 

body {
    overflow-x: hidden;
}