<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Mobile First Responsive Design */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --font-size-base: 14px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-card,
  .price-card {
    padding: 1.5rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  section {
    padding: 2rem 0;
  }
  
  /* Disable animations on mobile for better performance */
  .service-card:hover,
  .price-card:hover,
  .about-feature:hover,
  .feature-item:hover {
    transform: none;
  }
  
  /* Stack columns on mobile */
  .row &gt; [class*="col-"] {
    margin-bottom: 1rem;
  }
  
  /* Adjust swiper for mobile */
  .swiper {
    padding-bottom: 2rem;
  }
  
  .swiper-slide {
    padding: 0 0.5rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .team-photo {
    width: 175px;
    height: 175px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  /* Enable hover effects on tablets and up */
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .price-card:hover {
    transform: translateY(-5px);
  }
  
  /* Swiper adjustments for tablets */
  .swiper-slide {
    padding: 0 1rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  /* Full hover effects on desktop */
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .price-card:hover {
    transform: translateY(-10px);
  }
  
  .about-feature:hover {
    transform: translateY(-5px);
  }
  
  .feature-item:hover {
    transform: scale(1.05);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .container {
    max-width: 1140px;
  }
  
  /* Enhanced animations for large screens */
  .service-card:hover {
    transform: translateY(-15px);
  }
  
  .price-card:hover {
    transform: translateY(-15px);
  }
  
  .team-photo:hover {
    transform: scale(1.15);
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
}

/* High DPI (Retina) displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-image,
  .blog-image,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Accessibility - Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  /* Disable swiper autoplay and effects */
  .swiper {
    --swiper-theme-color: var(--primary-purple);
  }
  
  .swiper-slide {
    transition: none;
  }
  
  /* Disable hover transforms */
  .service-card:hover,
  .price-card:hover,
  .about-feature:hover,
  .feature-item:hover,
  .team-photo:hover,
  .gallery-item:hover {
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  /* This can be expanded for dark mode support if needed */
  .form-control {
    background-color: rgba(255, 255, 255, 0.9);
  }
}

/* Print styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .navbar,
  .swiper-pagination,
  .btn-submit {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  .section-title {
    page-break-after: avoid;
  }
}

/* Container responsive widths */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Responsive typography scale */
@media (max-width: 575.98px) {
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .section-desc {
    font-size: 1rem;
  }
  
  .service-price,
  .price-value {
    font-size: 1.5rem;
  }
  
  .team-name {
    font-size: 1.2rem;
  }
  
  .blog-title {
    font-size: 1.1rem;
  }
}

/* Flexible grid system */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-12,
.col-md-6,
.col-lg-4,
.col-lg-3 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Responsive spacing utilities */
@media (max-width: 575.98px) {
  .p-4 {
    padding: 1rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1rem !important;
  }
  
  .mt-4 {
    margin-top: 1rem !important;
  }
} </pre></body></html>