* /* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
. {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}

body{
background-color: #ffffff;
}

/**Whatsapp button ***/
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 100px;
	right: 30px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 25px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 30px;
	right: 30px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
/**scroll top**/
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 30px;
  z-index: 9999;
  font-size: 3px;
  border: none;
  outline: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 15px 15px 15px 15px;
  border-radius: 50%;
}

#myBtn:hover {
  background-color: #12e193;
  color: #000;
}
 .arrowUp{
    font-size: clamp(1.2rem, 2.5vw, 3rem);
 }

.navbar{
    background-color: #ffffff !important;
}



.nav-item{
    font-weight: 600;
}
.nav-link {
    position: relative;
    font-weight: 600;
  }
 .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #E9322E;
    transition: width 0.3s ease-in-out;
  }
 .nav-link:hover::after {
    width: 100%;
  }

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  outline: none!important;
  box-shadow: none;
}

@media only screen and (max-width: 600px) {
  .menuButton {
    display: none;;
  }
}

/**HOMEPAGE**/

.object-fit-cover {
  object-fit: cover;
}


.carousel-container{
    position: relative;
    text-align: center;
}
.line-1{
    position: relative;
    top: 50%;
    width: 20em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);
}

/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(44) 1s 1 normal both,
             blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 20em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}


.card-container {
  display: flex;
  justify-content: flex-start;
}

.homeCard{
    background: rgba(0,0,0,0.5);
    border: none;
    color: rgba(255,255,255,1);
}

.homeCard:hover hr {
    background-color: white;
  }

.button1{
    background-color: rgba(233,50,46,0.8);
    color: #ffffff;
    font-weight: 500;
    padding: 15px 20px 15px 20px;
    letter-spacing: 2px;
    border: none;
    transition: background-color 0.3s ease-in-out;
}
.button1:hover{
    background-color: rgba(233,50,46,1);
    color: #ffffff;
    font-weight: 500;
}
.button2{
    background-color: rgba(233,50,46,0.8);
    color: #ffffff;
    font-weight: 500;
    padding: 5px 10px 5px 10px;
    border: 1px solid #000000;
    transition: background-color 0.3s ease-in-out;
    border-radius: 50%;
}
.button2:hover{
    background-color: rgba(233,50,46,1);
    color: #ffffff;
}
.button3{
    background: none;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 0px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.button3:hover{
    background: #ffffff;
    border: 2px solid #ffffff;
    color: rgba(233,50,46,1);
    border-radius: 0px;
}
.button4{
    background: none;
    border: 2px solid rgba(233,50,46,1);
    color: rgba(233,50,46,1);
    border-radius: 0px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    padding: 10px 15px 10px 15px;
}
.button4:hover{
    background: rgba(233,50,46,1);
    border: 2px solid rgba(233,50,46,1);
    color: #ffffff;
    border-radius: 0px;
}
.promiseCard{
    box-shadow: 10px 5px 15px rgba(0,0,0,0.2);
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.promiseCard:hover{
    border-color: rgba(233,50,46,0.2);
    box-shadow: 10px 5px 15px rgba(233,50,46,0.2);
}

.card-img-container {
  position: relative;
  border-radius: 20px;
}

.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  border-radius: 20px;
  transition: height 0.3s ease-in-out;
}
.card-img-container:hover .gradient-overlay {
  height: 100%;
}
.card-text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0);
  color: #ffffff;
}



/**SCROLLER**/

:root {
  --scroller-size: 3000px;
}

.scroller-container {
  overflow: hidden;
}
.scroller {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: var(--scroller-size);
  animation: icon-scroller 60s linear 0s normal infinite;
  will-change: transform;
}
.scroller-img {
  max-width: 200px;
  max-height: 50px;
}

@keyframes icon-scroller {
  100% {
    transform: translateX(calc(var(--scroller-size)*-0.5));
  }
}

@media (max-width: 1200px) {
  :root {
    --scroller-size: 800vw;
  }
}
@media (max-width: 800px) {
  :root {
    --scroller-size: 1000vw;
  }
  .scroller-img {
    max-width: 130px;
    max-height: 30px;
  }
}
@media (max-width: 500px) {
  :root {
    --scroller-size: 1400vw;
  }
}
/**SCROLLER ENDS HERE**/


.descSection{
    background-color: rgb(255, 255, 255);
}
@media (max-width: 1400px) {
  .descSection {
    margin-top: 16rem;
  }
}
@media (max-width: 1200px) {
  .descSection {
    margin-top: 12rem;
  }
}

@media (max-width: 900px) {
  .descSection {
    margin-top: 35rem;
  }
}

@media (max-width: 450px) {
  .descSection {
    margin-top: 50rem;
  }
}

.carousel-inner{
    background-color: rgb(245, 245, 220);
}

.vl {
  border-left: 3px solid rgba(165, 42, 42, 0.7);
  height: 500px;
}

.bgHeader{
    background-color: rgba(57, 178, 112, 0.5);
}




.serviceCard {
  transition: transform 0.2s linear;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.serviceCard:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
.video-opacity {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.5);
}
headUnderline {
    font-weight: 300;
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
}
headUnderline:before{
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    bottom: 0;
    left: 25%;
    border-bottom: 1px solid red;
}

.allProjects{
    background: none;
    border: 2px solid #39b270;
    color: #000000;
    padding: 10px 15px 10px 15px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.allProjects:hover{
    background: #39b270;
    border: 2px solid #39b270;
    color: #ffffff;
}
/**About US**/

.about {
  margin-top: 4rem;
  max-height: 30vh;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about .card {
  height: 30vh;
  background-size: cover;
}

@media only screen and (max-width: 768px) {
  .about {
    background-attachment: scroll;
  }
  .about .card {
  }
}
a{
    text-decoration: none;
}


.glow {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.glow {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.3s ease-in-out;
}

.glow:hover, .glow:focus {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
/**CARD HOVER ZOOM**/
.card-img-container {
    overflow: hidden;
    border-radius: 20px;
}


.cardImage {
    transition: transform 2s ease;
}

.cardImage:hover {
    transform: scale(1.1);
}

.card-product-container {
    overflow: hidden;

}

/**CONTACT**/
.send-button{
    background: #32b270;
    padding: 9px 9px ;
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease-in-out;
}
.send-button:hover{
    background: #32b270;
    color: #000000;
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.5);
}
.jobCard{
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease-in-out;
}
.jobCard:hover{
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.2);
}

.projectCard{
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease-in-out;
}
.projectCard:hover{
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.2);
}

/**GALLERY**/
.column {
  flex: 25%;
  max-width: 33.3%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  filter: grayscale(1) brightness(0.5);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s linear;
}

.column img:hover {
  filter: grayscale(0);
}

@media screen and (max-width: 700px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  .column img {
    filter: grayscale(0) brightness(1);
  }
}


/**FOOTER**/

footer{
    background-color: 	rgb(110, 38, 14);
    color: #ffffff;
}

.brand-title {
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  white-space: nowrap; /* Keeps the content on a single line */
  animation: typing 3.5s steps(40, end) infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

.brand-title::after {
  content: ""; /* Creates a pseudo-element for the cursor */
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: black;
  margin-left: 8px;
  animation: blink .6s linear infinite alternate;
}

@keyframes blink {
  0% {opacity: 1;}
  40% {opacity: 1;}
  60% {opacity: 0;}
  100% {opacity: 0;}
}

.noLink{
    color: #ffffff;
}

.noLink:hover{
    color: #ffffff;
}