* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background: #ffffff;
  font-size: 15px;
  overflow-x: hidden;
  font-family: 'Poppins', 'MyWebFont', sans-serif; /* Apply Google Fonts and custom fonts */
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/*scroll to top*/
.top {
  border-radius: 10%;
  background-color: rgba(0, 0, 0, 0.7); 
  width: 3rem;
  text-align: center;
  height: 3rem;
  position: fixed;
  bottom: 6em;
  right: 2em;
  cursor: pointer;
  background-repeat: no-repeat;
  z-index: 5;
   transition: opacity 0.3s ease; /* Smooth transition for opacity */
}

.top img {
  margin-top: 12px;
  height: 25px;
}

/*scroll to top*/


/* Scroll Indicator */
.side-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 9;
    width: 32px;
    height: 200px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
}

.side-nav-link {
    width: 13px;
    height: 13px;
    background-color: rgba(226, 213, 213, 0.89);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin: 6px 0;
    transition: transform 0.3s, box-shadow 0.4s, border-color 0.4s, height 0.4s, width 0.4s, background-color 0.4s;
    display: flex;
    position: relative;
    color:#000;
}

.side-nav-link:hover {
    transform: scale(1.25);
    background-color: rgba(226, 213, 213, 1);
}

.side-nav-tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    margin-right: 8px;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 11px;
    line-height: 16px;
    display: none;
}

.side-nav-link.active1 .side-nav-tooltip,
.side-nav-link:hover .side-nav-tooltip {
    display: block;
    opacity: 1;
}

.side-nav-link.active1 {
    background: #fff !important;
    border: 4px solid #000;
}

.side-nav-text {
    font-size: 20px;
    font-family: Lato, sans-serif;
    display: none;
}

.side-nav-link.active1 .side-nav-text {
        display: inline-block;
    margin-left: 10px;
    font-weight: 500;
    color: #000;
}

@media(max-width: 767px) {
    .side-nav {
        display: none;
    }
}


/* scroll indicator */




/* nav */

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #ffce18 !important;
}

p{
      line-height: 1.4;
}

@media (max-width: 767px) {
  .nav-logo,
  .logo-scrolled {
    width: 120px !important;
  }
  
}
@media (max-width: 991px) {
  .navbar-nav {
    height: 100vh;
    text-align: center;
    font-size: 20px;
    align-items: center;
    margin-top: 10px;
    font-weight: 400;
  }
  body {
  font-size: 14px;

}
}
/* nav-link hover */
.nav-link {
  color: #000 !important;
  /* font-weight: lighter; */
}

.nav-link.active {
  color: #ffce18;
  font-weight: bold;
}
.nav-link {
  position: relative;
  display: inline-block;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 3px;
  bottom: 2px;
  left: 0;
  background-color: #ffce18;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #ffce18 !important;
}
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
@media (min-width: 992px) {
  .nav-item {
    padding-right: 1.5em;
  }
}
/* toggle button css */
.generic-hamburger {
  outline: none;
  background-color: transparent;
  width: 1.5em;
  height: 1.1em;
  position: relative;
  border: none;
  font-size: 25px;
}
.generic-hamburger {
  background: transparent !important;
}
.generic-hamburger__checkbox:checked ~ .generic-hamburger__bar:nth-of-type(1),
.generic-hamburger__checkbox:checked ~ .generic-hamburger__bar:nth-of-type(3) {
  transform: translateY(-50%);
  top: 50%;
}

.generic-hamburger__checkbox:checked ~ .generic-hamburger__bar:nth-of-type(1) {
  transform: rotate(45deg);
}

.generic-hamburger__checkbox:checked ~ .generic-hamburger__bar:nth-of-type(2) {
  opacity: 0;
}

.generic-hamburger__checkbox:checked ~ .generic-hamburger__bar:nth-of-type(3) {
  transform: rotate(-45deg);
}

.generic-hamburger__bar {
  background-color: #ffce18;
  width: 85%;
  left: 0;
  transform-origin: center;
  height: 3px;
  position: absolute;
  border-radius: 8px;
  transition: all 0.3s;
}
.bar1 {
  color: #000;
}
.generic-hamburger__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.generic-hamburger__bar:nth-of-type(1) {
  top: 1px;
}

