/*hero section*/

  .h-left-content {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .stph1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    position: relative;
    line-height: 1.1;
    color: #fff;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, #0a1d33c4 45%, transparent 45%);
    z-index: 1;
  }

@media (max-width: 768px) {
    .losangeles-section {
      padding: 20px; 
    }
  
    .stph1 {
      font-size: 30px;
      text-align: center;
    }

    .overlay{
        display: none;
    }
  }


  /*information*/

  .datacenter-info {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-family: 'Inter',sans-serif;
  }
  
  .left-column {
    flex: 2; 
    padding-right: 20px;
    margin-top: 60px;
  }

  .left-column h1{
    font-size: 48px;
    font-family: 'Inter',sans-serif;
  }

  .left-column h1 span{
    color: #007bff;
  }

  .left-column h2{
    color: #007bff;
    font-size: 38px ;
  }

  .left-column p{
    line-height: 1.6;
    font-size: 17px;
  }
  
  .right-column {
    flex: 1;
    margin-top: 60px;
  }
  
  .image-gallery {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .image-gallery img {
    width: 30%;
  }
  
  .feature-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .feature-block h3{
    font-size: 22px;
  }

  .feature-block h4{
    font-size: 20px;
  }

  .feature-block p{
    font-size: 16px;
    line-height: 1.5;
  }

  .sales-inquiries, .location {
    background: radial-gradient(circle, #458db5, #0a4b73);
    padding: 20px;
    margin-bottom: 20px;
  }

  .looking-glass-btn1{
    background-color: #333a4e;
    color: #fff;
    border: 2px solid #333a4e;
    border-radius: 3px;
    padding: 15px 24px 14px;
    min-width: 150px;
    line-height: 1;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }

  .looking-glass-btn1 a{
    text-decoration: none;
    color: #fff;
  }

  .looking-glass-btn1:hover{
    color: #333a4e;
    background-color: #fff;
  }

  .looking-glass-btn1:hover a{
    color: #333a4e;
  }

  .datasheet-btn{
    background-color: #116E88;
    color: #fff;
    border: 2px solid #116E88;
    border-radius: 3px;
    padding: 15px 24px 14px;
    min-width: 150px;
    line-height: 1;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }

  .datasheet-btn a{
    text-decoration: none;
    color: #fff;
  }

  .datasheet-btn:hover{
    color: #116E88;
    background-color: #fff;
  }

  .datasheet-btn:hover a{
    color: #116E88;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px; 
    margin-bottom: 10px;
  }
  
  .feature-icon img {
    width: 100%;
    height: auto;
  }

  .location-h2,
  .sales-inquiries h2{
    font-size: 26px;
    color: #fff;
  }

  .sales-p{
    font-size: 22px;
    color: #fff;
  }

  .location-h3{
    font-size: 22px;
    color: #fff;
  }

  .location-p{
    font-size: 16px;
    color: #fff;
  }

  .location-p span{
    color: black ;
  }

  .bar-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .bar {
    width: 100%;
    height: 2px;
    background-color: #AEC6CF;
  }

  @media (max-width: 768px) {
    .datacenter-info {
      flex-direction: column;
    }
  
    .left-column {
      padding-right: 0; 
      order: 1; 
    }
  
    .right-column {
      margin-top: 20px;
      order: 2;
    }
  
    .feature-blocks {
      grid-template-columns: 1fr;
    }
  
    .sales-inquiries,
    .location {
      order: 3; 
    }
  }


  /*feature cards*/
  
  .st-features {
    padding: 50px 20px;
  }
  
  .st-features h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-align: center;
    font-weight: bold;
  }
  
  .st-features h2 span {
    color: #007bff;
  }
  
  .st-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    margin: 0 auto;
    width: 70%;
  }
  
  .feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left;
    display: flex;
    flex-direction: column;
    border: 3px solid #007bff;
  }
  
  .image-heading-container {
    display: flex; 
    align-items: center; 
    margin-bottom: 10px;
    gap: 10px;
  }
  
  .feature-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .feature-box h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
    color: #007bff;
  }
  
  .feature-box p {
    font-size: 15px;
    color: #555;
    margin: 0;
    text-align: left;
    flex-grow: 1; 
  }
  
  @media (max-width: 992px) {
    .st-features-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .st-features-container {
      grid-template-columns: 1fr; 
    }
  
    .feature-box {
      width: 90%;
      align-items: flex-start; 
    }
  
    .image-heading-container {
      flex-direction: column; 
      align-items: flex-start; 
    }
  
    .feature-box img {
      margin-bottom: 10px; 
    }
  }
  