body{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
}

.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 ; 
      background-image: url('img/SIbanner.jpeg');
      background-size: cover; 
      background-position: center;
      color: white; 
      padding: 220px 20px; /* Adjust padding as needed */
      align-items: center;
      
    }

    .des_ex{
      font-size: 20px;
    }
  .pinkcolor{
    color: #fc6b17;
    font-size:20px ;
    border-bottom: 3px solid #102A71; /* Adjust thickness and color as needed */
    display: inline-block; /* Ensures the underline respects the width of the text */
    padding-bottom: 3px; /* Provides space between text and underline */
  }

    .sec_text_about{
      font-size: 30px;
      color: #ffffff;
      margin-top: 3em;
    }

.blue-div h1{
color: white;
position: relative;
bottom: -2em;
}

.explreh1{
text-align: center;
color: #010734;
font-size: 24px;
}

  
.Content{

  border-bottom: 3px solid #102A71; /* Adjust thickness and color as needed */
  display: inline-block; /* Ensures the underline respects the width of the text */
  padding-bottom: 3px; /* Provides space between text and underline */
  /* color: white;
  background-color: #102A71;
  border-radius: 4px;
  border-radius: 5px;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em; */

   
} 
.other{
  color: #010734;
  
}



@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;
  gap: 10px;
  margin-top: 3em;
  margin-left: 6em;
  margin-right: 6em;
}

.item {
  color: #102A71;
  padding: 20px;
  text-align: left;
}

