.hamburger {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: white;
}

@media (max-width: 500px) {
  .hamburger {
      display: block;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 80px;
      left: 0;
      background-color: #030f27;
      width: 100%;
      padding: 20px 0;
      z-index: 10;
      transition: transform 0.3s ease-in-out;
      transform: translateY(-100%);
  }

  .nav-links.active {
      display: flex;
      transform: translateY(0);
  }

  .nav-links li {
      margin: 10px 0;
      text-align: center;
  }
}


/* Global Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {

  margin-top: 50px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 30px;

}

/* Header Styles */
/* Updated Header and Logo Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:#030f27;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;

}

header .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align logo and text to the left */
  padding-left: 10px;
  margin-right: 150px;
  /* Adjust padding to move it left */
}

header .logo img {
  width: 80px;
  /* Set appropriate width for the logo */
  height: auto;
  /* Keep aspect ratio */
}

header .logo h1 {
  font-size: 22px;
  /* Adjust font size for "VSL FOUNDATION" */
  margin-top: 5px;
  /* Small space between logo and text */
  font-weight: 700;
  color: white;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  color: white;
  /* Add more space between menu items */
  margin-left: 50px;
  /* Move the menu slightly to the right */
}

header nav ul li a {
  font-weight: 500;
  font-size: 28px;
  /* Increase the font size */
  color: #ffffff;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #e67e22;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

header nav ul li {
  margin-right: 30px;
  /* Additional space between items and for right alignment */
}

/* Navigation items hover effect */
header nav ul li a {
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  transition: color 0.3s, text-decoration 0.3s;
  /* Add transition for color and underline */
}

header nav .btn-1 {
  background-color: #e67e22;
  color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  font-weight: 500;
  transition: background-color 0.3s;
}

header nav .btn-2 {
  background-color: #e67e22;
  color: #fff;
  padding: 20px 40px;
  border-radius: 10px;
  font-weight: 500;
  transition: background-color 0.3s;
}

header nav .btn-1:hover {
  background-color: #333;
}

header nav .btn-2:hover {
  background-color: #333;
}

/* Hero Section */
.hero {
  background-color: #030f27;
  display: flex;
  flex-wrap: wrap;

  padding: 60px 0;

}


.hero .container {
  display: flex;
  flex-wrap: wrap;

  align-items: center;
  justify-content: center;
  
}

.hero .hero-text {
  max-width: 80%;
  margin: 30px;
  padding: 34px;
  word-spacing: 5px;
  word-wrap: normal;
}

.hero h2 {
  font-size: 36px;
  width: auto;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 20px;
  font-family:sans-serif;
  margin-bottom: 20px,20px;
  padding: 30px;
  color: white;

}

.hero .btn-1 {
  background-color: #e67e22;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: background-color 0.3s;

}

.hero .btn-2 {
  background-color: #e67e22;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin: 20px;
  justify-content: center;
}


.hero .btn-1:hover {
  background-color: #333;
}

.hero .btn-2:hover {
  background-color: #333;
}

.hero .hero-image img {
  max-width: 50%;
  height: 400px;
  max-width: 800px;
  align-items: center;
}

/* Services Section */
.services {
  background-color:  #030f27;
  padding: 60px 50px;
  text-align: center;

}

.services h3 {
  font-size: 32px;
  margin-bottom: 40px;
  color: white;
}

.service-cards {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping */
  justify-content: center; /* Center the cards */
}

.service-cards .card {
  
  padding: 55px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 20px 40px 30px rgba(249, 137, 1, 0.1);
  flex: 1 1 300px; /* Allow flexible widths with a min size */
  margin: 10px; /* Add some margin for spacing */
  background-color:  #ffffff;
}


.service-cards .card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-cards .card p {
  font-size: 16px;
  color: #000000;
}

.service-cards .card:hover {
  transition: transform 0.3s, box-shadow 0.3s;
  transform: translateY(-10px); /* Float effect */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}





/* Completed projects */
.container-1 {
overflow:hidden;
  padding: 20px;
  text-align: center;
  background-color:  #030f27;
}

/* Service section title styling */
.container-1 h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 60px;

}

/* Service cards wrapper with sliding effect */
.service-cards-1 {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  height: 500px;
  width: 800px;
  animation: slideCards 20s linear infinite;
 

}

