body {
  position: relative;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #171717;
  box-sizing: border-box;
}
.cursor-light {
  position: fixed; 
  width: 200px;
  height: 200px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 236, 253, 0.192) 0%, transparent 70%);
  filter: blur(30px);
  transform: translate(-50%, -50%);
  z-index: 9999;
}
@font-face {
  font-family: mainfont1;
  src: url(NeueLeiden-Regular.otf);
}

h1,h2,h3,h4,h5 {
  font-family: mainfont1;
}
p,a,span ,h6{
  font-family: "DM Sans", sans-serif;
}
.navbar {
  padding: 1.5rem 4.625rem;
  z-index: 9999;
  transition: background-color 0.3s ease, color 0.3s ease;
}


#navbar.navbar-scrolled {
  background-color: #393939 !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.099);
  padding: 1rem 4.625rem .5rem 4.625rem;
  color: #fff;
}

#navbar.navbar-scrolled .nav-link,
#navbar.navbar-scrolled .navbar-brand,
#navbar.navbar-scrolled .navbar-toggler-icon {
  color: #fff;
}

#navbar.navbar-scrolled .nav-button {
  border-color: #B5DBEE;
}

#navbar.navbar-scrolled .nav-button::before,
#navbar.navbar-scrolled .nav-button::after {
  background: #B5DBEE;
  color: #000;
}

#navbar.navbar-scrolled .nav-button span {
  color: #B5DBEE;
}

#navbar.navbar-scrolled .nav-button:hover span {
  color: #ffffff;
}

#navbar.navbar-scrolled .nav-button:hover span {
  color: #1c2833;
  transition: 0.3s;
}
#navbar.navbar-scrolled .navbar-toggler {
  border-color: #B5DBEE;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar .navbar-brand {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.navbar-nav .nav-link {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  margin-right: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.navbar-nav .nav-link:hover {
  color: #dcdcdc;
}

.navbar-nav .dropdown {
  position: relative;
}

.dropdown-menu {
  height: auto;
  overflow-y: scroll;
  padding: 2rem 3rem;
  background-color: transparent;
  border: none;
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -15px); 
  z-index: 1000;
  transition: 
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0.3s;
  pointer-events: none;
  /* top: 100%; */
}

.navbar-nav .dropdown:hover .dropdown-menu:not(.mobile-open),
.dropdown-toggle:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* Reverse the fadeIn animation */
.dropdown-menu .row {
  background-color: #393939;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 30px;
  border-radius: 5px;
  animation: fadeInDown 0.3s ease-out forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px); 
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-nav .dropdown {
  transition: all 0.3s ease;
}
.dropdown-menu::-webkit-scrollbar {
  display: none;
}

.dropdown-menu ul {
  list-style: none;
  padding-left: 0;
  padding-top: 20px;
  margin: 0;

}

.dropdown-menu ul li {
  position: relative;
  margin-bottom: 3px;
}

.dropdown-menu ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.dropdown-menu h6 {
  color: #fff;
  margin-bottom: 10px;
}

.dropdown-menu ul li a {
  font-size: 14px;
  color: #fff;
  white-space: wrap;
  text-decoration: none;
  padding-left: 5px !important;
}

.nav-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  height: 40px;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in;
  z-index: 1;
  background: transparent;
  text-decoration: none;
  padding: 0 24px;
  font-weight: 500;
  white-space: nowrap;
  width: fit-content;
}

.nav-button::before,
.nav-button::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: all 0.5s;
  z-index: -1;
}

.nav-button::before {
  left: -10px;
  background: #B5DBEE;
}

.nav-button::after {
  right: -10px;
  background: #B5DBEE;
}

.nav-button:hover::before,
.nav-button:hover::after {
  width: 60%;
}

.nav-button span {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease-in;
}

.nav-button:hover span {
  color: #1c2833;
  transition: 0.3s;
}



/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 100%;
  background-color: #393939;
  transition: left 0.3s ease;
  z-index: 1050;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .nav-link {
  font-size: 2rem;
  padding: 10px 0;
}
.mobile-menu h4 {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 2px;
}


.nav-button1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  height: 50px;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in;
  z-index: 1;
  background: transparent;
  text-decoration: none;
  padding: 0 24px;
  font-weight: 500;
  white-space: nowrap;
  width: fit-content;
}

