/* 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;
}
/* background */

.flyer{
    padding: 20px;
    font-size:2rem;
  }

  .flyer :hover{
    color: red;
  }
  .back-smart-water-manage {
    position: relative;
    width: 100%;
    height: auto;
    top: 70px;
    margin-bottom: 70px;
    aspect-ratio: 16 / 9;
    background-image: url(../images/banner/big-screen/hvismp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #042a4a;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.back-smart-water-manage::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.137);
}

.back-smart-water-manage h1 {
  position: absolute;
  bottom: 0;
  left: 2vw;
  top: 67%;
  transform:translateY(-50%);
  width: 100%;
  padding: 1.5vw 2vw;
  z-index: 2;
  color: white;
  font-size: 5vw;
  font-weight: bold;
  text-align: left;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Laptop screens */
@media (max-width: 1600px) {
    /* .back-smart-water-manage {
        background-image: url(../images/banner/big-screen/health-care-eqp.png);
    } */
}

/* Tablet screens */
@media (max-width: 1280px) {
    /* .back-smart-water-manage {
        background-image: url(../images/banner/big-screen/health-care-eqp.png);
    } */
}

/* Mobile screens */
@media (max-width: 720px) {
    /* .back-smart-water-manage {
        background-image: url(../images/banner/big-screen/health-care-eqp.png);
    } */
    .back-smart-water-manage h1 {
        font-size: 5.5vw;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .back-smart-water-manage {
        background-image: url(../images/banner/mobile2/hvismp.png);
    }
    .back-smart-water-manage h1 {
        font-size: 5.5vw;
    }
    .hvismp-content-section {
      padding: 20px 20px;
    }
   
}

/* General Container Styling */
.hvismp-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 70px;

}

/* Hero Section Styling */
.hvismp-hero-section {
    position: relative;
    background-image: url('https://source.unsplash.com/1600x900/?high-voltage');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hvismp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hvismp-hero-content {
    position: relative;
    z-index: 2;
}

.hvismp-hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hvismp-hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease;
}

/* Keyframes for Hero Section Animation */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Content Section Styling */
.hvismp-content-section {
    background: #ffffff;
    padding: 60px 20px;
    /* margin-top: -50px; */
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.hvismp-content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hvismp-content-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
}

.hvismp-content-section p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hvismp-hero-content h1 {
        font-size: 3rem;
    }

    .hvismp-hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hvismp-hero-content h1 {
        font-size: 2.5rem;
    }

    .hvismp-hero-content p {
        font-size: 1rem;
    }
}


/* hvismp-key-container */

.hvismp-point-container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
  }
  
  .hvismp-point-title h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
  
  .hvismp-point-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
  }
  
  .hvismp-point-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: start;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  
  .hvismp-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .hvismp-point-card i {
    font-size: 2rem;
    color: #0072ff;
    margin-right: 1rem;
    align-self: flex-start;
  }
  
  .hvismp-point-card p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    text-align: justify;
  }


  
  @media (max-width: 768px) {
    .hvismp-point-card i {
      font-size: 1.5rem;
    }
  
    .hvismp-point-card p {
      font-size: 1rem;
    }
  }
  
  .hvismp-point-card-animation {
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
 

