body{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  }
.heading_1{
  color: white;
}
.menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background-color: transparent;
  color: #ecf0f1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.menu-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.inneremail{
  color: white;
}   
.menu-bar img {
  height: 80px;
  border-radius: 5px;
}

.menu-items {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  position: relative;
}

.menu-items li {
  display: flex;
  align-items: center;
}

.menu-items li a {
  text-decoration: none;
  font-size: 16px;
  padding: 5px 10px;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
  color: #102A71;
}

.menu-items li a:hover {
  background-color: #ecf0f1;
  color: #102A71;
}

.menu-items li a img {
  height: 40px;
  border-radius: 0;
}

.menu-button {
  background-color: #102A71;
  border: none;
  color: #ecf0f1;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: none;
}

.menu-button:hover {
  background-color: #102A71;
}

.openFormButton {
  background-color: #e74c3c;
  border: none;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.openFormButton:hover {
  background-color: #c0392b;
}

@media (max-width: 768px) {
  .menu-items {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%; /* Position the menu list slightly below the menu button */
      left: 0;
      background-color: white;
      padding: 15px;
      border-radius: 5px;
      border: 1px solid #fafafa;
      color: #102A71;
      z-index: 1000;
      width: 200px;
      max-height: 300px;
      overflow-y: auto;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      transform: translateX(-100%); /* Initially hide the menu off-screen to the left */
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .menu-items.show {
      transform: translateX(0); /* Slide the menu into view */
      opacity: 1;
  }

  .menu-button {
      display: inline-block;
  }

  .close-button {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #102A71;
      transition: color 0.3s;

  }

  .close-button:hover {
      color: #e74c3c;
  }
}

/* Default styles (visible on small screens) */
.close-button {
position: absolute;
top: 10px;
right: 10px;
background-color: transparent;
border: none;
font-size: 24px;
cursor: pointer;
color: #102A71;
transition: color 0.3s;
}

.close-button:hover {
color: #e74c3c;
}

/* Styles for large screens */
@media (min-width: 769px) {
.close-button {
display: none;
}
}
.closeFormButton {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  color: #333;
  font-size: 30px;
  cursor: pointer;
}

.closeFormButton:hover {
  color: #666;
}

#formContainer {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 15px;
  flex: 1;
  display: flex;
  flex-direction: column; /* Stack inputs vertically */
}

.overlay {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

input, textarea {
  border: 1px solid #ccc;
  width: 100%;
  height: 50px;
  background-color: #f5f5f5;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px; /* Rounded corners for inputs */
  margin-top: 5px; /* Add space above inputs */
}

textarea {
  height: 150px; /* Default height for textarea */
}

.blue {
  color: #102A71;
}

.submit_getquote {
  height: 50px;
  border: none;
  background-color: #fc6b17;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
  color: white;
  border-radius: 5px; /* Rounded corners */
}

.submit_getquote:hover {
  background-color: #e55b0e; /* Darker shade on hover */
}

.flexROW {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between input groups */
}

.headingpopup {
  text-align: center;
  margin-bottom: 20px; /* Space below heading */
}

@media (max-width: 768px) {
  #formContainer {
      padding: 20px;
  }

  input, textarea {
      height: auto; /* Allow height to adjust */
  }

  .submit_getquote {
      width: 100%; /* Full width on smaller screens */
  }

  .flexROW {
      flex-direction: column; /* Stack inputs vertically */
  }

  .form-group {
      margin-bottom: 20px; /* Space between stacked inputs */
  }
  #message, #number, #name , #email{
    width: 330px !important;
  }
}

  
  .blue-div {
    margin-top: 2em;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: white;
    background-image: url('img/Audienceresearchban.jpg');
    background-size: cover; 
    background-position: center;
    padding: 240px 60px; /* Default padding */
    align-items: center;  
  }
  
  /* Media query for tablets and smaller screens */
  @media (max-width: 768px) {
    .blue-div {
      padding: 160px 30px; /* Adjust padding for smaller screens */
      background-image: url('img/audiencebanner.jpeg');
    }
  }
  
  /* Media query for mobile devices */
  @media (max-width: 480px) {
    .blue-div {
      padding: 100px 20px; /* Further adjust for mobile */
      background-image: url('img/audiencebanner.jpeg');
      background-size: cover; /* Make the background image cover the entire div */
      background-position: center; /* Center the image */
      background-repeat: no-repeat; /* Prevent the image from repeating */
    }
  }


  
  

    .pinkcolor{
      color: #010734;
      font-size:20px ;
    }
  
      .sec_text_about{
        font-size: 30px;
        color: #ffffff;
        margin-bottom: -2em;
      }
      @media only screen and (max-width: 768px) {
        .blue-div {
          padding: 120px 30px; /* Adjust padding for smaller screens */
        }
      
        .sec_text_about {
          font-size: 24px; /* Smaller font size for smaller screens */
          margin-bottom: 1em; /* Adjust margin for better spacing */
        }
      
        .pinkcolor {
          font-size: 16px; /* Smaller font size for smaller screens */
        }
      }
      .explreh1 {
        text-align: center;
      }
      
      .audiancewhite {
        font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        background-color: white;
        border-radius: 6px;
        display: flex;
        gap: 2em;
        width: 90%; /* Adjust width as a percentage */
        max-width: 700px;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        padding-left: 2%; /* Adjust padding as a percentage */
        position: relative;
        left: 50%; /* Move the element to the center horizontally */
        transform: translateX(-50%); /* Adjust the position to perfectly center */
      }
      
      
      
      .audiance {
        border-bottom: 3px solid #102A71;
        display: inline-block;
        padding-bottom: 0.5em; /* Use em for relative spacing */
      }
      
      .other {
        color: #010734;
      }
      
      /* Media Query for small screens */
      @media (max-width: 600px) {
        .audiancewhite {
          flex-direction: column; /* Stack items vertically */
          gap: 1em; /* Reduce gap between items */
          width: 100%; /* Full width on small screens */
          padding-left: 20px; /* Adjust padding for smaller screens */
          padding-right: 20px;
        }
      
        .audiance {
          border-bottom-width: 2px; /* Adjust underline thickness */
        }
      
        .explreh1 {
          font-size: 1.5em; /* Adjust font size */
          padding: 0 5%; /* Add padding for readability */
        }
      
        .other {
          font-size: 1em; /* Adjust font size */
          text-align: center; /* Center align text */
        }
      }
      

