/* Responsive CSS - Media Queries */

/* Extra Large Devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 42px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 36px;
  }

  .section-padding {
    padding: 60px 0;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 30px;
  }

  .section-padding {
    padding: 50px 0;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 26px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .btn-prim-v1 {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Print styles */
@media print {
  .header-area,
  .footer-area,
  .btn-wsp {
    display: none !important;
  }
}
