/* Make images responsive globally */
img {
  max-width: 100%;
  height: auto;
}

/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {
  .container {
    max-width: 1140px;
  }
}

/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
 
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  /* Adjust hero text */
  .slider-area h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  
  /* Make footer table responsive */
  footer table {
    font-size: 13px;
  }
  
  footer table td {
    padding: 5px;
  }
  
  /* Adjust practice items */
  .single-practice {
    margin-bottom: 30px;
  }
}
 
/* small mobile :320px. */
@media (max-width: 767px) {
  
  /* Container adjustments */
  .container, .container-fluid {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Header/Logo adjustments */
  .header-area .logo img {
    max-width: 150px;
    height: auto;
  }
  
  /* Navigation - already handled by mobile_menu */
  
  /* Language flags table */
  .header-area table {
    margin: 0 auto;
  }
  
  /* Hero/Slider area */
  .slider-area h1 {
    font-size: 28px !important;
    line-height: 1.3;
    padding: 20px 0;
  }
  
  .slider-height {
    min-height: 400px !important;
  }
  
  .slider-bottom {
    flex-direction: column;
    padding: 20px;
  }
  
  /* Section padding */
  .section-padding30 {
    padding: 40px 0;
  }
  
  /* Section titles */
  .section-tittle h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  /* Practice/Product cards - stack full width */
  .col-xl-4.col-lg-4.col-md-6,
  .col-xl-7.col-lg-7,
  .col-xl-5.col-lg-5 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .single-practice {
    margin-bottom: 30px;
  }
  
  .practice-caption h4,
  .practice-caption2 h4 {
    font-size: 20px;
  }
  
  /* About section images */
  .about-img .about-font-img,
  .about-img .about-back-img {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  
  .about-back-img {
    display: block !important;
  }
  
  /* Team/Approach section */
  .single-teams {
    margin-bottom: 30px;
  }
  
  .team-caption h3 {
    font-size: 20px;
  }
  
  /* Footer - Convert table to stacked layout */
  footer table,
  footer table tbody,
  footer table tr,
  footer table td {
    display: block;
    width: 100% !important;
  }
  
  footer table td {
    margin-bottom: 30px;
    padding: 0 !important;
  }
  
  .footer-tittle {
    margin-bottom: 20px;
  }
  
  .footer-tittle h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  footer ul li {
    margin-bottom: 8px;
  }
  
  /* Want to work section */
  .wantToWork-caption img {
    max-width: 100%;
    height: auto;
  }
  
  /* Adjust padding */
  .w-padding {
    padding: 40px 0;
  }
  
  .footer-padding {
    padding: 40px 0;
  }
  
  /* Copyright text */
  .footer-copy-right p {
    font-size: 13px;
    line-height: 1.6;
  }
}
 
/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 450px;
  }
  
  .slider-area h1 {
    font-size: 32px !important;
  }
}