.expertise_div {
    display: grid;
    grid-template-columns:
    0.5fr 0.5fr 0.5fr;
    grid-template-rows:
    0.5fr 0.5fr;
  
    gap: 10px; /* Adjust gap as needed */
    margin-top: 3em;
    margin-left: 6em;
    margin-right: 6em;
  }
  .item {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow for elevation */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    /* background-color:  #fbfbfb; */
    padding: 20px;
    text-align: left;
  }
  .whoarewe {
position: relative;
top: 3em;
    margin-left: 6em ;
    }

.text{
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
    float: right;
    margin-right: 6em;
    position: relative;
    top: 50px;
    margin-top: -9.8em;
}

.text1{
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
    float: right;
    position: relative;
    top: 50px;
    margin-right: 6em;
    margin-top: -6em;
}

.outer-container {
  display: flex;
  justify-content: flex-end;
  margin-right: 16em;
}

.innerdiv {
  display: flex;
  gap: 3em;
position: relative;
top: 50px;
left: 2em;
  text-align: center;
  width: fit-content;
}

.pink {
  height: 6px; /* Adjust thickness as needed */
  width: 35px;
  background-color: #fc6b17;
  margin-top: 0.5em;
  border: none;
  position: relative;
  left: -3em;
  
}
/* slider */

.swiper-pagination-bullet {
  background: white; /* Set bullet color to white for visibility */
  width: 12px; /* Increase bullet width */
  height: 12px; /* Increase bullet height */
  opacity: 1; /* Make bullets fully opaque */
}

.swiper-pagination-bullet-active {
  background: #fc6b17; /* Different color for active bullet */
  width: 50PX;
  height: 12PX;
  border-radius: 15PX;
}

/* Position and style the pagination container */
.swiper-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

.mySwiper {
color: #010734;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;

}

.swiper-slide {
  width: 400px;
  height: 350px;
  border-radius: 10px;
  background-color: #fbfbfb;
  display: flex;
  flex-direction: column; /* Keep image on top */
  align-items: center;
  justify-content: flex-start; /* Align items at the start */
}

.swiper-slide img {
  height: 50px;
  width: 50px;
}

.swiper-slide p {
  font-size: 18px;
  margin-top: 10px; /* Space between image and text */
}

@media (max-width: 1200px) {
  .swiper-slide p {
    font-size: 16px;
  }
  .swiper-slide img {
    height: 40px;
    width: 40px;
  }
}

@media (max-width: 768px) {
  .swiper-slide p {
    font-size: 14px;
  }
  
  .swiper-slide img {
    height: 35px;
    width: 35px;
  }
}

