
body{
  font-family: "Hind", 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;

}
.BORDERR img{
  height: 450px !important; 
  width: 350px !important;
  border: 2px solid #102A71;
}
.header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* Wrapper to center without touching the body */
.team-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px; /* Prevent touching the edges */
}

.team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  row-gap: 20px;
}

.team-member {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.member-info h3 {
  font-size: 1.2rem;
  color: #010734;
  margin-bottom: 5px;
}

.member-info p {
  font-size: 1rem;
  color: #010734;
}

@media (max-width: 768px) {
  .team-container {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 10px;
  }
}

@media (max-width: 480px) {
  .team-container {
      grid-template-columns: 1fr;
  }
}

.up {
  margin-top: -0.5em;
}

h1 {
  color: #010734;
}

p {
  color: #010734;
}
.team_up{
  margin-top: 5em !important;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
}

@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 */
  }
}

.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;
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 {
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
      background-color: #010734;
      color: white;
      padding: 80px 80px; /* Adjust padding as needed */
      text-align: center;
    }
  
    .sec_text_about{
      font-size: 30px;
      color: rgb(134, 135, 136);
      font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
    }

.our_ex{
  padding-top: 50px;
  text-align: center;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  color: #010734;
}

.thickline{
height: 6px; /* Adjust thickness as needed */
width: 65px;
background-color: #fc6b17;
border: none;
}

.our_ex_des{
  text-align: center;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  font-size: 20px;
  color: #010734;
}

#email{
  width: 200px;
  height: 50px;

}
.item img {
  width: 50px; /* Adjust image size as needed */
  height: 50px; /* Adjust image size as needed */
  margin-bottom: 10px;
}

.des_ex {
  font-size: 1.19em;
  margin-left: 10px;
  text-align: left;
  

  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  padding: 10px; /* Add padding to ensure content inside is spaced nicely */
}

.about_sec{
  margin-top: 5em;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;

  color: white;
}


.enablers_hr{

  height: 8px; /* Adjust thickness as needed */
  width: 65px;
  background-color: #102A71;
  border: none;
  position: relative;
  right: 570px;
}

.enablers_div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.items {
  border: 1px solid  rgb(250, 250, 250);
  background-color: rgb(250, 250, 250) ;
  color: #102A71;
  box-sizing: border-box;
  width: calc(20% - 20px); /* Adjust percentage to fit your layout, subtracted for gap */
  padding: 0; 
  transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease, color 0.5s ease;
  text-align: center;
  margin-top: 2em;
  margin-left: 0.5em;
}


body{
  color: #010734;
}


.items:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.vertical-line {
  display: none; /* Remove vertical lines */
}
.fleximg{ 
        width: 70px; /* Adjust image size as needed */
        height: 80px; /* Adjust image size as needed */
        margin-bottom: 10px;
    }

.key , .key_des{
  color: #010734;
}
.enablers{
  position: relative;
  bottom: -3EM;
  font-size: 1.5em;
  margin-left: 2.5em;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  color: #010734;

}
.enablers2{
  position: relative;
  bottom: -6.5EM;
  margin-left: 3em;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  color: #010734;

}

.pink_enablers2{
  position: relative;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  bottom: -11EM;
  margin-left: 110px;
  margin-top: -30px;
  height: 6px; /* Adjust thickness as needed */
  width: 65px;
  background-color: #fc6b17;
  border: none;
}


.enablers_div{
  position: relative;
  bottom: -6EM;
  margin-top: 2em;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  display: flex;

  gap: 10px; /* Adjust gap as needed */
}

.my-swiper {
  margin-top: 5em;
  margin-bottom: -3EM;
  width: 100%; /* Adjust width as needed */
  height: 400px; /* Adjust height as needed */
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;

}

.swiperimg{
  height: 40px;
  width: 40px;
}

.my-swiper-slide {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  font-size: 18px;
  background: #fcfcfc;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.my-swiper-slide h2{
  color: #010734; 
}

@media (max-width: 768px) {
  .my-swiper {
    height: auto;
    margin-top: 3em;
    margin-bottom: -2em;
  }

  .swiperimg {
    height: 30px;
    width: 30px;
    margin-top: 1em;
  }

  .my-swiper-slide {
    font-size: 16px;
    padding: 0.5em; /* Reduced padding */
  }
}