.nav-button1::before,
.nav-button1::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: all 0.5s;
  z-index: -1;
}

.nav-button1::before {
  left: -10px;
  background: #B5DBEE;
}

.nav-button1::after {
  right: -10px;
  background: #B5DBEE;
}

.nav-button1:hover::before,
.nav-button1:hover::after {
  width: 60%;
}

.nav-button1 span {
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s ease-in;
}

.nav-button1:hover span {
  color: #fff;
  transition: 0.3s;
}
.mobile-menu-header{
  background-color: #171717;
  padding: 24px;
}
.dropdown-slide {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  background-color: #fff;
  padding: 24px;
  z-index: 1060;
  transition: right 0.3s ease;
}

.dropdown-slide.open {
  right: 0;
}


.dropdown-slide h5 {
  color: #212121;
  font-size: 1.7rem;
  letter-spacing: 1.5px;
}
.dropdown-slide h6 {
  color: #212121;
  margin-top: 20px;
  font-size: 1.5rem;
}

.dropdown-slide .dropdown-item {
  color: #212121;
  padding: 6px 0;
  font-size: 1.3rem;
  white-space: wrap;

}

.dropdown-slide .dropdown-item:hover {
  text-decoration: underline;
}

/* Button and Header Styling */
.btn-close-white {
  filter: invert(1);
  font-size: 1.5rem;
}
.btn-close-black {
  font-size: 1.5rem;
}


.navbar-toggler {
  border: none;
}

@media (min-width: 991.98px) {
  .dropdown-slide {
    display: none !important;
  }

  
}

@media (max-width: 991.98px) {
  .mobile-dropdown-menu {
    display: none !important;
  }

  .dropdown:hover .mobile-dropdown-menu {
    display: none !important;
  }
  #navbar.navbar-scrolled {
    padding: 1rem 3.75rem .5rem 3.75rem;
  }
}
@media (max-width: 450.98px) {
  .navbar {
    padding: 1rem 1.75rem;
  }
  #navbar.navbar-scrolled {
    padding: 1rem 1.75rem .5rem 1.75rem;
  }
}



/*  hero section  */
.hero-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100vh;
  background-color: #171717;
  color: #fff;
}

.hero-content {
  z-index: 3;
}
.hero-content1{
  z-index: 3;
  padding: 0 4.625rem;
}
.hero-content1 h1{
  font-size: 4.25rem;
  font-weight: 200;
}
.hero-content1 p {
  font-size: 1.463rem;
  font-weight: 400;
}
.hero-section p {
  font-size: 1.563rem;
  font-weight: 400;
}
.hero-section h1{
  font-size: 4.25rem;
  font-weight: 300;
}

.hero-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  height: 40px;
  border: 1px solid #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in;
  z-index: 1;
  background: transparent;
  text-decoration: none;
  padding: 0 24px;
  font-weight: 500;
  white-space: nowrap;
  width: fit-content;
}

.hero-button::before,
.hero-button::after {
  content: '';
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  transform: skew(15deg);
  transition: all 0.5s;
  z-index: -1;
}

.hero-button::before {
  left: -10px;
  background: #B5DBEE;
}

.hero-button::after {
  right: -10px;
  background: #B5DBEE;
}

.hero-button:hover::before,
.hero-button:hover::after {
  width: 60%;
}

.hero-button span {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease-in;
}

.hero-button:hover span {
  color: #1c2833;
  transition: 0.3s;
}

.glow-bg {
  position: absolute;
  width: 200%;
  height: 300px;
  bottom: 0;
  left: -50%;
  background: radial-gradient(circle at center, #58B2D8 0%, transparent 70%);
  filter: blur(110px);
  z-index: 0;
  pointer-events: none;
}
/* Animated circle outlines */
.circle-background {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.circle-outline {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.123);
  animation: floatY 6s ease-in-out infinite;
}
.solid-circle {
  position: absolute;
  bottom: -35%;
  left: -5%;
  /* transform: translateX(-50%); */
  width: 110%;
  height: 450px;
  background: #171717;
  border-radius: 50%;
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;

}

.circle-outline.one {
  left: -72%;
  animation-delay: 0s;
  width: 130%;
  border-radius: 50%;
  height: 500px;
  bottom: -20%;

}

.circle-outline.two {
  width: 130%;
  height: 500px;
  border-radius: 50%;
  left: -10%;
  bottom: -29%;
  animation-delay: 2s;
}

.circle-outline.three {
  width: 130%;
  height: 500px;
  border-radius: 50%;
  bottom: -25%;
  right: -70%;
  animation-delay: 4s;
}

/* Animation keyframes */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768.98px){
  .hero-section p {
    font-size: 1.563rem;
  }
  .hero-section h1{
    font-size: 3.25rem;
  }
  .hero-content1{
    padding:0 2rem ;
  }
}
@media (max-width: 450.98px){
  .hero-section p {
    font-size: 1.163rem;
  }
  .hero-section h1{
    font-size: 2.25rem;
  }
  .hero-button span {
    font-size: 1rem;
  }
   .hero-content1{
    padding:0 1.6rem ;
  }
}