@media (max-width: 480px) {
  .swiper-slide p {
    font-size: 12px;
  }
  
  .swiper-slide img {
    height: 30px;
    width: 30px;
  }
}




.whatwedeliver{
  margin-top: 4em;
  color: #010734;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
  text-align: center;
}
.whatwedeliver p{
  font-size: 19px;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 2em;
}

.whatwedeliver{
  font-size: 17px;
}

.pinkhr{
  height: 6px; /* Adjust thickness as needed */
  width: 70px;
  background-color: #fc6b17;
  border: none;
  margin-top: -17px;
  }

.strip{
  background-color: #010734;
}

/* Media Queries for Responsiveness */

.item2 {
  border: 1px solid #f7d1df;
  padding: 20px;
  text-align: left;
}

.strip h3{
  color: aliceblue;
}



  .get_connectt{
    background-color: white;
    margin-left: 6em;
    margin-top: 2em;
    height: 50px;
    width: 130px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    }

    .explore {
      color: #010734;
      margin-top: 5em;
      margin-left: 6em;
    }
    
    /* For tablets */
    @media (max-width: 768px) {
      .explore, .keydocument {
        margin-top: 5em;  /* Reduce the margin-top */
        margin-left: 3em; /* Reduce the margin-left */
      }
      
    }
    /* For mobile devices */
    @media (max-width: 480px) {
      .explore,.keydocument {
        margin-top: 3em;  /* Further reduce the margin-top */
        margin-left: 1.5em; /* Further reduce the margin-left */
      }
    }
    
    .Subscribe {
      background-image: url('img/Subscribe_Banner.png');
      background-size: cover; /* Adjust the background image size to cover the entire element */
      background-position: center; /* Center the background image */
      /* background-image: url('Subscribe_Banner.png');
      background-repeat: no-repeat; */
          border-radius: 20px;
          padding: 20px;
          margin: 50px;
          max-width: calc(100% - 100px); /* To account for both margins */
          margin-left: auto;
          margin-right: auto;
          }
          .Subscribe1, .Subscribe12 
          {
          color: #fff;
          text-align: center;
          }
          input[type="emails"] {
          width: calc(30% - 30px); /* Adjusted for padding */
          padding: 10px;
          margin-top: 10px;
          border-radius: 5px;
          height: 25px;
          border: none;
          outline: none;
          }
          input[type="submit"] {
          width: calc(10% - 20px); /* Adjusted for padding */
          height: 40px;
          padding: 10px;
          margin-top: 10px;
          border-radius: 5px;
          border: none;
          outline: none;
          background-color: #fc6b17;
          color: #ffffff;
          cursor: pointer;
          }
          .Subscribe1{
          text-align: left;
          color: #fc6b17;
          }
          .Subscribe12{
          text-align: left;
          }

          
/* Responsive adjustments for tablets and smaller screens */
@media (max-width: 1024px) {
  .Subscribe {
    padding: 15px;
    margin: 30px;
    max-width: calc(100% - 60px); /* Reduce margins */
  }

  input[type="emails"] {
    width: calc(40% - 20px); /* Increase width */
    height: 30px;
    font-size: 14px;
  }

  input[type="submit"] {
    width: calc(20% - 20px); /* Increase width */
    font-size: 14px;
    padding: 10px;
  }
}

/* Responsive adjustments for mobile screens */
@media (max-width: 768px) {
  .Subscribe {
    padding: 10px;
    margin: 20px;
    max-width: calc(100% - 40px); /* Further reduce margins */
  }

  .Subscribe1, .Subscribe12 {
    text-align: center; /* Center-align text */
  }

  input[type="emails"] {
    width: calc(80% - 20px); /* Full width with some padding */
    height: 35px;
    font-size: 16px;
    margin-top: 10px;
  }

  input[type="submit"] {
    width: calc(50% - 20px); /* Wider submit button */
    font-size: 16px;
    padding: 12px;
    margin-left: 0; /* Remove margin-left for better centering */
    margin-top: 10px;
  }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
  .Subscribe {
    padding: 10px;
    margin: 10px;
    max-width: calc(100% - 20px); /* Minimal margins */
  }

  input[type="email"], input[type="submit"] {
    width: calc(100% - 20px); /* Full width for both inputs */
    font-size: 14px;
    padding: 10px;
  }

  input[type="submit"] {
    margin-left: 0;
  }
}




    .items img{
      height: 50px;
      width: 50px;
    }

    .enablers_div{
      position: relative;
      top: 8em;
      margin-top: 2em;
      display: flex;

    }
    .items{

      text-align: center;
      height: 400px;
      width: 400px;
    }
    .learn-more {
      color: #464646;
      cursor: pointer;
      position: relative;
      top: -2em;
     font-size: 40px;
      text-align: left;
      
    }
      .container {
        position: relative;
        top: 10em;
        display: grid;
        /* border: 2px solid #000; */
        
        width: 90%;
        margin-top: 3em;
        margin-left: 6em;
        margin-right: 6em;
        }
        .slider_heading {
          cursor: pointer;
          color: #fc6b17;
          font-weight: bold;
          font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
          text-align: left;
          padding-left: 2em;
     
        }
        .learn-more.expanded::after {
          content: '-';
        }
