
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styling for the Section */
#br-hero {
  position: relative;
  text-align: center;
  color: white;
  /* height: 300px; Reduced height */
}

.banner1 {
  position: relative;
  height: 100%;
}

.slider1 img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  overflow: hidden;
}

.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  display: flex;
  justify-content: center;
  align-items: center;
}

.content1 {
  z-index: 10;
  text-align: center;
  animation: fadeIn 2s ease-in-out, slideInFromBottom 1s ease-in-out;
}

.content1 h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.content1 p {
  font-size: 1em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .content1 h1 {
    font-size: 1.8em;
  }

  .content1 p {
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .content1 h1 {
    font-size: 1.6em;
  }

  .content1 p {
    font-size: 0.8em;
  }
}

@media (max-width: 576px) {
  .content1 h1 {
    font-size: 1.4em;
  }

  .content1 p {
    font-size: 0.7em;
  }
}
/* Mobile Responsiveness */



/* sec2 */
/* General Styling for the Section */
.Future-Proof1 {
    width: 100%; /* Full width of the viewport */
    background-color: #f7f9fc; /* Light background color */
    padding: 50px 20px; /* Spacing around the content */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Second Section Container */
.second-section1 {
    display: flex;
    flex-wrap: wrap; /* Ensures content stacks on smaller screens */
    max-width: 1200px; /* Limits the width on larger screens */
    gap: 30px; /* Space between items */
    align-items: center;
    justify-content: center;
}

/* Image Styling */
.second-section1 img {
    width: 50%; /* Image takes half the width on larger screens */
    height: auto;
    object-fit: cover; /* Ensures the image doesn't distort */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Subtle shadow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition effects */
}

.second-section1 img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Text Content Styling */
.matter1 {
    flex: 1; /* Ensures text occupies available space */
    text-align: left; /* Align text to the left */
    padding: 20px;
}

.matter1 h1 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for better readability */
}

.matter1 p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Mobile Responsiveness */

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .second-section1 {
        flex-direction: column; /* Stack content vertically */
    }

    .second-section1 img {
        width: 100%; /* Image takes full width */
    }

    .matter1 h1 {
        font-size: 2rem;
        text-align: center; /* Center text for small screens */
    }

    .matter1 p {
        font-size: 1rem;
        text-align: center;
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) {
    .second-section1 img {
        width: 80%; /* Adjust image size for better balance */
    }

    .matter1 h1 {
        font-size: 2.2rem;
    }

    .matter1 p {
        font-size: 1.1rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .second-section1 {
        flex-direction: row;
        gap: 20px;
    }

    .matter1 h1 {
        font-size: 2.3rem;
    }

    .matter1 p {
        font-size: 1.2rem;
    }
}

/* Large Devices (992px and above) */
@media (min-width: 992px) {
    .second-section1 {
        gap: 40px;
    }

    .matter1 h1 {
        font-size: 2.8rem;
    }

    .matter1 p {
        font-size: 1.4rem;
    }
}
/* sec3 */

/* General Styling */
.ptr1 {
    background-color: #f7f9fc; /* Soft background for better contrast */
    padding: 10px 20px;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container1 {
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: center;
}

/* Item Container */
.item-container1 {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    justify-content: space-between;
    gap: 30px;
}

/* Item Box */
.item-box1 {
    background-color: #fff; /* White background for card-style effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-width: 280px; /* Ensures the boxes are responsive */
    max-width: 360px; /* Keeps the size consistent on larger screens */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-box1:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Item Box Content */
.item-box-ctn1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Image Styling */
.image-wrapper1 img {
    width: 80px; /* Fixed size for icons */
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.item-box1:hover .image-wrapper1 img {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Text Content */
.item-box-head1 h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.item-box-p1 {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    padding: 10px;
}

/* Mobile Responsiveness */

/* Extra Small Devices (up to 575px) */
@media (max-width: 575px) {
    .item-container1 {
        flex-direction: column; /* Stack items vertically */
        gap: 20px;
    }

    .item-box1 {
        width: 100%; /* Full width for smaller devices */
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767px) {
    .item-container1 {
        gap: 25px;
    }

    .item-box-head1 h3 {
        font-size: 1.4rem;
    }

    .item-box-p1 {
        font-size: 0.95rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991px) {
    .item-container1 {
        gap: 30px;
    }

    .item-box-head1 h3 {
        font-size: 1.45rem;
    }

    .item-box-p1 {
        font-size: 1rem;
    }
}

/* Large Devices (992px and above) */
@media (min-width: 992px) {
    .item-container1 {
        gap: 40px;
    }

    .item-box-head1 h3 {
        font-size: 1.6rem;
    }

    .item-box-p1 {
        font-size: 1.1rem;
    }
}
/* sec4 */
  
  /* Icon Section Styling */
  .icon-section1a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    padding: 10px 20px;
    background: linear-gradient(to right, #eef2f3, #ffffff);
  }
  
  /* Individual Card Styling */
  .card-inner1a {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  
  .card-inner1a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card-img-top1a {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
  }
  
  .card-body1a {
    padding: 20px;
    text-align: center;
  }
  
  .card-body1a b {
    font-size: 18px;
    color: #007bff;
    display: block;
    margin-bottom: 12px;
  }
  
  .card-body1a p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }
  
  .btn1a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn1a:hover {
    background-color: #0056b3;
    transform: scale(1.1);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .card-img-top1a {
      height: 150px;
    }
  
    .btn1a {
      font-size: 12px;
      padding: 8px 16px;
    }
  }
  
  @media (max-width: 480px) {
    .card-body1a p {
      font-size: 13px;
    }
  
    .btn1a {
      font-size: 12px;
      padding: 6px 12px;
    }
  }
  /* sec5 */
  
  /* Icon Section Styling */
  .icon-section2a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #e6f0fa, #ffffff);
  }
  
  /* Card Styling */
  .card-innera {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 350px;
    position: relative;
    left: 100px;
  }
  
  .card-innera:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card-img-topa {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .card-bodya {
    padding: 20px;
  }
  
  .card-bodya b {
    font-size: 18px;
    color: #007bff;
    margin-bottom: 12px;
    display: block;
  }
  
  .card-texta {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }
  
  .btna {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #007bff;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btna:hover {
    background-color: #0056b3;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .card-innera {
      max-width: 90%;
      margin: 0 auto;
    }
  
    .card-img-topa {
      height: 160px;
    }
  
    .btna {
      font-size: 12px;
      padding: 8px 16px;
    }
  }
  
  @media (max-width: 480px) {
    .card-texta {
      font-size: 13px;
    }
  
    .btna {
      font-size: 12px;
      padding: 6px 12px;
    }
  }
  /* sec6 */
  
  /* Section Container Styling */
  .section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    background: linear-gradient(to right, #eef2f7, #ffffff);
  }
  
  /* Image Section */
  .image-container {
    flex: 1 1 500px;
    max-width: 600px;
    text-align: center;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Content Section */
  .content-container {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .content-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .content-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  
  .content-box h3 {
    font-size: 18px;
    color: #007bff;
    margin: 0;
  }
  
  .content-box p {
    font-size: 14px;
    color: #555;
    margin: 5px 0 0;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .section-container {
      flex-direction: column;
      text-align: center;
    }
  
    .image-container,
    .content-container {
      max-width: 100%;
    }
  
    .content-box {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .content-box img {
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .content-box h3 {
      font-size: 16px;
    }
  
    .content-box p {
      font-size: 13px;
    }
  
    .content-box img {
      width: 50px;
      height: 50px;
    }
  }
  /* contact */

  
  /* Contact Section Styling */
  .contact-sectiona {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #007bff, #084c7f);
    color: #ffffff;
    border-radius: 12px;
    margin: 20px;
  }
  
  #div-div1a {
    max-width: 800px;
  }
  
  #h1-h1a {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  #h3-h3a {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #e0f7ff;
  }
  
  #p1-p1a {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #f1faff;
  }
  
  #btn-1na {
    background-color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    color: #007bff;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  #btn-1na:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
  }
  
  #btn-1na a {
    text-decoration: none;
    color: #007bff;
  }
  
  #btn-1na a:hover {
    color: #0056b3;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #h1-h1a {
      font-size: 2rem;
    }
  
    #h3-h3a {
      font-size: 1.25rem;
    }
  
    #p1-p1a {
      font-size: 0.9rem;
    }
  
    #btn-1na {
      padding: 10px 16px;
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    #h1-h1a {
      font-size: 1.8rem;
    }
  
    #h3-h3a {
      font-size: 1.1rem;
    }
  
    #p1-p1a {
      font-size: 0.85rem;
    }
  
    #btn-1na {
      padding: 8px 14px;
      font-size: 0.85rem;
    }
  }
  