/* section-1 styles */
.section-1 {
  position: relative;
  background: #171717;
  color: #fff;
  overflow: hidden;
}

.section-1::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('image/rectangle.png') no-repeat left center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.section-1 > * {
  position: relative;
  z-index: 1; /* Keeps content above the image */
}
.section-1 h2 {
  font-size: 3.125rem; 
  font-weight: 700;
}
.section-1 p {
  font-size: 1rem;
  font-weight: 400;
}
.stats-section {
  gap: 2rem;
}

.stat-box h2 {
  font-size: 4.375rem;
  color: #fff;
}

.stat-box .unit {
  color: #A0C1D1; /* Light blue tint */
  font-weight: bold;
}

.stat-box p {
  margin-top: 10px;
  color: #ccc;
}

@media (max-width: 768.98px){
  .section-1{
    padding:0 2rem ;
  }
  .section-1 h2 {
    font-size: 2.7rem; 
    font-weight: 700;
  }
  .section-1 p {
    font-size: 1rem;
    font-weight: 400;
  } 
}
@media (max-width: 450.98px){
 
  .section-1 h2 {
    font-size: 1.5rem; 
    font-weight: 700;
  }
  .section-1 p {
    font-size: .8rem;
    font-weight: 400;
  } 
}
/* section-2 styles */

.section-2 {
  color: #fff;
  padding: 0rem 4.625rem;
  margin:100px 0px;
}
.section-2 h2 {
  font-size: 3.125rem; 
  font-weight: 700;
}
.section-2 p {
  font-size: 1rem;
  font-weight: 400;
}

.video-box{
  width: 100%;
  height: 70vh;
  object-fit: fill;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 80px;
}
.video-box video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768.98px){
  .section-2{
    padding:0 2rem ;
  }
  .section-2 h2 {
    font-size: 2.7rem; 
    font-weight: 700;
  }
  .section-2 p {
    font-size: 1rem;
    font-weight: 400;
  } 
}
@media (max-width: 450.98px){
  .section-2{
    margin: 50px 0px;
  }
 
  .section-2 h2 {
    font-size: 1.6rem; 
    font-weight: 700;
  }
  .section-2 p {
    font-size: .8rem;
    font-weight: 400;
  } 
  .video-box{
    margin-top: 40px;
    height: 30vh;
  }
}

/* section-3 styles */
.section-3 {
  padding:100px 4.625rem;
  margin:100px 0px;
  color: #1E1E1E;
  background-color: #dff1ff;
}
.section-3 h2 {
  font-size: 3.125rem; 
  font-weight: 700;
}
.section-3 p {
  font-size: 1rem;
  font-weight: 400;
}


.service-card {
  position: relative;
  background: #7596b2;
  backdrop-filter: blur(10px);
  overflow: hidden;
  color: white;
  cursor: pointer;
  width: 100%;
  height: 350px;
}

.image-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
 
}
.image-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.189), rgba(0, 0, 0, 0.469));
  z-index: 1;
}

.image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .image-layer img {
  transform: scale(1.2);
}



.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem 1rem;
  color: #fff;
  width: 100%;
  white-space: normal; 
  word-wrap: break-word;
  box-sizing: border-box;
  z-index: 3;
}
.overlay-text h5{
  font-size: 1.5rem;
}


.parent {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 5px;
  padding: 50px 0px;
}

.div1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.div2 {
  grid-column: 3 / 6;
  grid-row: 1 / 3;
}