.hrr{
  border: none;
  border-top: 2px solid #cecaca;
  margin: -45px 0;
}

.itemss {
  padding: 10px 0;
}

.slider_heading {
  margin: 0 0 10px 0;
}

.description {
  margin: 0 0 10px 0;
}

.containerr {
  margin: 0 0 10px 0;
  
}

        .description {
          display: none;
          padding: 10px;
          width: calc(100% - 40px); /* Adjust the padding as needed */
          font-size:18px ;
          font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
          text-align: left;
          margin-top: 10px;
          margin-left: 3em;
        }
      .itemss {
        padding: 20px;
        text-align:center;

      }

    @keyframes slide-down {
      from {
        max-height: 0;
      }
      to {
        max-height: 200px; /* Adjust this value according to your description's height */
      }
    }
    @keyframes slide-up {
      from {
        max-height: 200px; /* Adjust this value according to your description's height */
      }
      to {
        max-height: 0;
      }
    }


    .vertical-line {
      border-left: 2px solid rgb(211, 207, 207); /* Adjust thickness and color as needed */
      height: 350px;
    }

    .vertical-line {
      border-left: 2px solid rgb(211, 207, 207); /* Adjust thickness and color as needed */
      height: 300px;
    }

    
    .content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      width: 90%;
      max-width: 1255px;
      margin: 0 auto;
      margin-top: 5em;

  }
  
  .content-box {
      position: relative;
      background: #f8f8f8;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(160, 159, 159, 0.1);
      padding: 20px;
      text-align: center;
      border: 1px solid #eeecec;
      
  }
  .content-box h4 {
      font-size: 1.2rem;
      color: #010734;;
      margin-bottom: 10px;
  }
  
  .content-box h2 {
      font-size: 1.5rem;
      color: #010734;
  }
  
  .content-box .image {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 50px;
      height: 50px;
      background-size: cover;
      background-position: center;
  }
  
  


h1 {
    font-size: 36px;
 
}

.outlined-text{
    color: #6d6c6c;
}
*, *::before, *::after {
  box-sizing: border-box;
}

.whatwe {
  padding: 20px;
  color: #010734;
  max-width: 800px;
  width: 100%;
  margin: 20px auto;
  background: white;
}

.inner_whatwe {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.text-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px;
  border: 1px solid #fafafa;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  margin: 10px 5px; /* Adjusted margin */
}

.text-content img {
  height: auto; 
  width: 50px;
  max-width: 100%; 
  margin-right: 15px;
}

.h11 {
  font-size: 1.5em; 
  margin: 0 0 5px;
  color: #102A71;
  flex-grow: 1; /* Changed to flex-grow */
}

.DES {
  font-size: 1em;
  margin: 0;
  color: #010734;
  /*flex-grow: 2; */
}

@media (max-width: 600px) {
  .h11 {
      font-size: 1.2em;
  }

  .DES {
      font-size: 0.9em;
  }

  .text-content img {
      width: 40px;
  }
}

@media (max-width: 400px) {
  .text-content {
      flex-direction: column;
      align-items: flex-start;
  }

  .text-content img {
      margin: 0 0 10px 0;
  }

  .h11 {
      font-size: 1.1em;
  }

  .DES {
      font-size: 0.8em;
  }
}

.footer {
  font-size: 20px;
  margin-top: 5em;
  width: 100%;
  background-color: #010734;
  border-radius: 6px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
}

.footer-col {
  flex: 1;
}

.footer-col h1 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

.footer-col .links {
  margin-top: 20px;
}

.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-col .links li a {
  text-decoration: none;
  color: #bfbfbf;
}

.footer-col .links li a:hover {
  color: #fff;
}

.footer-col p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}

.footer-col form {
  display: flex;
  gap: 5px;
}

.footer-col input::placeholder {
  color: #302f2f;
}