/* Individual service card styling */
.card-1 {

  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0;
  width: calc(33.33%); /* For three cards per row */
  margin: 0;
  position: relative;
  overflow:hidden;
  flex-shrink: 0; /* Prevent shrinking of the card */
  background:linear-gradient(to bottom, rgba(233, 231, 231, 0.336), #dfe2e255);
}


/* Image covering 80% of the card */
.sr-image {
  width: 100%;
  height: 90%;
  object-fit: cover; 
  background-position: cover;
  border-radius: 10px;/* Cover full width without stretching */
}

/* Text, work name, and button (occupying 20% of the card) */
.card-1 h4 {
  font-size: 1.2rem;
  color: #000000;
  margin: 10px 0;
  padding: 0 10px;
  text-align: center;
}

.card-1 .location {
  font-size: 1rem;
  color: #777;
  padding: 0 10px;
  text-align: left;
}

/* Read More button styling */
.serv-btn-1 {
  display: block;
  padding: 10px 20px;
  background-color: #e67e22;
  color: #fff;
  border-radius: 5px;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  margin: 10px auto;
  width: 80%;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.serv-btn-1:hover {
  background-color: #000000;
}




.service-1 h3 {
  font-size: 32px;
  margin-bottom: 40px;
 
}

.service-cards-1 {
  display: flex;
 /* Keep cards in a single line */
  animation: moveCards 10s linear infinite; /* Continuous animation */
}

.service-cards-1:hover { 
  animation-play-state: paused; /* Pause the animation on hover */
}

.service-cards-1 .card-1 {
  background-color: white;
  padding: 55px 30px;
  text-align: center;
  background-image: cover;
  box-shadow: 0 4px 20px rgba(190, 109, 10, 0.888);
  margin: 0 10px; /* Horizontal margin */
  transition: transform 0.3s, background-color 0.3s; /* Smooth transition */
}



/* Keyframes for horizontal movement */
@keyframes moveCards {
  0% {
      transform: translateX(100%); /* Start off-screen */
  }
  100% {
      transform: translateX(-100%); /* Move to off-screen left */
  }
}


/*completed project section moving end */



/* contact us form*/

.landing_page * {
  font-family: Nunito, sans-serif;
}

.landing_page .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.landing_page .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
}

.landing_page .responsive-cell-block {
  min-height: 75px;
}

.landing_page .responsive-container-block.container {
  max-width: 1320px;
  margin-top: 60px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  position: relative;
}

.landing_page .form-box {
  background-color:  #000000;
  color: white;
  padding-top: 35px;
  padding-right: 33px;
  padding-bottom: 35px;
  padding-left: 33px;
  max-width: 506px;
}

.landing_page .text-blk.contactus-head {
  font-size: 30px;
  line-height: 40px;
}

.landing_page .text-blk.contactus-subhead {
  color: #d4d4d4;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 18px;
  margin-left: 0px;
}

.landing_page .input {
  width: 100%;
  height: 50px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 18px;
  padding-top: 1px;
  padding-right: 125px;
  padding-bottom: 1px;
  padding-left: 22.5px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: #767676;
  border-right-color: #767676;
  border-bottom-color: #767676;
  border-left-color: #767676;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  background-color: #ffffff;
  padding: 1px 12.5px 1px 22.5px;
}

.landing_page .textinput {
  width: 100%;
  height: 233px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  font-size: 18px;
  padding-top: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
  padding-left: 22px;
  background-color: #ffffff;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: #767676;
  border-right-color: #767676;
  border-bottom-color: #767676;
  border-left-color: #767676;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.landing_page .submit-btn {
  width: 100%;
  height: 56px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color:  #e67e22;
  font-size: 18px;
  font-weight: 600;
  color: white;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: #146132;
  border-right-color: #146132;
  border-bottom-color: #146132;
  border-left-color: #146132;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
}

.landing_page .submit-btn:hover{

  background-color: rgba(11, 172, 14, 0.62);
  color: rgb(212, 191, 0);
}
.landing_page .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-6.wk-ipadp-6.emial {
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.landing_page .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6.right-one {
  display: flex;
  justify-content: center;
}

.landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
}

.landing_page .text-blk.section-subhead {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  max-width: 420px;
  font-size: 18px;
  color: #b6b6b6;
}

.landing_page .text-blk.section-head {
  font-size: 40px;
  line-height: 55px;
  font-weight: 800;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  max-width: 450px;
}

.landing_page .icons-container {
  max-width: 450px;
  display: flex;
  justify-content: space-evenly;
}

.landing_page .img {
  width: 31px;
  height: 31px;
}

.landing_page .responsive-container-block.big-container {
  background-color: #030f27;
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
  position: relative;
}

.landing_page .bg-img {
  width: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
}

@media (max-width: 768px) {
  .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
    justify-content: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .landing_page .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-6.wk-ipadp-6.emial {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
    margin: 0 0 40px 0;
  }
}

@media (max-width: 500px) {
  .landing_page .text-blk.section-head {
    font-size: 26px;
    line-height: 40px;
  }

  .landing_page .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }

  .landing_page .text-blk.section-subhead {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
    font-size: 16px;
  }

  .landing_page .form-box {
    padding-top: 30px;
    padding-right: 15px;
    padding-bottom: 30px;
    padding-left: 15px;
  }

  .landing_page .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.left-one {
    margin: 0 0 30px 0;
  }

  .landing_page .input {
    height: 45px;
  }

  .landing_page .text-blk.contactus-head {
    font-size: 24px;
    line-height: 34px;
  }
}