.generic-hamburger__bar:nth-of-type(2) {
  top: calc(50% - (8px / 2));
}

.generic-hamburger__bar:nth-of-type(3) {
  top: calc(100% - 9px);
}

.carouselslide {
  position: relative;
}
.brands {
  display: flex;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  justify-content: space-around;
}
.trans:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}
.font-weight-bold {
  font-weight: bold;
}
/* toggle button css */
.navbar1 {
  transition: background-color 0.5s, color 0.5s;
}
.navbar1 .nav-link {
  color: black; /* Initial link color */
  transition: color 0.5s;
}
.navbar1.scrolled {
  background-color: rgb(33, 37, 41); /* Background color on scroll */
}
.navbar1.scrolled .nav-link {
  color: white !important; /* Link color on scroll */
}
/* logo scroll */
.navbar1.scrolled .nav-logo {
  display: none; /* Hide default logo on scroll */
}
.navbar1.scrolled .logo-scrolled {
  display: block; /* Show scroll logo on scroll */
  /*width: 180px;*/
}
.nav-logo {
  display: block; /* Show default logo initially */
}
.logo-scrolled {
  display: none; /* Hide scroll logo initially */
}
/* nav */
/* banner slider */
/*.slider-container {*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  width: 100%;*/
/*  padding: 10px 0;*/
/*  background-color: rgba(0, 0, 0, 0.7);*/
/*  border-top: 2px solid #fff;*/
/*}*/

/* banner video */

.full-screen-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.full-screen-video-container video {
  width: 100%;
  height: 100%;
}

/*.slider-container {*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
  /*z-index: 2; */
/*  width: 100%;*/
  /* height: 100%; */
/*}*/

.client-slider {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ensure slider fits within container */
}

/* banner video */
.client-slider {
  position: relative;
  overflow: visible;
  transition: transform 0.5s ease-in-out; /* Smooth transition for scaling */
  cursor: pointer;
}

.client-slider img {
  transition: transform 0.5s ease-in-out; /* Apply transition to the image */
}
.owl-theme .owl-nav [class*=owl-]:hover{
  background: unset!important;
}
.client-slider img:hover {
  transform: scale(1.05); /* Scale up the image on hover */
}

.client-slider img {
  margin: auto;
  max-width: 100%;
}
/* .slick-slider img{
    width: 300px!important;
  } */
@media (min-width: 401px) and (max-width: 767px) {
  .client-slider img {
    max-width: 100px;
  }
}
@media (min-width: 376px) and (max-width:400px) {
  .client-slider img {
    max-width: 90px;
  }
}
@media (max-width: 375px) {
  .client-slider img {
    max-width: 80px;
  }
}
/* banner slider */
/* about */
.item img{
  object-fit: cover;
}
.slide-caption{
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 20px;
  transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  cursor: pointer;
}
.slide-caption:hover{
 color: #ffce18;

}

.shadow-effect {
  border-radius: 0.8rem;
  text-align: center;
  border: 1px solid #ececec;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
  height: 500px;
  background-position: center;
  position: relative;
  background-size: cover;
  margin: 0 auto;
}

#slider .item {
  text-align: center;
  opacity: 0.5;
  transform: scale(0.6);
  transition: all 0.3s ease-in-out;
}

#slider .owl-item.active.center .item {
  opacity: 1;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
}

.fa-angle-left,
.fa-angle-right {
  color: #ffce18;
  font-size: 2rem;
  /* background: #06d6a0; */
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1000;
}

.fa-angle-left {
  left: -40px; /* Adjust the position */
}

.fa-angle-right {
  right: -40px; /* Adjust the position */
}

/* .fa-angle-left:hover,
.fa-angle-right:hover {
    background: #ffd70d;
    color: #fff;
} */

#slider.owl-carousel .owl-dots .owl-dot.active span,
#slider.owl-carousel .owl-dots .owl-dot:hover span {
  background: #ffce18;
  transform: translateY(-50%) scale(0.7);
  -webkit-transform: translateY(-50%) scale(0.7);
  -moz-transform: translateY(-50%) scale(0.7);
  -ms-transform: translateY(-50%) scale(0.7);
  -o-transform: translateY(-50%) scale(0.7);
}

#slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 1rem;
}

#slider.owl-carousel .owl-dots .owl-dot span {
  background: #ffce18;
  display: inline-block;
  height: 20px;
  margin: 0 2px;
  transform: scale(0.3);
  transition: all 250ms ease-out;
  width: 20px;
  border-radius: 50%;
}
.owl-carousel .owl-item img {
  height: 550px;
  border-radius: 10px;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .shadow-effect {
    height: 300px;
    width: 100%;
  }
  .owl-carousel .owl-item img {
    height: 400px;
  }

  #slider .item {
    transform: scale(0.8);
  }

  .fa-angle-left,
  .fa-angle-right {
    font-size: 1.5rem;
    width: 1rem;
    height: 2.5rem;
  }
}

/* about */


/* core team */

#our-team {

  background: linear-gradient(to bottom, #ffce18 60%, transparent 40%);

}
@media (max-width: 767px) {
  #our-team {
    background: #ffffff;

  }
}

#our-team-header {
  text-align: center;
}

#our-team-header h2 {
  color: #000; 
}

#our-team-header h3 {
  color: #000; 
}


.card1 {
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  background-color: #ffffff; 
  border-radius: 0.5rem; 
  margin-bottom: 3rem; 
  cursor: pointer;
  position: relative; 
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.card1:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  transform: translateY(-10px);
}

.card-body1 {
  transition: background-color 0.3s ease, outline 0.3s ease;
  background-color: #ffffff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.card1:hover .card-body1 {
  background-color: #ffce18;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.card-body1 {
  padding: 10px 17px;
  transition: 0.3s ease-in;
}

.card-title {
  color: #000;
  font-weight: bold;
  font-size: 16px;
}

.card-text1 {
  color: #495057;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 767.5px) {
  .card-text1 {
    font-size: 0.75rem;
  }
}

/* core team */


/* work */

.carousel-item img {
  max-height: 500px;
  object-fit: cover;
}

.modal-header {
  border-bottom: unset !important;
}

.modal-content {
  background-color: transparent !important;

  border: none !important;
}

/* arrows */
.arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.5s;
}

.arrow-left {
  bottom: 2em;
  left: -2em;
}

.arrow-right {
  transform: rotate(180deg);
  bottom: 2em;
  right: -2em;
}

#arrow1 {
  transform: rotate(-180deg);
  margin-top: -3px;
}

.arrow:after {
  position: absolute;
  display: block;
  content: "";
  width: 13px;
  height: 15px;
  border-bottom: solid 2px grey;
  top: -1px;
  left: 8px;
  transform: translateX(4px);
  transition: border-color 0.3s;
}

.arrow:before {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2px grey;
  border-left: solid 2px grey;
  top: 44%;
  left: 10px;
  transform-origin: 0% 0%;
  transform: rotateZ(-45deg);
  transition: border-color 0.3s;
}

.arrow:hover:after {
  border-color: #000;

}

.arrow:hover:before {
  border-color: #000;
}

/* arrows */

/* text hover overlay */
.image_box {
  position: relative;
  overflow: hidden;
}

.overlay-hover {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: #ffce18;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.5s ease;
}

.text-hover {
  position: absolute;
  bottom: -50px;
  width: 100%;
  text-align: center;
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: "Mulish", sans-serif;
  opacity: 0;
  transform: translateY(50%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease;
  -ms-transition: opacity 0.5s ease, transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 767px) {
  .text-hover {
    font-size: 16px !important;
    /* Smaller font size for mobile devices */
  }
  .text-color {
    color: #ffce18 !important;
  }
  .modal-content {
    top: 3em;
  }
}

/* pagination */
.pagination {
  text-align: center;
  display: flex;
  justify-content: center;
}

.pagination-btn {
  background-color: #fff;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  color: grey;
}

.pagination-btn.active {
  /* background-color: #333; */
  color: #000;
}
/* hover container */
/*.slider-container1 {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*  margin: auto;*/
/*}*/

.slider {
  display: flex;
}

.slick-slide {
  padding: 0 10px;
  box-sizing: border-box;
}

.hover-card {
  position: relative;
  overflow: hidden;
  border: none;
  background: black;
  transition: background-color 0.5s ease-in;
  z-index: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-radius: 7px;
  cursor: pointer;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
}

.hover-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffce18;
  transform: translateY(100%);
  transition: transform 0.5s ease-in;
  z-index: 1;
}