.divider {
  border: 1px solid rgb(43, 42, 42);
}

.footer-col form button {
  background: #fff;
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease;
}

.footer-col form button:hover {
  background: #cecccc;
}

.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col .icons i {
  color: #afb6c7;
}

.footer-col .icons i:hover {
  color: #fff;
}

.pink {
  height: 6px;
  width: 35px;
  background-color: #fc6b17;
  margin-top: 0.5em;
  border: none;
  position: relative;
  left: -3em;
}

.pinkk {
  height: 6px;
  width: 35px;
  background-color: #fc6b17;
  margin-top: 0.5em;
  border: none;
  position: relative;
  left: -8em;
}



.linkedinimg {
  height: 72px;
  width: 72px;
  position: relative;
  right: 0.5em;
}

.logoimg {
  border-radius: 10px;
  height: 70px;
  width: 70px;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .footer {
      align-items: center;
      position: relative;
      width: 100%;
      border-radius: 0;
      margin-top: 3em;
  }

  .footer-row {
      padding: 20px;
      gap: 1rem;
  }

  .footer-col {
      flex: 1 1 100%;
      margin-bottom: 20px;
  }

  .footer-col form {
      display: block;
  }

  .footer-col form :where(input, button) {
      width: 100%;
  }

  .footer-col form button {
      margin: 10px 0 0 0;
  }

  .pink, .pinkk {
      height: 4px; /* Adjust thickness for smaller screens */
      width: 25px; /* Adjust width for smaller screens */
      position: static; /* Reset positioning */
      left: 0; /* Reset horizontal offset */
  }

  .linkedinimg, .logoimg {
      height: 50px;
      width: 50px;
  }

  .footer-col .location img {
      height: 25px; /* Adjust size for smaller screens */
      width: 35px;  /* Adjust size for smaller screens */
  }
}
.color_org{
  color: #fc6b17;
}
  

  .containerrr {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 18px auto;
    width: 85%;
    margin-top: 5em;
}

.keydocument {
    
    width: 45%;
    color: #010734;
    
}