/* Media query for tablet devices */
@media (max-width: 768px) {
  .expertise_div {
    grid-template-columns: 1fr; /* Stacks items vertically */
    margin-left: 3em;
    margin-right: 3em;
  }

  .item {
    padding: 15px; /* Adjust padding for smaller screens */
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .expertise_div {
    margin-left: 1em;
    margin-right: 1em;
    gap: 5px; /* Reduce gap for smaller screens */
  }

  .item {
    padding: 10px;
    text-align: center; /* Optional: center-align text for mobile */
  }
}

.whoarewe {
margin-top: 7em;
  margin-left: 6em ;
  }
  .keydocument {
        margin-left: 6em ;
        }

  .pinkline{
      margin-top: -10px;
      

      height: 6px; /* Adjust thickness as needed */
      width: 65px;
      float: left;
      background-color: #fc6b17;
      border: none;
      }
.text{
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
  float: right;
  margin-right: 6em;
  position: relative;
  top: 100px;
  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: 100px;
  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: 100px;
left: 2em;
text-align: center;
width: fit-content;
}

.pink{
color: #fc6b17;
}

.whatwedeliver{

position: relative;
top: -5EM;
margin-top: 7em;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
text-align: center;
}

.pinkhr{
height: 6px; /* Adjust thickness as needed */
width: 70px;
background-color: #fc6b17;
border: none;
}

.strip{
background-color: #010734;
}

.item2 {
border: 1px solid #f7d1df;
padding: 20px;
text-align: left;
}

.strip h3{
color: aliceblue;
}


.howwehelp{
position: relative;
bottom: -6em;
margin-left: 3em;

}

.howwehelp p {
font-size: 18px;

}

.pinkhrrr{
height: 6px; /* Adjust thickness as needed */
width: 70px;
margin-left: 3em;
background-color: #fc6b17;
border: none;
margin-left:0.1em ;

}


.pinkhrr{
height: 6px; /* Adjust thickness as needed */
width: 70px;
margin-top: -2em;
background-color: #fc6b17;
border: none;

}
.data h1, h2 {
  color: #102A71;
  font-size: 45px;
  margin: 1em;
}

.data p {
  font-size: 18px;
  margin-left: 2.5em;
  margin-right: 2.5em;
  margin-top: -1em;
}

.data h1 {
  margin-left: 1em;
}

.photo {
  height: 550px;
  width: 100%;
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner_deliver {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, auto);
  gap: 2em;
  margin: 2em;
}

/* Media queries for responsiveness */
@media (max-width: 1024px) {
  .data h1, h2 {
      font-size: 36px;
      margin-left: 0.2em;
      margin-right: 1em;
  }

  .data p {
      font-size: 16px;
      margin-left: 1.5em;
      margin-right: 1.5em;
  }

  .photo {
      height: 400px;
  }
}

@media (max-width: 800px) {
  .inner_deliver {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 2em;
  }

  /* Reorder photos and data */
  .inner_deliver > div:nth-child(odd) {
      order: 1; /* Photos will come first */
  }

  .inner_deliver > div:nth-child(even) {
      order: 2; /* Data will come after */
  }
  
  .photo {
      height: 300px;
  }

  .data h1, h2 {
      font-size: 28px;
  }

  .data p {
      font-size: 14px;
      margin-left: 1em;
      margin-right: 1em;
  }
}

@media (max-width: 480px) {
  .data h1, h2 {
      font-size: 22px;
  }

  .data p {
      font-size: 12px;
      margin-left: 0.5em;
      margin-right: 0.5em;
  }

  .photo {
      height: 200px;
  }
}

.get_connect{
background-color: white;
margin-left: 6em;
margin-top: 2em;
position: relative;
height: 50px;
width: 130px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
font-size: 16px;
}

.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 {

  margin-top: 9em;
  margin-left: 6em ;
  }
  .whoarewe_des{
font-size: x-large;
margin-left: -0em;
color: #010734;
  }

  .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 */
    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% - 10px); /* 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;
    }


  .items img{
    height: 50px;
    width: 50px;
  }

  .enablers_div{
    position: relative;
    top: 8em;
    margin-top: 2em;
    display: flex;

  }
  .items{

    text-align: center;
    height: 400px;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
    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;

    }

    .swiper-pagination.big {
      width: 50px; /* Change this value to the desired width */
    }


  @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;
    }
  }



  .WRAPPER {
    position: relative;
    top: -10em;
    align-items: center;
    margin-top: 5em;
    margin-left: auto;
    margin-right: 3em;
    width: 60%;
  }
  
  /* For tablets */
  @media (max-width: 768px) {
    .WRAPPER {

      margin-right: 2em;
      width: 100%;
      height: auto;
      
    }
    
  }
  
  /* For mobile devices */
  @media (max-width: 480px) {
    .WRAPPER {
      top: -2em;
      margin-top: 2em;
      margin-right: 1em;
      margin-left: 1em;
      width: 100%;
      height: auto;
    }
    
  }
  
/* Default styles for larger screens */
.headings {
  display: flex;
  flex-direction: row; /* Stack headings vertically by default */
  gap: 1em; /* Standard gap between headings */ 
  position: relative;
  top: 6em;
}

.heading {
  padding: 12px;
  margin: 8px;
  font-size: 1em; /* Default font size */
}

/* Styles for tablets and smaller screens */
@media (max-width: 768px) {
  .headings {
    flex-direction: row; /* Change to row layout on very small screens */
    align-items: center; /* Center align headings */
    gap: 0.5em; /* Maintain reduced gap */
    position: relative;
    top: 13em;
    left: 2.5em;
  }

  .heading {
    padding: 6px;
    margin: 3px;
    font-size: 0.8em; /* Further adjust font size */
  }
  .content{
    position: relative;
    top: 8em !important;
  }
}