.hover-card:hover::before {
  transform: translateY(0);
}

.hover-card:hover i.fas.fa-chevron-right {
  background-color: #ffce18;
}

.card-img-top {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  box-sizing: border-box;
  z-index: 10;
  border-radius: 10px;
}
.card-img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.text-content {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  transition: color 0.5s ease;
  z-index: 9999;
}

img.logo {
  width: 30px !important;
}

/* Card text initial color white, turns black on hover */
.hover-card .card-body .card-text {
  color: white;
  transition: color 0.5s ease;
}

.hover-card:hover .card-body .card-text {
  color: black;
}

.slick-prev,
.slick-next {
  font-size: 30px;
  color: black;
  width: 35px;
  height: 35px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-prev::before,
.slick-next::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 10px;
}

.card-body {
  padding: 10px;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.d-flex .card-text {
  flex: 1;
  margin-left: 10px;
  font-size: 14px;
}

i.fas.fa-chevron-right {
  color: #ffffff;
  top: 6px;
  position: absolute;
  right: 0;
}

i.fas.fa-chevron-left {
  color: #ffffff;
  top: 6px;
  position: absolute;
  left: 0;
}
/* pagination */
.pagination {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination .page-item {
  margin: 0 5px;
}

.pagination .page-link {
  display: block;
  padding: 5px 10px;
  border: none;
  color: grey;
  /* Default color for pagination numbers */
  text-decoration: none;
}

.pagination .page-item.active .page-link {
  color: #000;
  font-weight: 700;
  /* Color for the active pagination number */
  background-color: unset !important;
}

.page-link:hover {
  background-color: unset !important;
}

.page-link:focus {
  color: unset !important;
  background-color: unset !important;
  outline: 0;
  box-shadow: unset !important;
}

.page-item.disabled .page-link {
  pointer-events: none;
  color: #ccc;
}

/* work */


/* loader */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffce18;
 z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 1s ease-in, transform 1s ease-in;
  -webkit-transition: 1s ease-in, transform 1s ease-in;
  -moz-transition: 1s ease-in, transform 1s ease-in;
  -ms-transition: 1s ease-in, transform 1s ease-in;
  -o-transition: 1s ease-in, transform 1s ease-in;
}

#loader.hidden {
  transform: translateY(-100%);
  transition: transform 1s ease-in;
  -webkit-transition: transform 1s ease-in;
  -moz-transition: transform 1s ease-in;
  -ms-transition: transform 1s ease-in;
  -o-transition: transform 1s ease-in;
}

.loader-gif {
  width: 80%; /* Adjust width as needed */
}

@media (max-width: 767px) {
  .loader-gif {
    width: 100%; /* Full width on smaller screens */
  }
}

/* loader */

/* contact */
.form-control:focus {
  border-color: unset !important;
  box-shadow: unset !important;
}
.form-control{
  border:1px solid #000!important;
}
.form-control::placeholder{
  color: #000;
}
.form-control:focus::placeholder {
  color: transparent;
}

.no-resize {
  resize: none;
}

@media (max-width: 767px) {
  .pad-30 {
    padding: 0.5rem !important;
  }
}

.underline {
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 4px;
  text-decoration-color: #ffce18;
  -moz-text-decoration-color: #ffce18;
}
.xp {
  filter: opacity(0.7);
  -webkit-filter: opacity(0.7);
}
@media (max-width: 767px) {
  .xp {
    width: 60%;
  }
}
.submit {
  --color: #ffce18;
  font-family: inherit;
  display: inline-block;
  width: 8em;
  height: 2.6em;
  /* line-height: 2.5em; */
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #ffce18;
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  /* border-radius: 15px; */
  font-weight: 500;
  color: #000;
  background: #ffffff;
}