.WRAPPER {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-item {
    text-align: center;
    padding: 10px;
}

.grid-item img {
    height: 270px;
    width: 100%;
    max-width: 230px;
    border-radius: 7px;
}

.content {
    max-height: 0;
    overflow: hidden;
    transform: translateX(-5%);
    transition: transform 0.5s ease-in-out, max-height 0.5s ease-in-out;
    padding: 0 10px;
    margin: 5px;
    width: 100%;
    font-size: 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.content.show {
    transform: translateX(0);
    max-height: 1000px; /* Adjust this as necessary */
    padding-top: 10px;
    padding-bottom: 10px;
}

.grid-WRAPPER {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #010734;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.grid-WRAPPER h3 {
    font-size: 16px;
}

@media (max-width: 1200px) {
    .containerrr {
        flex-direction: column;
        align-items: center;
    }

    .WRAPPER,
    .keydocument {
        width: 90%;
    }

    .get_connect {
display: none;
}
    .grid-WRAPPER {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content {
        font-size: 18px;
    }

    .grid-WRAPPER {
        grid-template-columns: 1fr;
    }

    .heading {
        font-size: 14px;
        padding: 8px;
    }
    .get_connect {
display: none;
}
    .grid-WRAPPER h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content {
        font-size: 16px;
    }

    .heading {
        font-size: 12px;
        padding: 6px;
    }
    .get_connect {
display: none;
}
    .grid-WRAPPER h3 {
        font-size: 12px;
    }


    .headings{
      margin-top: 3.5em;
    }
}

.headings {
    display: flex;
    justify-content: center;
    text-align: left;
    gap: 1em;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.heading {
    cursor: pointer;
    padding: 10px;
    margin: 5px;
    width: fit-content;
    text-align: center;
}

.get_connect {
    background-color: white;
    margin-left: 6em;
    margin-top: 2em;
    height: 50px;
    width: 130px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.pinkline {
    margin-top: -17px;
    height: 6px; /* Adjust thickness as needed */
    width: 65px;
    float: left;
    background-color: #fc6b17;
    border: none;
}
  
  
  .categories {
    background-color: #010734;
    color: white;
  
    padding-bottom: 5em; /* Add some padding to give more space */
  }
  
  
  .heading.active {
  color:   #fc6b17;
  }
  
  .hrrr{
    width: auto;
  }


.openFormButton1{
  height: 300px;
  width: 250px;
  border-radius: 7px;
}  
  
  .horizontal-grid-container {
            
  display: grid;
  grid-template-rows: repeat(2, auto);
  display: flex;
  flex-wrap: nowrap; /* Ensures items stay in a row */
  overflow-x: auto; /* Enable horizontal scrolling */
  gap: 10px;
  
  }
  
  .horizontal-grid-element {
  display: flex;
  padding: 10px;
  text-align: left;
  }
  
  .horizontal-grid-element h4 {
  color: #000000;
  margin-top: 0; /* Reset margin */
  }
  
  .horizontal-grid-element a {
  text-decoration: none;
  }
  
  .horizontal-grid-element img {
  height: 100px;
  width: 200px;
  border-radius: 5px;
  }

.makeitpink {
  margin-top: -0.5px;
  color: #fc6b17;
  font-size: 12px;
}

.time-info {
  color: gray;
  font-size: 0.9em;
}
.kak{
margin-left: 2em;
}

.praa{
margin-top: -10px;
}

.timestamp{
font-size: 12px;
margin-top: -1em;
}

/* Wrapper container */
.WRAPPER_one {
  margin-top: -21em;
      DISPLAY: FLEX;
      FLEX-DIRECTION: COLUMN;
      ALIGN-ITEMS: CENTER;
      MARGIN-LEFT: AUTO;
      WIDTH: 70%;
  }
  

/* Headings container */
.headings_one {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  justify-content: center;
  text-align: left;
  gap: 1em;
  flex-wrap: wrap; /* Allows headings to wrap on smaller screens */
}

/* Individual heading */
.heading_two {
  cursor: pointer;
  padding: 10px;
  margin: 5px;
  width: fit-content;
  text-align: center;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Content container */
.content_one {
  max-height: 0;
  overflow: hidden;
  transform: translateX(-5%);
  transition: transform 1s ease-in-out, mIN-height 1s ease-in-out;
  padding: 0 10px;
  margin: 5px;
  width: 100%;
  font-size: 20px;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  box-sizing: border-box;
}

.content_one.show {
  transform: translateX(0);
  max-height: 1000px; /* Arbitrary large value to accommodate the content */
  padding-top: 10px;
  padding-bottom: 10px;
}


@media (max-width: 768px) {
  .WRAPPER_one {
      width: 95%; /* Adjust width for smaller screens */
      margin-top: 0.1em; /* Adjust margin if needed */
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  .WRAPPER_one {
      width: 100%; /* Full width on very small screens */
      margin-top: -5em; /* Adjust margin if needed */
  }
}


.categories {
    background-color: #010734;
    color: white;
    padding-bottom: 5em; /* Add some padding to give more space */
}

.heading_two.active {
    color: #fc6b17;
}

.hrrr {
    width: 800px;
}

.horizontal-grid-container {
    display: grid;
    grid-template-rows: repeat(2, auto);
    display: flex;
    flex-wrap: nowrap; /* Ensures items stay in a row */
    overflow-x: auto; /* Enable horizontal scrolling */
    gap: 10px;
}

.horizontal-grid-element {
    display: flex;
    padding: 10px;
    text-align: left;
    position: relative;
    left: 3em;
}

.horizontal-grid-element h4 {
    color: #000000;
    margin-top: 0; /* Reset margin */
}

.horizontal-grid-element a {
    text-decoration: none;
}

.horizontal-grid-element img {
    height: 100px;
    width: 200px;
    border-radius: 5px;
}

.makeitpink {
    margin-top: -0.5px;
    color: #fc6b17;
    font-size: 12px;
}

.time-info {
    color: gray;
    font-size: 0.9em;
}
.kak {
    margin-left: 2em;
}

.praa {
    margin-top: -10px;
}

.timestamp {
    font-size: 12px;
    margin-top: -1em;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #010734;
  text-decoration: none;
  cursor: pointer;
}
.copyright_white_div{
  text-align: center;

}

.copyright_white{
  color: white;
font-size: 12px ;
padding-bottom: 2em;
padding-top: 1em;
margin-bottom: -1.8em;
}

.policy{
  font-size: 1px;
  color: white;
}


.location {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.location img {
  margin-right: 20px;
  margin-top:-12px ;
  height: 40px;
  width: 50px;

}

.swiper-custom-slide {
  background: #fff;
  width: 100% !important; /* Full width for the container */
  height: auto; /* Auto height to fit content */
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  word-wrap: break-word;
}

/* Responsive styles for different screen sizes */

/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) {
  .swiper-custom-slide {
    flex-direction: column; /* Stack items vertically on small screens */
    padding: 15px; /* Adjust padding for smaller screens */
    font-size: 14px; /* Adjust font size for better readability */
  }

}

/* Small devices (tablets, 601px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
  .swiper-custom-slide {
    flex-direction: column; /* Stack items vertically on tablets */
    padding: 20px; /* Adjust padding for tablets */
    font-size: 16px; /* Adjust font size for tablets */
  }
}

/* Medium devices (small desktops, 769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .swiper-custom-slide {
    flex-direction: column; /* Stack items vertically on small desktops */
    padding: 25px; /* Adjust padding for small desktops */
    font-size: 18px; /* Adjust font size for better readability */
  }
}

/* Large devices (large desktops, 993px and up) */
@media (min-width: 993px) {
  .swiper-custom-slide {
    flex-direction: row; /* Arrange items in a row on large screens */
    padding: 30px; /* Adjust padding for larger screens */
    font-size: 20px; /* Adjust font size for larger screens */
  }
}
@media (max-width: 768px) {
  #formContainer {
    width: 95%; /* Adjust width for smaller screens */
    padding: 20px;
  }

  #message {
    height: 150px; /* Adjust height for smaller screens */
  }

  .submit_getquote {
    width: 100%; /* Full width on smaller screens */
    max-width: none; /* Remove maximum width */
  }
}
/* Responsive adjustments */
@media (min-width: 768px) {
  .form-group {
    flex-direction: row; /* Row direction on larger screens */
  }

  .form-field {
    flex: 1;
  }

  input[type="email"] {
    width: auto; /* Reset width on larger screens */
    height: auto; /* Reset height on larger screens */
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"] {
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ddd;
      border-radius: 4px;
      width: 100% !important; /* Full width */
      box-sizing: border-box; /* Include padding in width */
  }

}

.swiper-custom-pagination {
  text-align: center;
  position: absolute;
  bottom: 10px; /* Adjust to position pagination at the bottom */
  width: 100%; /* Ensure pagination spans full width */
}
.swiper-custom-button-next, .swiper-custom-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: #000; /* Ensure button color stands out */
}
.swiper-custom-button-next {
  right: 0;
}
.swiper-custom-button-prev {
  left: 0;
}


