@font-face {
  font-family: "Gilmer Bold";
  src: url("https://db.onlinewebfonts.com/t/7defc091a129b48948f730474b109d8f.eot");
  src: url("https://db.onlinewebfonts.com/t/7defc091a129b48948f730474b109d8f.eot?#iefix")format("embedded-opentype"),
  url("https://db.onlinewebfonts.com/t/7defc091a129b48948f730474b109d8f.woff2")format("woff2"),
  url("https://db.onlinewebfonts.com/t/7defc091a129b48948f730474b109d8f.woff")format("woff"),
  url("https://db.onlinewebfonts.com/t/7defc091a129b48948f730474b109d8f.ttf")format("truetype"),
  url("https://db.onlinewebfonts.com/t/7defc091a129b48948f730474b109d8f.svg#Gilmer Bold")format("svg");
}
body{
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
    overflow-x: hidden;
  }
  .inneremail{
  color: white;
}   
  
  @media (max-width: 768px) {
    .audiancewhite {
        flex-direction: row; /* Ensure horizontal layout on small screens */
        gap: 1em; /* Adjust gap for smaller screens */
        padding: 10px; /* Adjust padding */
    }
}
@media (max-width: 480px) {
    .audiancewhite {
        font-size: 0.9em; /* Reduce font size on very small screens */
    }
}
.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;
}

.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;
background-color: transparent;
right: 10px;
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;
  }
}
#email{
  width: 200px;
  height: 50px;

}
      .blue-div {
        margin-top: 2em;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
        /* background-color: rgb(1, 1, 20); */
        color: white;
        background-image: url('img/Contentdevbanner.jpeg');
        background-size: cover; 
        background-position: center;
        padding: 240px 80px; /* Adjust padding as needed */
        align-items: center;
        
      }
    .pinkcolor{
      color: #010734;
      font-size:20px ;
    }
  
      .sec_text_about{
        font-size: 30px;
        color: #ffffff;
      }
.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; /* Space between items */
  width: 100%;
  max-width: 700px; /* Max width of the menu */
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin: 0 auto; /* Center horizontally */
  box-sizing: border-box; /* Include padding in the width calculation */
}
    
.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 */
   
} 
.other{
    color: #010734;
    
}


@media (max-width: 768px) {
  .blue-div {
    padding: 160px 30px; /* Adjust padding for smaller screens */
    background-image: url('img/leadbanner.jpeg');
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .blue-div {
    padding: 100px 20px; /* Further adjust for mobile */
    background-image: url('img/leadbanner.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 */
  }
}

.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 {
    background-color:  rgb(255, 255, 250);
    padding: 20px;
    text-align: left;
  }
  .whoarewe {
    margin-left: 6em ;
    color: #010734;
    }
    .keydocument {
          margin-left: 6em ;
          margin-top: 10em ;
          }


          .keydocument {
            margin-left: 6em; /* Default margin for larger screens */
        }
        
        /* Adjust margin for smaller screens */
        @media (max-width: 1024px) {
            .keydocument {
                margin-left: 3em; /* Reduced margin for medium-sized screens */
            }
        }
        
        @media (max-width: 768px) {
            .keydocument {
                margin-left: 1.5em; /* Even smaller margin for tablets and small screens */
            }
        }
        
        @media (max-width: 480px) {
            .keydocument {
                margin-left: 1em; /* Minimal margin for mobile devices */
            }
        }
        

    .pinkline{
        margin-top: -17px;
        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;

    margin-top: -9.8em;
}

.text1{
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
    float: right;
    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;
}


/* slider */

.mySwiper {

  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mySwiper p{
  color: #010734;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 600px;
  border-radius: 10px;
  height: 350px;
  background-color: #fbfbfb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: -2em;
}

.swiper-slide img {
height: 50px;
width: 50px;
}

.swiper-slide p{
font-size: 18px;
}

.whatwedeliver{
  margin-top: 6em;
position: relative;
top: -2em;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ; 
  text-align: center;
  color: #010734;
}

.whatwedeliver p{
  font-size: 19px;
  font-weight: 600;
  margin-top: 1em;
  margin-bottom: 2em;
}
.pinkhr{
  height: 6px; /* Adjust thickness as needed */
  width: 70px;
  background-color: #fc6b17;
  border: none;
  margin-top: -17px;
  }

.strip{
  background-color: #010734;
}

.item2 {
  border: 1px solid #f7d1df;
  padding: 20px;
  text-align: left;
}

.strip h3{
  color: aliceblue;
}

.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;
  }

  .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: 9em;
    margin-left: 6em ;
    }

    .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;
      }


    .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;

      }

      .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;
      }
    }


    /* .Onee {
      font-size: 120px;
      font-family: "Gilmer Bold";
      -webkit-text-stroke: 1px #010734; 
      color: white;
    } */

    .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;
    }