@media (max-width: 480px) {
  .my-swiper {
    height: auto;
    margin-top: 2em;
    margin-bottom: -1em;
  }

  .swiperimg {
    height: 25px;
    width: 25px;
    margin-top: 1em;
  }

  .my-swiper-slide {
    font-size: 14px;
    padding: 0.5em; /* Maintain padding */
  }

  .my-swiper-slide h2 {
    font-size: 16px;
  }
}
/* Navigation styles */
.my-swiper-button-prev,
.my-swiper-button-next {
  color: #102A71; 
  cursor: pointer;
  background-color: transparent;
  /* border-radius: 50%;
  border: 2px solid #007bff; 
  width: 50px; 
  height: 50px;  */
  font-weight: bold; /* Make the arrow a bit bold */
}
.my-swiper-button-prev:hover,
.my-swiper-button-next:hover {
  opacity: 0.7; /* Adjust the opacity of the arrows on hover */
}

.pinkheading{
  color: #102A71;
}

.pink_enablers{
  position: relative;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  bottom: -6EM;
  margin-left: 100px;
  margin-top: -30px;
  height: 6px; /* Adjust thickness as needed */
  width: 65px;
  background-color: #fc6b17;
  border: none;
}


.explore_insights {
  background-color: white;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  height: 50px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  position: relative;
  margin-top: 20px; /* Add margin to create space below the article box */
  top: 0; /* Remove previous top positioning */
  left: 0; /* Remove previous left positioning */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .explore_insights {
    width: 100%; /* Make the button full width */
    text-align: center; /* Center the text */
    left: 0; /* Center alignment */
    margin-left: -3em;
  }
}

@media (max-width: 576px) {
  .explore_insights {
    font-size: 14px; /* Adjust font size for smaller screens */
    padding: 8px 15px; /* Adjust padding for smaller screens */
    margin-left: -3em;
  }
  
}
/* 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="email"] {
    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="email"] {
    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;
  }
}

    .thick-line {
      margin-left: 10px;
      margin-top: -10px;
      height: 6px; /* Adjust thickness as needed */
      width: 65px;
      background-color: #fc6b17;
      border: none;
      }

      .insight_div{
        position: relative;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
        bottom: -8EM;
margin-left: 4em;
      }
  
/* subscribe  */

.Subscribe {
  position: relative;
  bottom: -9EM;
  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;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  
  }
  .Subscribe1, .Subscribe12 
  {
  color: #fff;
  text-align: center;
  }
  input[type="email"] {
  width: calc(30% - 30px); /* Adjusted for padding */
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  height: 25px;
  border: none;
  outline: none;
  }
  input[type="submit"] {
  width: calc(10% - 20px); /* Adjusted for padding */
  height: 40px;
  padding: 10px;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  margin-top: 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color:  #fc6b17;
  color: #ffffff;
  cursor: pointer;
  }
  .Subscribe1{
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  text-align: left;
  color:  #fc6b17;
  }
  .Subscribe12{
  text-align: left;
  }

/* Responsive adjustments for tablets and smaller screens */
@media (max-width: 1024px) {
  .Subscribe {
    padding: 15px;
    margin: 30px;
    max-width: calc(100% - 60px); /* Reduce margins */
  }

  input[type="email"] {
    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="email"] {
    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;
  }
}


    .pinkcolor{
      text-align: left;
      color: #102A71;
      padding: 10px; /* Add padding to ensure content inside is spaced nicely */
      font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
    }
    
    .vertical-line {
      border-left: 2px solid rgb(211, 207, 207); 
      height: 290px;
    }


    .footer {
      font-size: 20px;
      position: relative;
      bottom: -10em;

      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;
      position: relative;
      right: 0.5em;
  }

  .logoimg {
      border-radius: 10px;
      height: 70px;
      width: 70px;
      background-color: #ffffff;
  }

  @media (max-width: 768px) {
      .footer {
          align-items: center;
          position: relative;
          width: 100%;
          border-radius: 0;
          margin-top: 3em;
      }

      .footer-row {
          padding: 20px;
          gap: 1rem;
      }

      .footer-col {
          flex: 1 1 100%;
          margin-bottom: 20px;
      }

      .footer-col form {
          display: block;
      }

      .footer-col form :where(input, button) {
          width: 100%;
      }

      .footer-col form button {
          margin: 10px 0 0 0;
      }

      .pink, .pinkk {
          height: 4px; /* Adjust thickness for smaller screens */
          width: 25px; /* Adjust width for smaller screens */
          position: static; /* Reset positioning */
          left: 0; /* Reset horizontal offset */
      }

      .linkedinimg, .logoimg {
          height: 50px;
          width: 50px;
      }

      .footer-col .location img {
          height: 25px; /* Adjust size for smaller screens */
          width: 35px;  /* Adjust size for smaller screens */
      }
  }
  .color_org{
      color: #fc6b17;
  }