.section {
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.in-view {
  opacity: 1;
  transform: translateY(0);
}

a {
  text-decoration: none;
  color: #010734;
}

/* Container for the grid */
.grid-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto; /* Allows horizontal scrolling if needed */
  padding: 10px;
}

/* Style for the article image */
.article-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Title and text styles */
h3 {
  font-size: 1.2em;
  margin: 10px 0;
}

p {
  margin: 5px 0;
}




.fetch_head {
  text-align: left;
  margin: 0; /* Remove default margin */
  padding: 5px; /* Remove default padding */
  margin-top: -3.5em;
}

/* Optional: Make the font size responsive */
@media (max-width: 768px) {
  .fetch_head {
      font-size: 1em; /* Adjust the size for smaller screens */
      margin-top: -2.5em;
  }
}

@media (max-width: 480px) {
  .fetch_head {
      font-size: 1em; /* Adjust the size for very small screens */
      margin-top: -2em;
  }
}

.fetch_headd {
  text-align: left;
  margin: 0; /* Remove default margin */
  padding: 5px; /* Remove default padding */
}

/* Optional: Make the font size responsive */
@media (max-width: 768px) {
  .fetch_headd {
      font-size: 1.2em; /* Adjust the size for smaller screens */
  }
}

@media (max-width: 480px) {
  .fetch_headd {
      font-size: 1em; /* Adjust the size for very small screens */
  }
}

      .industry {
        display: inline-block; /* Allow the box to size according to text */
        padding: 0.2em 0.5em; /* Padding inside the box */
        border:none; /* Border color */
        border-radius: 4px; /* Rounded corners */
        background-color: #010734; /* Background color */
        color: white; /* Text color */
      }
      
      @media (max-width: 600px) {
        .industry {
            padding: 0.4em 0.8em; /* Adjust padding for smaller screens */
            position: relative;
            top: -4em;
        }
      }
      .industrydiv{
        text-align: right;
        margin-right: 0.5em;
        transform: translateY(-10em); /* Move the entire div up by 12em */
      }

      .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1000; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: hidden; /* Prevent scrolling */
        background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
        animation: fadeIn 0.3s; /* Fade-in animation */
    }
    
    /* Modal content */
    .modal-content {
        background-color: #fff;
        margin: 10% auto; /* Centered */
        padding: 20px;
        border-radius: 8px;
        width: 50%; /* Width of modal */
        max-width: 600px; /* Maximum width */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative; /* Ensure close button is correctly positioned */
    }
    
    /* Close button */
    .close {
        color: #333;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        position: absolute; /* Absolute positioning */
        top: 10px;
        right: 10px;
    }
    
    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
    }
    