*, *::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;
}

.section {
  margin: 10px 0;
}

.text-content, .text-content1, .text-content2, .text-content3, .text-content4, .text-content5, .text-content6, .text-content7 {
  display: flex;
  flex-direction: column; /* Change to column */
  align-items: flex-start; /* Align items to start */
  padding: 15px;
  border: 1px solid #fafafa;
  border-radius: 8px;
  background: #fff;
  width: 100%;
}

img.fleximg, img.fleximg1, img.fleximg2, img.fleximg3, img.fleximg4, img.fleximg5, img.fleximg6, img.fleximg7 {
  height: auto; 
  width: 50px;
  max-width: 100%; 
  margin-bottom: 10px; /* Add margin below the image */
}

.h11 {
  font-size: 1.5em; 
  margin: 0 0 5px;
  color: #102A71;
}

.DES {
  font-size: 1em;
  margin: 0;
  color: #010734;
}

@media (max-width: 600px) {
  .h11 {
      font-size: 1.2em;
  }

  .DES {
      font-size: 0.9em;
  }

  img.fleximg, img.fleximg1, img.fleximg2, img.fleximg3, img.fleximg4, img.fleximg5, img.fleximg6, img.fleximg7 {
      width: 40px;
  }
}

@media (max-width: 400px) {
  .text-content, .text-content1, .text-content2, .text-content3, .text-content4, .text-content5, .text-content6, .text-content7 {
      align-items: flex-start;
  }

  img.fleximg, img.fleximg1, img.fleximg2, img.fleximg3, img.fleximg4, img.fleximg5, img.fleximg6, img.fleximg7 {
      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;
    }
    
    .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 {
  LEFT: 40PX;
  DISPLAY: FLEX;
  FLEX-DIRECTION: COLUMN;
  ALIGN-ITEMS: CENTER;
  MARGIN-TOP: -20EM;
  MARGIN-LEFT: AUTO;
  WIDTH: 70%;
}

.WRAPPER h3{
  margin-top: 1.5em;
}

.headings {
  display: flex;
  justify-content: center;
  text-align: left;
  gap: 1em;
}

.heading {
  cursor: pointer;

  padding: 10px;
  margin: 5px;
  width: fit-content;
  text-align: center;
}

.content {
  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.show {
  transform: translateX(0);
 
  max-height: 1000px; /* Arbitrary large value to accommodate the content */
  padding-top: 10px;
  padding-bottom: 10px;
}

.grid-WRAPPER {
  display: grid;
  grid-template-columns: repeat(3, 0.5fr);
  gap: 10px;
  justify-content: center; /* Center the grid items */


}
.grid-WRAPPER h3{
  font-size: 16px;
}
.grid-item {
  /* border: 1px solid #ccc; */
  text-align: center;
  gap: 10px;
  padding: 10px;
}


.categories {
  background-color: #010734;
  color: white;
  padding-bottom: 5em;
}

.categories h2 {
  text-align: center;
  padding-top: 3em;
  color: white;
  margin-bottom: 0.5em;
}

.pinkhrr {
  height: 6px;
  width: 70px;
  margin-top: -2em;
  background-color: #fc6b17;
  border: none;
}

.black_div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  color: #010734;
  padding: 3em;
}

.black_div-inner {
  background-color: #ffffff;
  box-shadow: 0 20px 20px, 0 30px 40px rgba(0, 0, 0, 0.1);
  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);
  box-shadow: 0 30px 30px, 0 40px 50px rgba(0, 0, 0, 0.2);
}

