/* Container for the whole section */
.air-break-switches-container2-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Text section (benefits) */
.air-break-switches-list-new {
    flex: 1 1 500px;
}

.air-break-switches-section-container2-new {
    background-color: #ffffff;
    padding: 20px;
    border-left: 5px solid #004aad;
    border-radius: 8px;
}

.air-break-switches-section-title2-new {
    font-size: 2.6rem;
    font-weight: 600;
   
    color: #2b5797;
    margin-bottom: 20px;
}

.air-break-switches-section-content2-new ul {
    padding-left: 0;
    list-style: none;
    line-height: 1.8;
    color: #333;
}

.air-break-switches-section-content2-new li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.8rem;
}

/* Custom bullet point using pseudo-element */
.air-break-switches-section-content2-new li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #1d4289;
    font-size: 0.9rem;
}

/* Image section */
.air-break-switches-image-new {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.air-break-switches-image-container-new {
    width: 100%;
    max-width: 400px; /* ✅ Limit max width */
    /* padding: 10px; */
    box-sizing: border-box;
}

.air-break-switches-image2-new {
 width: 100%;
    height: auto;
    /* max-height: 600px;  */
    object-fit: cover; /* Keeps the image fully visible */
    border-radius: 32px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    margin-top: 100px;
    padding: 20px;
    margin-right: 20px;
}

/* Responsive stacking for mobile */
@media screen and (max-width: 768px) {
    .air-break-switches-container2-new {
        flex-direction: column;
        align-items: center;
    }

    .air-break-switches-list-new,
    .air-break-switches-image-new {
        flex: 1 1 100%;
    }
    .air-break-switches-image2-new{
        margin-top: -30px;
        padding: 20px;
    }
    .air-break-switches-section-title2-new {
        font-size: 1.6rem;
        text-align: center;
    }

    .air-break-switches-section-container2-new {
        padding: 15px;
    }
}

/* Reset default body and html padding/margin */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent sideways scroll */
}
 