/*responsive  form */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}




/* General footer styles */
.footer {
  position: relative;
  margin-top: 45px;
  padding-top: 90px;
  background: #030f27;
  color: #ffffff;
  padding: 20px;
  margin: 0px;
  text-align: center;
  
}

.f-menu .footer-link .footer-contact
{
  padding: 30px;
  margin: 40px;


}
.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
  position: relative;
  margin-bottom: 45px;
  justify-content: center;
  display: inline-block; /* Makes the list items appear in one line */
  margin-right: 20px;

  
}

.footer h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #fdbe33;
}

.footer h2::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #fdbe33;
}

/* Footer links */
.footer .footer-link  a {
  display: flex; /* Align list items horizontally */
      padding: 5px;
      list-style-type: none;
  margin-bottom: 10px;
  color: #ffffff;
  transition: .3s;
}

.footer .footer-link a::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .footer-link a:hover {
  color: #fdbe33;
  letter-spacing: 1px;
}

/* Contact icons */
.footer .footer-contact p i {
  width: 25px;
}

.footer .footer-social {
  position: relative;
  margin-top: 20px;
}

.footer .footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 7px 0;
  text-align: center;
  border: 1px solid rgba(256, 256, 256, .3);
  border-radius: 60px;
  transition: .3s;
  border-color:#fdbe33;

}

.footer .footer-social a i {
  font-size: 15px;
  color: #fdbe33;

}

.footer .footer-social a:hover {
  background: #fdbe33;
  border-color: #fdbe33;

}

.footer .footer-social a:hover i {
  color: #030f27;
}

/* Newsletter styles */
.footer .newsletter .form {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.footer .newsletter input {
  height: 50px;
  border: 2px solid #121518;
  border-radius: 0;
}

.footer .newsletter .btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 40px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fdbe33;
  background: #121518;
  border-radius: 0;
  border: 2px solid #fdbe33;
  transition: .3s;
}

.footer .newsletter .btn:hover {
  color: #121518;
  background: #fdbe33;
}

/* Footer menu */
.footer .footer-menu .f-menu {
  position: relative;
  padding: 15px 0;
  font-size: 0;
  text-align: center;
  border-top: 1px solid rgba(256, 256, 256, .1);
  border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
  color: #ffffff;
  font-size: 16px;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
  color: #fdbe33;
}

.footer .footer-menu .f-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Copyright section */
.footer .copyright {
  padding: 30px 15px;
}

.footer .copyright p {
  margin: 0;
  color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
  text-align: right;
}

.footer .copyright p a {
  color: #fdbe33;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer .copyright p a:hover {
  color: #ffffff;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
  /* Stack footer items vertically on mobile */
  .footer .row {
      display: block;  /* Stack items vertically */
  }

  .footer .footer-contact,
  .footer .footer-link,
  .footer .newsletter {
      width: 100%;      /* Ensure each section takes up full width */
      margin-bottom: 30px; /* Space between stacked sections */
  }

  /* Center footer social icons */
  .footer .footer-social {
      text-align: center;
  }

  .footer .footer-social a {
      margin: 5px;
  }

  /* Footer menu should stack vertically */
  .footer .footer-menu .f-menu {
      text-align: center;
  }

  .footer .footer-menu .f-menu a {
      display: inline-block;
      margin-bottom: 10px;  /* Space between links */
  }

  .footer .footer-menu .f-menu a:last-child {
      margin-bottom: 0;  /* No margin on last link */
  }

  /* Copyright section: Center the text */
  .footer .copyright p,
  .footer .copyright .col-md-6:last-child p {
      margin: 5px 0;
      text-align: center;
  }
}

/* --- Desktop View (Flex Layout) --- */
/* animation starts here */