/* Styles for mobile screens */
@media (max-width: 480px) {
  .headings {
    flex-direction: row; /* Change to row layout on very small screens */
    align-items: center; /* Center align headings */
    gap: 0.5em; /* Maintain reduced gap */
    position: relative;
    top: 9em;
    left: 1em;
  }

  .heading {
    padding: 6px;
    margin: 3px;
    font-size: 0.8em; /* Further adjust font size */
  }
  .content{
    position: relative;
    top: 4em !important;
  }
  /* .content{
    margin-top: 2em;
  } */
}

  .content {
    max-height: 0;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 1s ease-in-out, min-height 1s ease-in-out;
    padding: 0 10px;
    margin: 5px;
    width: 100%;
    font-size: 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    position: relative;
    top: 4em;
  }
  
  .content.show {
    transform: translateX(0);
   
    max-height: 1500px; /* Arbitrary large value to accommodate the content */
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  
  .grid-WRAPPER {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 10px;
    justify-content: center;
    color: #010734;
  }
  
  /* For tablets */
  @media (max-width: 768px) {
    .grid-WRAPPER {
      grid-template-columns: 1fr; /* Stack items in a single column */
      grid-template-rows: repeat(10, auto); /* Adjust rows as needed */
      margin-top: 3em;
    }
  }
  
  /* For mobile devices */
  @media (max-width: 480px) {
    .grid-WRAPPER {
      gap: 5px; /* Reduce gap for smaller screens */
      grid-template-columns: 1fr; /* Ensure items stack in a single column */
      grid-template-rows: repeat(10, auto); /* Adjust rows as needed */
      margin-top: 3em;
      
    }
  }
  
  .grid-WRAPPER h3{
    font-size: 16px;
  }
  .grid-item {
    /* border: 1px solid #ccc; */
    text-align: left;
    gap: 10px;
    padding: 10px;
    background-color: #fbfbfb;
    border-bottom: 3px solid #f78f53;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  }
  .whatwedeliver h1,p{
    color: #030b27;
  }
  .categories {
    color: #010734;
    padding-bottom: 5em; /* Add some padding to give more space */
  }
  
  .categories h2 {
    text-align: center;
    padding-top: 3em;
    color: #010734;
  }
  
  .black_div {
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    color: #010734;
    padding: 3em;
    
  }
  .black_div-inner {
    background-color: #f9f9f9;
    border: 2px solid #f3f2f2;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    color: #010734;
  }
  

  .black_div-inner:hover {
    transform: translateY(-10px); 
  }
  
.black_div-inner h4{
padding-top: 0.5em;
padding-left: 2em;
padding-right: 2em;
}

.black_div-inner p{
color: #010734;
padding-left: 2em;
padding-right: 2em;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .black_div {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .black_div {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .black_div {
    grid-template-columns: repeat(2, 1fr);
    padding: 2em;
  }

  .black_div-inner h4 {
    padding: 0.5em 1.5em;
  }

  .black_div-inner p {
    padding: 0 1.5em;
  }
}

@media (max-width: 576px) {
  .black_div {
    grid-template-columns: 1fr;
    padding: 1em;
  }

  .categories h2 {
    font-size: 1.5em;
  }

  .pinkhrr {
    width: 50px;
    margin-top: 0.1em;
  }

  .black_div-inner {
    padding: 1em;
  }

  .black_div-inner h4 {
    padding: 0.5em 1em;
  }

  .black_div-inner p {
    padding: 0 1em;
  }
}

.VariousSources{
  margin-top: -0.3em;
  margin-left: 1em;
}

.right{
text-align: right;
margin-right: 3em;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
font-size: 18px;
}

.left{
position: relative;
top: -1em;
font-size: 18px;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
}
.hrrr{
width: 700px;
}
.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;
}

.location img {
height: 30px;
width: 40px;
}

.linkedinimg {
height: 72px;
width: 72px;
}

.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;
}
.heading.active {
color:   #fc6b17;
}



.WRAPPER_one {
  margin-top: -21em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  width: 70%;
}

/* For tablets */
@media (max-width: 768px) {
  .WRAPPER_one {
    margin-top: 1em;
    margin-left: 1.5em;
    width: 90%; /* Increase the width to take up more space */
  }

  .explore{
    margin-left: 1.5em;
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  .WRAPPER_one {
    margin-top: 1em;
    width: 100%; /* Full width for small screens */
  }
  .explore{
    margin-left: 1.5em;
  }
}


.headings_one {
  display: flex;
  justify-content: center;
  text-align: left;
  gap: 1em;
}
.heading_two {
  cursor: pointer;
  padding: 10px;
  margin: 5px;
  width: fit-content;
  text-align: center;
}

.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;
}



.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;
  color: #010734;
}

.praa {
  margin-top: -10px;
}

.timestamp {
  font-size: 12px;
  margin-top: -1em;
}
.WRAPPER_two {
LEFT: 40PX;
DISPLAY: FLEX;
FLEX-DIRECTION: COLUMN;
ALIGN-ITEMS: CENTER;
MARGIN-LEFT: AUTO;
MARGIN-TOP: -20em;
WIDTH: 70%;
}

.headings_two {
display: flex;
justify-content: center;
text-align: left;
gap: 1em;
}

.heading_three {
cursor: pointer;
padding: 10px;
margin: 5px;
width: fit-content;
text-align: center;
}

.content_two {
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: Arial, sans-serif;
box-sizing: border-box;
}

.content_two.show {
transform: translateX(0);
max-height: 1000px; /* Arbitrary large value to accommodate the content */
padding-top: 10px;
padding-bottom: 10px;
}

.grid-WRAPPER_two {
display: grid;
grid-template-columns: repeat(3, 0.5fr);
gap: 10px;
justify-content: center; /* Center the grid items */
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
color: #010734;
}

.grid-WRAPPER_two h3 {
font-size: 16px;
}

.grid-item_two {
/* border: 1px solid #ccc; */
text-align: center;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
gap: 10px;
padding: 10px;
}

.categories_two {
background-color: #010734;
color: white;
padding-bottom: 5em; /* Add some padding to give more space */
}

.heading_three.active {
color: #fc6b17;
}

body{
  color: #010734;
}

.hrrr {
width: 800px;
}

.grid-item_two img {
height: 300px;
width: 250px;
border-radius: 7px;
}

.horizontal-grid-container_two {
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;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
}

.horizontal-grid-element_two {
display: flex;
padding: 10px;
text-align: left;
}

.horizontal-grid-element_two h4 {
color: #000000;
margin-top: 0; /* Reset margin */
}

.horizontal-grid-element_two a {
text-decoration: none;
}

.horizontal-grid-element_two img {
height: 100px;
width: 200px;
border-radius: 5px;
}

.copyright_white_div{
text-align: center;
}

.copyright_white{
color: white;
font-size: 12px ;
padding-bottom: 2em;
padding-top: 1em;
}

.location {
display: flex;
align-items: center;
margin: 5px 0;
}

.location img {
margin-right: 20px;
margin-top:-12px ;
height: 40px;
width: 50px;
border-radius: 5px;
}

.swiper-custom-container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.swiper-custom-slide {
  display: flex;
  flex-direction: row; /* Ensure content is in column layout */
  width: 100%; /* Full width for each slide */
  background: #fff; /* White background for the slides */
  height: auto; /* Auto height to fit content */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  padding: 20px; /* Padding inside the slide */
  border-radius: 10px; /* Rounded corners */
  overflow: hidden; /* Hide overflow content */
  text-align: center; /* Center text alignment */
  word-wrap: break-word; /* Ensure long words break correctly */
}

/* Responsive styling for different screen sizes */

/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) {
  .swiper-custom-slide {

    font-size: 14px; /* Smaller font size for readability */
  }
  .content_one{
    margin-left: -2em;
  }
}