.black_div-inner h4 {
  padding: 0.5em 2em;
}

.black_div-inner p {
  color: #010734;
  padding: 0 2em;
}

.smallbox {
  width: 100%;
  height: 70px;
  background-color: #102A71;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}


.heading.active {
color:   #fc6b17;
}


.hrrr{
  width: 800px;
}

.grid-item img{
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;
}
.kak h4,p{
  color: #010734;
}


.headline{
  color: #010734 !important;
}
.praa{
margin-top: -10px;
}

.timestamp{
font-size: 12px;
margin-top: -1em;
}




.WRAPPER_one {
  margin-top: -21em;
  
      DISPLAY: FLEX;
      FLEX-DIRECTION: COLUMN;
      ALIGN-ITEMS: CENTER;
      MARGIN-LEFT: AUTO;
      WIDTH: 70%;
  }
  
  .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;
  }
  body{
    color: #010734;
  }
  
  .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;
}


.fleximg {
  height: 50px;
  width: 50px;
  margin-left: 20px;
  position: relative;
  right: 6.5EM;
  bottom: -4em;
}

.fleximg1{
  height: 50px;
      width: 50px;
  
      margin-left: 20px;
  position: relative;
  right: 6EM;
  bottom: -4em;

  }  

.fleximg2{
height: 50px;
  width: 50px;

  margin-left: 20px;
position: relative;
right: 6EM;
bottom: -4em;
}

.fleximg3{
height: 50px;
width: 50px;

margin-left: 20px;
position: relative;
right: 6EM;
bottom: -4em;
}


.fleximg4{
height: 50px;
    width: 50px;

    margin-left: 20px;
position: relative;
right: 6EM;
bottom: -4em;
}

.fleximg5{
  height: 50px;
      width: 50px;

      margin-left: 20px;
  position: relative;
  right: 6EM;
  bottom: -4em;
  }

  .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-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;
  }


  .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 */
}



.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 */
  }
}
/* Responsive adjustments */
/* 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;
  width: 100%; /* 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 */
  }
}

@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 */
  }
}
/* 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;
    }
}


.access{
  margin-top: -0.2em;
  margin-bottom: 0.5em;
}

/* 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 */
}

/* 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;
  
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
  
}



/* 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-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;
}

@media (max-width: 600px) {
  .swiper-custom-article-box {
    width: 100%;
    margin: 5px;
  }
}

.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: 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 */
  }
}


.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 */
}


.menu-items img{
  height: 40px;
  width: 150px;
  margin-left: -0em;
}


@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 */
  }
  .explore {
    color: #010734;
        margin-top: 9em;
        margin-left: 1em ;
        }
}



@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 */
  }
  .explore {
    color: #010734;
        margin-top: 9em;
        margin-left: 1em ;
        }
}



/* Media Queries for Responsiveness */
@media (max-width: 1200px) {


.swiper-slide p {
font-size: 16px;
}


.explore {
  color: #010734;
      margin-top: 9em;
      margin-left: 1.5em ;
      }
}

@media (max-width: 768px) {


.swiper-slide p {
font-size: 14px;
}

}

@media (max-width: 480px) {

.swiper-slide p {
font-size: 12px;
}


}