/* ///////////////////////////////insights div///////////////////////////////////*/
.grid-WRAPPER {

  display: grid;
  margin-left: -1em;
  margin-right: 3em;
  grid-template-columns: repeat(3, 0.5fr);
  gap: 10px;
  justify-content: center; /* Center the grid items */
  align-items: center;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  text-decoration: none;


}
.grid-WRAPPER p{
  font-size: 13px;
  margin-left:  20px;
  text-decoration: none;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
}

.grid-WRAPPER h4{
  margin-top: -0.5em;
  margin-left:  20px;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;

}

.grid-WRAPPER img{
  height: 200px;
  width: 350px;
  margin-left: 20px;

  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
}

.grid-item {
  text-align: left;
  gap: 10px;
  padding: 10px;
  background-color: #fbfbfb;
  /* border-bottom: 3px solid #fa88b2; */
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
}

.grid-item h4 {
  color: #000000;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
}

.grid-item a {
  text-decoration: none ;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
}


.makeitpink{
  color:  #fc6b17;
}


.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;
}



.article-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.leftslider{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.article-box {
  width: 370px;
  margin: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background-color: #fff;
  transition: transform 0.3s;
}


@media (max-width: 992px) {
  .article-box {
    width: calc(50% - 20px); /* 2 items per row */
  }
}

@media (max-width: 768px) {
  .article-box {
    width: calc(100% - 20px); /* 1 item per row */
  }
}

@media (max-width: 576px) {
  .article-box {
    width: calc(100% - 20px); /* 1 item per row */
    margin: 5px; /* Adjust margin for smaller screens */
  }
}

.article-box:hover {
  transform: scale(1.02);
}

.ROWCLASS{
  display: flex;
  margin-left: 1em;

}

.timestamp {
  color: gray;
  font-size: 0.9em;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
  position: relative;
  top: -1em;
  margin-left: 1.2em;
}


.makeitpinkk{
  margin-top: -0.5em;
  margin-left: 1em;
}


.gapforall{
  margin-top: -1em;
}

.article-box img {
  width: 100%;
  height:200px ;
}
.popup {
  text-align:center;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1000px;
  max-height: 90%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: white;
  z-index: 1000;
  border-radius: 10px;
  overflow-y: auto;
}
.popup h2 {
  margin-top: 0;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
#popupImage{
  height: 400px !important;
  width: 700px !important;
}

#popupContent {
  max-height: 80vh; /* Set maximum height for the content */
  overflow-y: auto; /* Enable vertical scrolling if content overflows */
}


.section {
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.in-view {
  opacity: 1;
  transform: translateY(0);
}


  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 boxes per row */

  }

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 boxes per row */
    gap: 16px; /* Adjust the gap between items as needed */
  }
  
  /* For tablets and smaller screens */
  @media (max-width: 1024px) {
    .articles-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 boxes per row */
      margin-left: -3em;
    }
    .key , .key_des{
      color: #010734;
      margin-left: -1.5em;
    }
    .thick-line {
      margin-left: -1em;
      margin-top: -10px;
      height: 6px; /* Adjust thickness as needed */
      width: 65px;
      background-color: #fc6b17;
      border: none;
      }

      .pink_enablers{
        position: relative;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
        bottom: -6EM;
        margin-left: 20px;
        margin-top: -30px;
        height: 6px; /* Adjust thickness as needed */
        width: 65px;
        background-color: #fc6b17;
        border: none;
      }
      
      .enablers{
        position: relative;
        bottom: -3EM;
        margin-left: 20px;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
        color: #010734;
      
      }

      .pink_enablers2 {
        position: relative;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
        bottom: -7EM;
        margin-left: 40px;
        margin-top: -30px;
        height: 6px; /* Adjust thickness as needed */
        width: 65px;
        background-color: #fc6b17;
        border: none;
      }
      
      .enablers2{
        position: relative;
        bottom: -3EM;
        margin-left: 20px;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
        color: #010734;
      
      }
  }
  
  /* For mobile screens */
  @media (max-width: 600px) {
    .articles-grid {
      grid-template-columns: 1fr; /* 1 box per row */
      margin-left: -3em;
    }
    .key , .key_des{
      color: #010734;
      margin-left: -1.5em;
    }
    .thick-line {
      margin-left: -1em;
      margin-top: -10px;
      height: 6px; /* Adjust thickness as needed */
      width: 65px;
      background-color: #fc6b17;
      border: none;
      }
      .pink_enablers{
        position: relative;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
        bottom: -6EM;
        margin-left: 20px;
        margin-top: -30px;
        height: 6px; /* Adjust thickness as needed */
        width: 65px;
        background-color: #fc6b17;
        border: none;
      }
      
      .enablers{
        position: relative;
        bottom: -3EM;
        margin-left: 10px;
        font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif ;
        color: #010734;
      
      }
  }