/* Small devices (tablets, 601px to 768px) */
@media (min-width: 601px) and (max-width: 768px) {
  .swiper-custom-slide {
    padding: 20px; /* Standard padding for tablets */
    font-size: 16px; /* Adjust font size for tablets */
  }
  .content_one{
    margin-left: -2em;
  }
}

/* Medium devices (small desktops, 769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .swiper-custom-slide {
    padding: 25px; /* Slightly larger padding for small desktops */
    font-size: 18px; /* Larger font size for better readability */
  }
}

/* Large devices (large desktops, 993px and up) */
@media (min-width: 993px) {
  .swiper-custom-slide {
    padding: 30px; /* More padding for larger screens */
    font-size: 20px; /* Larger font size for larger screens */
  }
}

.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;
  } 

  .smallbox {
    width: 100%;
    height: 70px;
    box-sizing: border-box;

    border-top-left-radius:10px ;
    border-top-right-radius:10px ;
    color: #010734;
    border: none; /* Just for visibility */
    padding: 0; /* Remove padding to ensure the width is the same */
    margin: 0; /* Remove margin to ensure the width is the same */
    display: flex;

  }
  .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;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

/* Fields styling */
.form-field {
    flex: 1;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="tel"] {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

input[type="email"]{
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 170px;
  height: 12px;
}

/* Styling for the email input field specifically */
.email-input {
    border-color: #007bff;
}

button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #fc6b17;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.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 */
  }
}
.industrydiv{
  text-align: right;
  margin-right: 0.5em;
  transform: translateY(-10em); /* Move the entire div up by 12em */
}
s