/* Form styling */
form {
  display: flex;
  flex-direction: column;
  margin: 0; /* Remove default margin */
}

/* Grouping fields */
.form-group {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

/* Fields styling */
.form-field {
  flex: 1;
  min-width: 150px; /* Ensure minimum width */
}

/* Label styling */
label {
  margin-top: 10px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #formContainer {
      padding: 20px;
  }

  input, textarea {
      height: auto; /* Allow height to adjust */
  }

  .submit_getquote {
      width: 100%; /* Full width on smaller screens */
  }

  .flexROW {
      flex-direction: column; /* Stack inputs vertically */
  }

  .form-group {
      margin-bottom: 20px; /* Space between stacked inputs */
  }
  #message , #number, #email, #name{
    width: 400px;
  }
}

/* Input field styling */
input[type="text"],
input[type="tel"],
input[type="email"] {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px !important; /* Full width */
    box-sizing: border-box; /* Include padding in width */
}

/* Specific styling for email input field */
.email-input {
  border-color: #007bff;
}

/* Button styling */
button {
  margin-top: 15px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #fc6b17;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .form-group {
      flex-direction: column; /* Stack fields vertically */
  }

  .form-field {
      width: 100%; /* Full width on smaller screens */
  }
}

    
    /* Fade-in animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
  
.access{
  margin-top: -0.2em;
  margin-bottom: 0.5em;
}




.menu-items img{
  height: 40px;
  width: 150px;
  margin-left: -0em;
}



  
  
  @media (max-width: 768px) {
  .swiper-custom-slide {
  padding: 15px; /* Reduced padding */
  /* Ensures content stays within slide */

  flex-direction: column;
  }
  }
  
  /* Media query for mobile devices */
  @media (max-width: 480px) {
  .swiper-custom-slide {
  padding: 10px; /* Further reduced padding */
  font-size: 14px; /* Adjust font size for readability */

  flex-direction: column;
  }
  }
  

  
  @media (max-width: 768px) {
  .fetch_head {
  font-size: 1.2em; /* Adjust the size for smaller screens */
  }
  }
  
  @media (max-width: 480px) {
  .fetch_head {
  font-size: 1em; /* Adjust the size for very small screens */
  }
  }
  
  .fetch_headd {
  text-align: left;
  margin: 0; /* Remove default margin */
  padding: 5px; /* Remove default padding */
  }
  
  /* Optional: Make the font size responsive */
  @media (max-width: 768px) {
  .fetch_headd {
  font-size: 1.2em; /* Adjust the size for smaller screens */
  }
  }
  
  @media (max-width: 480px) {
  .fetch_headd {
  font-size: 1em; /* Adjust the size for very small screens */
  }
  }









  .swiper-custom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%; /* Ensure it takes the full height of its parent */
    margin: 0 auto;
    overflow: hidden;
}

/* Adjust Swiper slide behavior */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Article Box Styles */
.swiper-custom-article-box {
    width: 100%;
    max-width: 370px; /* Adjust for larger screens */
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.swiper-custom-article-box:hover {
    transform: scale(1.02);
}

.swiper-custom-article-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.swiper-custom-article-box h5 {
    margin: 1em 0;
    color: #010734;
}

.swiper-custom-article-box p {
    margin: 0.5em 0;
}

/* Media Queries for Responsive Behavior */
@media (max-width: 900px) {
    .swiper-custom-article-box {
        max-width: 300px; /* Adjust for medium screens */
    }
    .content_one {
      margin-left: -1em;
        }
}

@media (max-width: 600px) {
    .swiper-custom-article-box {
        max-width: 100%; /* Full width on small screens */
        margin: 5px;
    }
    .swiper-slide {
        flex-direction: column;
    }
    .swiper-custom-container {
        height: auto; /* Adjust the height for small screens */
    }
    .content_one {
      margin-left: -1em;
        }
}

/* Content and Heading Styles */
.content_one {
    display: none;
}

.content_one.show {
    display: block;
}

.heading_two {
    cursor: pointer;
}

.heading_two.active {
    font-weight: bold;
}

    .footerhr {
      border: 5px solid #fc6b17;
      width: 50px;
      border-radius: 10PX;
      margin-left: 0; /* Ensures it starts from the left */
    }