/* Apply box-sizing border-box globally */
*, *::before, *::after {
    box-sizing: border-box;
}
.back-air-break-switches-one {
    position: relative;
    width: 100%;
    height: auto;
    top: 70px;
    margin-bottom: 70px;
    aspect-ratio: 16 / 9;
    background-image: url(../images/banner/big-screen/air.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #042a4a;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.back-air-break-switches-one::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0);
}

.back-air-break-switches-one h1 {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5vw 2vw;
    z-index: 2;
    color: white;
    font-size: 5vw;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Laptop screens */
/* @media (max-width: 1600px) {
    .back-generators {
        background-image: url(../images/banner/generator2.png);
    }
} */

/* Tablet screens */
@media (max-width: 1280px) {
    .back-air-break-switches-one {
        background-image: url(../images/banner/big-screen/air.png);
    }
}

/* Mobile screens */
@media (max-width: 720px) {
    .back-air-break-switches-one {
        background-image: url(../images/banner/big-screen/air.png);
    }
    .back-air-break-switches-one h1 {
        font-size: 5.5vw;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .back-air-break-switches-one {
        background-image: url(../images/banner/mobile2/air.png);
    }
    .back-air-break-switches-one h1 {
        font-size: 5.5vw;
    }
}



.air-break-switches-column1,
.air-break-switches-column2 {
    flex: 1;
   
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .air-break-switches-column1,
    .air-break-switches-column2 {
        min-width: 100%;
    }
}

/* Additional CSS for creating two-column layout */
.air-break-switches-container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: -50px;
}


/* Common Styles for both columns */
.air-break-switches-section-container2 {
    font-family: Arial, sans-serif;
    margin: 30px;
    transition: all 0.3s ease-in-out;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.air-break-switches-section-container2.visible {
    opacity: 1;
}

.air-break-switches-section-title2 {
    font-size: 3.6rem;
    color: #2b5797;
    margin-bottom: 20px;
    /* border-bottom: 3px solid #2b972d; */
    padding-bottom: 10px;
    display: inline-block;
}

.air-break-switches-section-content2 {
    line-height: 1.6;
}

.air-break-switches-section-content2 ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 20px;
}

.air-break-switches-section-content2 ul li {
    margin-bottom: 10px;
    font-size: 1.6rem;
    text-align: justify;
    position: relative;
    padding-left: 25px;
}

.air-break-switches-section-content2 ul li:before {
    content: '\25B6'; /* Triangle bullet */
    color: #2b5797;
    font-size: 1.6rem;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .air-break-switches-section-container2 {
        padding: 20px;
    }

    .air-break-switches-section-title2 {
        font-size: 2.2rem;
    }

    .air-break-switches-section-content2 ul li {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .air-break-switches-section-container2 {
        padding: 15px;
    }

    .air-break-switches-section-title2 {
        font-size: 2.6rem;
    }

    .air-break-switches-section-content2 ul li {
        font-size: 1.6rem;
        text-align: left;
    }
}
.image-row {
    display: flex;
    justify-content: space-between; /* Adjust spacing between images */
    align-items: center;
    /* gap: 2px; Space between images */
    padding: 20px;
}

.air-break-switches-mid-highlight-banner1 {
    /* background: linear-gradient(90deg, #FDC830, #F37335);  */
    /* background: linear-gradient(to bottom, rgb(36, 103, 154), rgb(92, 223, 237)); */
    color : #2b5797;
    margin-left: 20px;
    /* margin-bottom: 20px; */
    /* border-radius: 2px; */
    /* margin-top: -50px; */
    text-align: left;
    font-size: 3.6rem;
    font-weight: bold;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

@media (max-width: 768px) {
  

    .air-break-switches-image2 {
        
        padding-top: 2px;
        margin-top: -50px;
   
      }
}

@media (max-width: 480px) {


    .air-break-switches-image2 {
        
            padding-top: -50px;
            margin-top: -100px;
       
          }
}


.air-break-switches-column1 {
    flex: 1;

    box-sizing: border-box;
}

.air-break-switches-title1 {
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color:#2b5797;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.air-break-switches-text1 {
    font-size: 16px;
    line-height: 1.5;
    
}

.air-break-switches-column2 {
    flex: 1;
    min-width: px;
    box-sizing: border-box;
}

.air-break-switches-title2 {
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    color:#2b5797;
}

.air-break-switches-text2{
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

.air-break-switches-paragraph{
   padding: 20PX;
}

.air-break-switches-image-container {
    /* margin-top: 10px; */
    text-align: center;
  }
  
  .air-break-switches-image {
    max-width: 100%;
    height: auto;
  }
  .air-break-switches-image2 {
    width: 100%;
    height: auto;
    max-height: 400px; /* 🔽 Reduce height as needed */
    object-fit: contain; /* Keeps the image fully visible */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }



  .air-break-switches-text-highlight{
    font-size: 2.3rem;
    color: rgb(140, 73, 223);
  }
  .air-break-switches-text-highlight:hover{
    
    color: #f39c12;
  }



  .air-break-switches-text-highlight-flyer{
    font-size: 2.3rem;
    color: rgb(140, 73, 223);
    padding: 20px;
    font-weight: bold;
  
  }
  .air-break-switches-text-highlight-flyer:hover{
    
    color: #f39c12;
    padding: 20px;
  }
/* Responsive Design */
@media (max-width: 768px) {
    .air-break-switches-container {
        flex-direction: column;
    }
}


/* General Styling for Health Boxes Section */
.air-break-switches-box-block {
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Container Styling */
.air-break-switches-box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Health Box Styling */
.air-break-switches-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    height: auto;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.air-break-switches-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.air-break-switches-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

/* Title Styling */
.air-break-switches-box-title {
    font-size: 1.6rem;
    font-weight: bold;
    color:#2b5797;
}

/* Responsive Design */
@media (max-width: 768px) {
    .air-break-switches-box-container {
        flex-direction: column;
        align-items: center;
    }
    .air-break-switches-box {
        width: 90%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .air-break-switches-box {
        width: 45%;
    }
}

@media (min-width: 1025px) {
    .air-break-switches-box {
        width: 30%;
    }
}