a {
  text-decoration: none;
  color: #010734;
}

.ROWCLASS{
  display: flex;
  margin-left: 1em;

}

.ROWCLASSs{
  display: flex;

}

.industry {
  position: relative;
  right: -8em;
  top: -1.5em;
  margin-right: 0.5em;
  display: inline-block; /* Allow the box to size according to text */
  padding: 0.5em 1em; /* Padding inside the box */
  border:none; /* Border color */
  border-radius: 4px; /* Rounded corners */
  background-color: #010734; /* Background color */
  color: white; /* Text color */
  font-weight: bold; /* Bold text */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Shadow for better visibility */
}

@media (max-width: 600px) {
  .industry {
      font-size: 0.9em; /* Adjust font size on smaller screens */
      padding: 0.4em 0.8em; /* Adjust padding for smaller screens */
  }
}


.smallbox {
  width: 100%;
  height: 35px;
  box-sizing: border-box;
  color: #102A71;
  padding: 0; /* Remove padding to ensure the width is the same */
  margin: 0; /* Remove margin to ensure the width is the same */
  display: flex;
margin-left: 10px;
}


.container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Adjust spacing between items as needed */
  margin-left: 1em;
}
        /* Media queries for responsiveness */
        @media (max-width: 1200px) {
          .items {
              width: calc(25% - 20px); /* 4 items per row */
          }
      }

      @media (max-width: 992px) {
          .items {
              width: calc(33.33% - 20px); /* 3 items per row */
          }
      }

      @media (max-width: 768px) {
          .items {
              width: calc(50% - 20px); /* 2 items per row */
          }
      }

      @media (max-width: 576px) {
          .items {
              width: 100%; /* 1 item per row */
          }
      }

      .menu-items img{
        height: 40px;
        width: 150px;
        margin-left: -0em;
      }




      .layout-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 80px;
        padding: 40px;
        max-width: 1200px;
        margin: auto;
        margin-top: 11em;
    }

    .item-box {
        color: white;
        text-align: center;
        border-radius: 8px;

        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px;
        cursor: pointer;
        text-decoration: none;
    }

    .item-box img {
        width: 100%;
        height: 99%;
        border-radius: 8px;
        margin-bottom: 15px;
    }
.inneremail{
  color: white;
}   
    .item-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .layout-container {
            grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
        }
    }

    @media (max-width: 480px) {
        .layout-container {
            grid-template-columns: 1fr; /* 1 column on small screens */
        }
    }
    
    
        
        
.dateeee
{
  color: #000000;
  margin-top: -1em;
}
.headingdate{
  color: #000000;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 80%;
  max-width: 900px;
  margin-top: 5em !important;
  margin: 0 auto; /* Centers the container */
  justify-content: center; /* Ensures alignment */
}

.grid-item {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-shadow: 0 0 15px rgba(73, 71, 71, 0.1);
}

.grid-item i {
  font-size: 50px;
  margin-bottom: 15px;
  color: #333;
}

.grid-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.grid-item h3 {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .grid-container {
      grid-template-columns: repeat(2, 1fr);
      width: 90%;
  }
}

@media (max-width: 480px) {
  .grid-container {
      grid-template-columns: repeat(1, 1fr);
      width: 100%;
  }
}

    .footerhr {
      border: 5px solid #fc6b17;
      width: 50px;
      border-radius: 10PX;
      margin-left: 0; /* Ensures it starts from the left */
    }