.div3 {
  grid-column: 6 / 10;
  grid-row: 1 / 3;
}

.div4 {
  grid-column: 1 / 4;
  grid-row: 3 / 5;
}

.div5 {
  grid-column: 4 / 8;
  grid-row: 3 / 5;
}

.div6 {
  grid-column: 8 / 10;
  grid-row: 3 / 5;
}

.div7 {
  grid-column: 1 / 6;
  grid-row: 5 / 7;
}

.div8 {
  grid-column: 6 / 10;
  grid-row: 5 / 7;
}

@media (max-width: 1024.98px){
    
.parent {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 5px;
  padding: 30px 0px;
}

.div1 {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.div2 {
  grid-column: 5 / 10;
  grid-row: 1 / 3;
}

.div3 {
  grid-column: 1 / 6;
  grid-row: 3 / 5;
}

.div4 {
   grid-column: 6 / 10;
  grid-row: 3 / 5;
}

.div5 {
  grid-column: 1 / 5;
  grid-row: 5 / 7;
}

.div6 {
  grid-column: 5 / 10;
  grid-row: 5 / 7;
}

.div7 {
  grid-column: 1 / 6;
  grid-row: 7 / 9;
}

.div8 {
  grid-column: 6 / 10;
  grid-row: 7 / 9;
}
}
@media (max-width: 768.98px){
  .section-3{
    padding:100px 2rem ;
  }
  .service-section{
    padding:100px 2rem 
    !important ;
  }
  .section-3 h2 {
    font-size: 2.7rem; 
    font-weight: 700;
  }
  .section-3 p {
    font-size: 1rem;
    font-weight: 400;
  } 
}
@media (max-width: 450.98px){
  .section-3 {
    padding: 50px 2rem;
  }
  .service-section {
    padding: 50px 2rem !important;
  }
  .section-3 h2 {
    font-size: 1.6rem; 
    font-weight: 700;
  }
  .section-3 p {
    font-size: .8rem;
    font-weight: 400;
  }
  .overlay-text{
    padding: .6rem;
  }

  .service-content .hero-button {
    padding: 0 12px;
  }
 .parent {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }

.div1 {
  grid-column: 1/-1  !important;
  grid-row: auto !important;
}

.div2 {
  grid-column: 1/-1  !important;
  grid-row: auto !important;
}

.div3 {
  grid-column: 1/-1  !important;
  grid-row: auto !important;
}

.div4 {
  grid-column: 1/-1  !important;
  grid-row: auto !important;
}

.div5 {
  grid-column: 1/-1  !important;
  grid-row: auto !important;
}

.div6 {
 grid-column: 1/-1  !important;
 grid-row: auto !important;
}

.div7 {
  grid-column: 1/-1  !important;
  grid-row: auto !important;
}

.div8 {
  grid-column: 1/-1  !important;
  grid-row: auto !important;
}
}

/* section-4 styles */

.section-4 {
  padding:0 4.625rem;
  margin:100px 0px;
  color: #fff;
}

.section-4 h2 {
  font-size: 3.125rem;
  font-weight: 600;
}


.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cccccc50;
  padding: 20px 0px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.item h4 {
  font-size: 3.125rem;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.list .item h4{
  font-size: 2rem;
}
.list h3{
  font-size: 2.5rem;
}
.list .number{
  font-size: 1.1rem;
}
.list p{
  font-size: 1.2rem;
}
.list .desc p{
  font-size: 1rem;
}
.list .desc {
    max-width: 600px;

}

.number {
  display: inline-block;
  border: 1px solid #373737;
  border-radius: 20px;
  padding: 4px 10px;
  margin-right: 40px;
  font-weight: bold;
  font-size: 1.563rem;
  font-weight: 400;
  color: #373737;
}

.desc {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  max-width: 500px;
  text-align: left;
  pointer-events: none;
}
.desc p{
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
}

.item:hover .desc {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .section-4 h2 {
    font-size: 2.7rem;
    font-weight: 600;
  }
  .item h4 {
    font-size: 2.125rem;
    
  }
  .list .desc {
    max-width: 500px;
  }
  .desc p{
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .number {
    margin-right: 15px;
    font-size: 1.263rem;
  }
}
@media (max-width: 768px) {
  .section-4{
    padding: 0 2rem;
  }
  .section-4 h2 {
    font-size: 2.3rem;
    font-weight: 600;
  }
  .item h4 {
    font-size: 2.125rem;
    
  }
  .desc p{
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .number {
    margin-right: 15px;
    font-size: 1.263rem;
  }
  .item {
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    padding-bottom: 10px;
  }

  .desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin-top: 10px;
    max-width: 100%;
  }
.list .desc {
    max-width: 100%;
}
  .item:hover .desc {
    opacity: 0; /* disable hover on mobile */
    pointer-events: none;
  }

  .item.active .desc {
    opacity: 1;
    max-height: 200px; /* adjust as needed */
    pointer-events: auto;
  }
 
}
@media (max-width: 450px) {
 
  .section-4 h2 {
    font-size: 1.7rem;
  }
  .item h4 {
    font-size: 1.5rem;
  }
 .list .item h4 {
    font-size: 1.5rem;
  }
  .desc p{
    font-size: 1rem;
  }
  .number {
    font-size: 1rem;
  }
  .item {
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    padding-bottom: 10px;
  }

  .desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin-top: 10px;
    max-width: 100%;
  }

  .item:hover .desc {
    opacity: 0; /* disable hover on mobile */
    pointer-events: none;
  }

  .item.active .desc {
    opacity: 1;
    max-height: 200px; /* adjust as needed */
    pointer-events: auto;
  }
 
}


/* section-5 */

.section-5{
  color: #fff;
  padding:6.25rem 4.625rem;
  margin:100px 0px;
  background-color: #000;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.service-section-5{
  color: #fff;
  padding:6.25rem 4.625rem;
  margin:100px 0 0 0px;
  background-color: #000;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
.testimonial h1 {
  font-size: 2.5rem;
  font-weight: 600;
}
.testimonial-text {
  font-size: 1.125rem;
  font-weight: 400;
}
.client-name {
  font-size: 1.563rem;
  font-weight: 700;
}
.client-title {
  font-size: 1rem;
  font-weight: 400;
  color: #92A6B0;
}

.testimonial img {
  width: 80px;
  border-radius: 50%;
}

.testimonial h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.form-control-1{
  background-color: #1E1E1E;
  border: none;
  padding: 15px;
  color: #fff !important;
  font-size: 20px;
  font-weight: 600;
  border-radius: 5px;
}
.select2-container--default .select2-selection--single {
  background-color: #1E1E1E !important;
  border: none !important;
  padding: 15px !important;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  border-radius: 5px !important;
  height: 55px !important;
  display: flex !important;
  align-items: center !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
  line-height: normal !important;
  padding-left: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100% !important;
  right: 10px !important;
}

.select2-container--default .select2-dropdown {
  background-color: #1E1E1E !important;
  border: none !important;
}

.select2-container--default .select2-results > .select2-results__options {
  background-color: #1E1E1E !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}
.select2-container--default .select2-results > .select2-results__options {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  border: 1px solid #fff;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  display: none;
}

/* HOVER OPTION */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #333 !important;
  color: #fff !important;
}

/* SELECTED OPTION IN DROPDOWN */
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #2a2a2a !important;
  color: #fff !important;
}



.form-control1{
  height: 250px;
}
select.form-select {
  background-size: 1rem;
}

.form-control-1::placeholder {
  color: #fff; 
}

@media (max-width: 768px) {
  .section-5 {
    padding:6.25rem 2rem;
  }
  .service-section-5 {
    padding:6.25rem 2rem;
  }
  

}
@media (max-width: 450px) {
  .testimonial h1 {
    font-size: 1.5rem;
  }
  .testimonial-text {
    font-size: .9rem;
  }
  .client-name {
    font-size: 1.163rem;
  }
  .client-title {
    font-size: .8rem;
  }
  .testimonial img {
    width: 60px;
  }
  .testimonial h2 {
    font-size: 1.5rem;
  }
  .form-control, .form-select {
    font-size: .9rem;
  }
}


/* section-6 */

.section-6 {
  color: #fff;
  padding: 0 4.625rem;
}

.section-6 h2 {
  font-size: 3.125rem;
  font-weight: 200;
}

.partner-section p {
  font-size: 1.225rem;
  font-weight: 300;
}

:root {
  --item-width: 120px;
  --item-gap: 50px;
  --items-count: 10;
  --scroll-width: calc((var(--item-width) + var(--item-gap)) * var(--items-count));
  --animation-duration: 30s;
}

.section-6 .slider-container {
  overflow: hidden;
  position: relative;
  padding: 30px 0;
  margin-top: 30px;
}

.section-6 .slider-container .slider-track {
  display: flex;
  width: calc(var(--scroll-width) * 2);
  animation: scroll var(--animation-duration) linear infinite;
}

.section-6 .slider-container .slider-item {
  margin-right: var(--item-gap);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, filter 0.3s ease;
  padding: 20px;
}

.section-6 .slider-container .slider-item img {
  width: 100%;
  height: 40px;
}

.section-6 .slider-container .slider-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--scroll-width)));
  }
}