@media only screen and (max-width: 768px) {
  .RIGHT{
    color: #ffffff;
    text-align: left;
    position: relative;
    top: 6em;
    margin-left: -0.5em;
     
    }
    
    
    .RIGHT2{
      color: #ffffff;
    text-align: left;
    margin-left: -2em;
    position: relative;
    top: -1.5em;
     
    }
    .RIGHT3{
      color: #ffffff;
    text-align: left;
    margin-left: 1em;
    position: relative;
    top: 0.1em;
    }
    
    .RIGHT4{
      color: #ffffff;
    text-align: left;
    margin-left: -2.5em;
    position: relative;
    top: -1.5em;
    }
      
    .RIGHT5{
      color: #ffffff;
      text-align: left;
    margin-left: 0.3em;
    position: relative;
    top: -1.5em;
    }
    
    .RIGHT6{
      color: #ffffff;
      text-align: left;
    margin-left: 1.5em;
    position: relative;
    top: -0.5em;
    }
    
    
    .RIGHTDOWN{
      text-align: left;
    color: white;
    margin-bottom: 11em;
    position: relative;
    top: 2.5EM;
    margin-left:0.5em ;
    }
    
    .RIGHTDOWN2{
      text-align: left;
    color: white;
    margin-left:0.5em ;
    position: relative;
    top: -2.2EM;
    }
    .RIGHTDOWN3{
      text-align: left;
    color: white;
    margin-left:0.6em ;
    position: relative;
    top: -1.5EM;
    }
    .RIGHTDOWN4{
      text-align: left;
    color: white;
    margin-left:0.5em ;
    position: relative;
    top: -2.5EM;
    }
    .RIGHTDOWN5{
      text-align: left;
    color: white;
    margin-left:0.5em ;
    position: relative;
    top: -2.5EM;
    }
    .RIGHTDOWN6{
      text-align: left;
    color: white;
    margin-left:0.5em ;
    position: relative;
    top: -2EM;
    }
}

/* Media Query for Small Mobile Screens */
@media only screen and (max-width: 480px) {
  .RIGHT{
    color: #ffffff;
    text-align: left;
    position: relative;
    top: 6em;
    margin-left: -0.5em;
     
    }
    
    
    .RIGHT2{
      color: #ffffff;
    text-align: left;
    margin-left: -2em;
    position: relative;
    top: -1.5em;
     
    }
    .RIGHT3{
      color: #ffffff;
    text-align: left;
    margin-left: 1em;
    position: relative;
    top: 0.1em;
    }
    
    .RIGHT4{
      color: #ffffff;
    text-align: left;
    margin-left: -2.5em;
    position: relative;
    top: -1.5em;
    }
      
    .RIGHT5{
      color: #ffffff;
      text-align: left;
    margin-left: 0.3em;
    position: relative;
    top: -1.5em;
    }
    
    .RIGHT6{
      color: #ffffff;
      text-align: left;
    margin-left: 1.5em;
    position: relative;
    top: -0.5em;
    }
    
    
    .RIGHTDOWN{
      text-align: left;
    color: white;
    margin-bottom: 11em;
    position: relative;
    top: 2.5EM;
    margin-left:0.5em ;
    }
    
    .RIGHTDOWN2{
      text-align: left;
    color: white;
    margin-left:0.5em ;
    position: relative;
    top: -2.2EM;
    }
    .RIGHTDOWN3{
      text-align: left;
    color: white;
    margin-left:0.6em ;
    position: relative;
    top: -1.5EM;
    }
    .RIGHTDOWN4{
      text-align: left;
    color: white;
    margin-left:0.5em ;
    position: relative;
    top: -2.5EM;
    }
    .RIGHTDOWN5{
      text-align: left;
    color: white;
    margin-left:0.5em ;
    position: relative;
    top: -2.5EM;
    }
    .RIGHTDOWN6{
      text-align: left;
    color: white;
    margin-left:0.5em ;
    position: relative;
    top: -2EM;
    }
}

.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;

}

@media (max-width: 1200px) {
.containerrr {
  flex-direction: column;
  align-items: center;
}

.WRAPPER,
.keydocument {
  width: 90%;
}

.WRAPPER{
  margin-top: 5em;
}

.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;
}
}


@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 */
}
}


@media (max-width: 768px) {
.swiper-custom-slide {
padding: 15px; /* Reduced padding */
/* Ensures content stays within slide */
box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); /* Slightly smaller shadow */
}
}

/* 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 */
}
}


@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 */
}
}


/* 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;
  }
}
    .footerhr {
      border: 5px solid #fc6b17;
      width: 50px;
      border-radius: 10PX;
      margin-left: 0; /* Ensures it starts from the left */
    }