/* Container for the grid */
.grid-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto; /* Allows horizontal scrolling if needed */
  padding: 10px;
}

/* Each grid item */
.grid-item {
  flex: 0 0 auto; /* Prevent items from shrinking or growing */
  width: 300px; /* Adjust width as needed */
  margin: 10px; /* Spacing between items */
  border-radius: 8px; /* Optional: rounded corners */
  overflow: hidden;
  background-color: #fff; /* Background color for items */
}

/* 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;
}

/* Input field styling */
input[type="text"],
input[type="tel"],
input[type="email"] {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 50px; /* Full width */
  box-sizing: border-box; /* Include padding in width */
}



/* 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 */
  }
}
@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 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;
  }
}

/* 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;
}


.swiper-custom-container {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}


/* Article Box Styling */
.swiper-custom-article-box {
  width: 100%; /* Make the box responsive */
  max-width: 370px; /* Set a maximum width */
  margin: 10px;
  border: 1px solid #ddd; /* Light border for subtle separation */
  border-radius: 8px; /* Rounded corners */
  overflow: hidden; /* Hide overflow to keep it clean */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  background-color: #fff; /* White background for clarity */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for interactivity */
  text-decoration: none; /* Remove underline from links */
  color: inherit; /* Inherit text color */
  display: flex; /* Flexbox layout for internal content */
  flex-direction: column; /* Column layout */
}

/* Hover effects */
.swiper-custom-article-box:hover {
  transform: translateY(-5px); /* Slight lift effect on hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

/* Responsive design */
@media (max-width: 600px) {
  .swiper-custom-article-box {
    width: 100%; /* Full width on small screens */
    max-width: none; /* Remove max-width constraint */
  }
  .swiper-custom-slide {
    display: flex;
    flex-direction: column;
    width: 100%;
  }  
}


.swiper-custom-article-box img {
  width: 100%;
  height: 200px;
}

.swiper-custom-article-box h3 {
  margin: 1em 0;
  color: #010734;
}

.swiper-custom-article-box p {
  margin: 0.5em 0;
}

.swiper-custom-article-box .timestamp,
.swiper-custom-article-box .industry {
  margin: 0.5em 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 */
  }
}

#articleHeadingInput{
  font-size: 1EM;
}


.access{
  margin-top: -0.2em;
  margin-bottom: 0.5em;
}

.menu-items img{
  height: 40px;
  width: 150px;
  margin-left: -0em;
}
    .footerhr {
      border: 5px solid #fc6b17;
      width: 50px;
      border-radius: 10PX;
      margin-left: 0; /* Ensures it starts from the left */
    }