.slider-container:hover .slider-track {
  animation-play-state: paused;
}

.slider-container::before,
.slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.slider-container::before {
  left: 0;
}

.slider-container::after {
  right: 0;
}
@media (max-width: 768px) {

 .section-6{
    padding: 0 2rem;
  }
  .section-6 h2 {
    font-size: 2.3rem;
    font-weight: 600;
  }
}
/* footer */

.footer{
  background-color: #000;
}
.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #fafeff96;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer .social a i {
  color: #f1f1f1;
}

.social a{
  font-size: 30px;
}




/* service-page-style */

.service-section{
  padding: 0 4.625rem;
  position: relative;
  background: #171717;
  color: #fff;
  overflow: hidden;
}
.service-section h2 {
  font-size: 3.125rem; 
  font-weight: 700;
}
.service-section p {
  font-size: 1.2rem;
  font-weight: 400;
}
/* service-lit-style */

.service-list{
  color: #fff;
  padding:8.625rem 4.625rem 0 4.625rem ;
}
.service-list h1{
  font-size: 3.438rem;
  font-weight: 400;
}
.service-list p{
  font-size: 1.2rem;
  font-weight: 400;
}
.list-img{
  width: 85%;
  height: 80vh;
  overflow: hidden;
}
.list-img1{
  width: 100%;
  height: 50vh;
  overflow: hidden;
  padding: 30px 0;
}
.list-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-img1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-section{
  color: #fff;
  padding: 0 4.625rem ;
  margin-top: 100px;
}
.detail-section h2{
  font-size: 3.438rem;
  font-weight: 400;
}
.detail-section h3{
  font-size: 2.438rem;
  font-weight: 400;
  margin-top: 20px;
}
.detail-section p{
  font-size: 1.2rem;
  font-weight: 400;
}

