:root {
      --text-primary: #2a6496;
      --text-secondary: #4CAF50;
      --text-dark: #333;
      --text-light: #fff;
      --bg-light: #f9f9f9;
      --border-light: #e0e0e0;
    }

    .total_cl_wrapper {
      display: flex;
      justify-content: center;
      
      padding: 60px 0;
     
	  
	  
	  
	  
	  width: 100%;
    height: 100%;
    background-image: url(../img/total_cl/123dfsgs45.JPG);
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
	  
	  
    }
    
    .total_cl_container {
      width: 1200px;
      max-width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      padding: 50px 20px 50px 20px;
      box-sizing: border-box;
    }
    
    .total_cl_services_wrapper {
      flex: 1;
      min-width: 300px;
    }
    
    .total-title {
      font-size: 1.8rem;
      color: #ffffff;
      margin-bottom: 20px;
      font-weight: 700;
      text-align: center;
    }
    
    .total_cl_services {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
      width: 100%;
    }
    
    .total_cl_section {
      background: #d1e8f7;
      border-radius: 8px;
      padding: 20px 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
      min-height: 160px;
      text-decoration: none;
    }
    
    .total_cl_section2 {
      background: #cfe9d0;
      border-radius: 8px;
      padding: 20px 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box;
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
      min-height: 160px;
      text-decoration: none;
    }
    
    .total_cl_section:hover, .total_cl_section2:hover {
      box-shadow: 0 4px 12px rgba(76,175,80,0.15);
      transform: translateY(-3px);
    }
    
    .total_cl_icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #eaf3fa;
      border-radius: 50%;
      margin-bottom: 15px;
      color: var(--text-primary);
      font-size: 24px;
    }
	
	.total_cl_icon2 {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f4fff4;
      border-radius: 50%;
      margin-bottom: 15px;
      color: #2e8d32;
      font-size: 24px;
    }
    
    .total_cl_title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      text-align: center;
      line-height: 1.3;
    }
    
    @media (max-width: 1024px) {
      .total_cl_services {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .total_cl_wrapper {
        padding: 40px 0;
      }
      
      .total_cl_services {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .total-title {
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 480px) {
      .total_cl_wrapper {
        padding: 30px 0;
      }
      
      .total_cl_container {
        padding: 0 15px;
        gap: 20px;
      }
      
      .total-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
      }
      
      .total_cl_section, .total_cl_section2 {
        min-height: 140px;
        padding: 15px 10px;
      }
      
      .total_cl_icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
      }
      
      .total_cl_title {
        font-size: 0.9rem;
      }
    }
    
   
    @media (max-width: 350px) {
      .total_cl_services {
        gap: 10px;
      }
      
      .total_cl_section, .total_cl_section2 {
        padding: 10px 5px;
        min-height: 120px;
      }
      
      .total_cl_icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
      
      .total_cl_title {
        font-size: 0.8rem;
      }
    }