.submit:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.submit:hover {
  color: #fff;
}

.submit:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.submit:hover:before {
  top: -30px;
  left: -30px;
}

.submit:active:before {
  background: #ffce18;
  transition: background 0s;
}

/* contact */

/* footer */
.contact-info p a{
  text-decoration: none;
  color: #ffffff;
}

.links{
    font-size:18px;
}
.copyright {
  background-color: #ffce18;
}
.list-unstyled li {
  padding: 3px;
}
.list-unstyled {
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
}
.list-unstyled a:hover {
    color: #ffce18 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 1.2px !important;
    text-underline-offset: 4px;
}
/* footer */

/* clients */
.clients img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: 0.3s ease-in;
  -webkit-transition: 0.3s ease-in;
  -moz-transition: 0.3s ease-in;
  -ms-transition: 0.3s ease-in;
  -o-transition: 0.3s ease-in;
  cursor: pointer;
}
.clients img:hover {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
/* clients */
.pad-5 {
  padding-top: 80px !important;
}
/* text heading */

.text-head,
.text-head1 {
  text-align: center;
  position: relative;
  font-size: 45px;
  display: inline-block; /* Ensures pseudo-elements align properly */
  font-weight: 700;
}

@media (max-width: 767px) {
  .text-head,
  .text-head1 {
    font-size: 35px;
  }
  .copy-text{
      font-size:13px;
      line-height: 1.1;
  }
  .contact-info{
      font-size:14px;
  }
  .list-unstyled a{
       font-size:14px;
  }
}

/* Pseudo-elements for underlines */
.text-head::before,
.text-head1::before,
.text-head::after,
.text-head1::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

/*.text-head::before,*/
/*.text-head1::before {*/
/*  bottom: -5px;*/
/*  border-bottom: 6px solid #000;*/
/*}*/

.text-head::after,
.text-head1::after {
  bottom: -8px;
  z-index: 0; /* Ensures it appears below the black underline */
}

.text-head::after {
      border-bottom: 6px solid #ffce18;
    /* left: 57px; */
    width: 60%;
    transform: translate(45px, 0px);
}

.text-head1::after {
   border-bottom: 6px solid #fff;
    /* left: 57px; */
    width: 60%;
    transform: translate(45px, 0px);
}

@media (max-width: 767px) {
  .text-head1::after {
    border-bottom: 6px solid #ffce18; /* Change to yellow underline on small screens */
  }
}

/* Optional media query for responsiveness */
/*@media (max-width: 600px) {*/
/*  .text-head::after,*/
/*  .text-head1::after {*/
/*    width: 55%; */
/*    left: 47.5px; */
/*  }*/
/*}*/

/* text heading */

/* reveal */

.reveal-text {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  -webkit-transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  -moz-transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  -ms-transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  -o-transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  overflow: hidden;
}

.reveal-text.visible {
  transform: translateY(0); /* Move into view */
  opacity: 1; /* Fully visible */
}


/* reveal */
   /* Full-screen loader container */
   #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffce18;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s ease-in-out, transform .5s ease-in-out;
    -webkit-transition: 1.3s ease-in-out, transform .5s ease-in-out;
    -moz-transition: 1s ease-in-out, transform .5s ease-in-out;
    -ms-transition: 1s ease-in-out, transform .5s ease-in-out;
    -o-transition: 1s ease-in-out, transform .5s ease-in-out;
}

/* Loader hidden state */
#loader.hidden {
    transform: translateY(-100%);
    transition: transform 1.3s ease-in-out;
    -webkit-transition: transform 1.3s ease-in-out;
    -moz-transition: transform 1.3s ease-in-out;
    -ms-transition: transform 1.3s ease-in-out;
    -o-transition: transform 1.3s ease-in-out;
}

/* Loader image with scale-up animation */
.loader-img {
    width: 50%;
    /*Adjustwidthasneeded*/transform: scale(0);
    /*Startwithscale0*/animation: scaleUp 1s ease-in forwards;
    
}

/* Scale-up keyframe animation */
@keyframes scaleUp {
    to {
        transform: scale(1); /* Scale to original size */
    }
}