.contact-section{
  background-color: transparent;
  margin-top: 0;
}

/* value-section */
.value-section{
  color: #fff;
  padding: 0 4.625rem ;
  margin-top: 100px;
}
.value-section h2{
  font-size: 3.438rem;
  font-weight: 400;
}
.value-section p{
  font-size: 1.2rem;
  font-weight: 400;
}
.value-box {
  text-align: left;
  padding: 20px;
  transition: box-shadow 0.3s ease;
  border-radius: 8px;
}

.value-box:hover {
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}
.value-box img {
  width: 40px;
  margin-bottom: 10px;
  filter: invert(1);
}

.value-box h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 5px;
}

.value-box p {
  color: #666;
  margin: 0;
}

@media (max-width: 1024px) {
   .list-img{
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
}
@media (max-width: 768px) {

  .footer .d-flex input,
  .footer .d-flex a {
    width: 100%;
    margin-bottom: 0.75rem;
  }
  .service-list{
    padding:8.625rem 2rem 0 2rem ;
  }
  .value-section{
    padding: 0 2rem ;
    margin-top: 100px;
  }
  .detail-section{
    padding: 0 2rem ;
    margin-top: 100px;
  }
  .detail-section h2{
    font-size: 3.138rem;
    font-weight: 400;
  }
  .list-img{
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
}
@media (max-width: 450px) {
   .list-img{
    width: 100%;
    height: 40vh;
    overflow: hidden;
  }
  .value-section h2 {
    font-size: 2.3rem;
  }
  .value-section p {
    font-size: 1.1rem;
  }
  .service-list h1{
    font-size: 2.2rem;
  }
  .service-list p{
    font-size: 1.1rem;
  }
  .detail-section h2{
    font-size: 2rem;
  }
  .detail-section p{
    font-size: 1rem;
  }
}
