@font-face {
    font-family: 'Sofachrome';
    src: url('../font/sofachrome rg.otf') format('opentype');
}

@font-face {
    font-family: 'Sofachrome_It';
    src: url('../font/sofachrome rg it.otf') format('opentype');
}

/* 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;
}*/
html {
  scroll-behavior: smooth;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0,0,0,0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1D547F;

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(15,144,77);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
  background-image: url("/static/images/papertexture.jpg");
  background-size: cover; /* Adjusts the image to cover the entire background */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-attachment: fixed; /* Keeps the background fixed during scrolling */
  background-position: center; /* Centers the background image */
}

/* 
body::before {
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
} */

/**Whatsapp button ***/
.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 30px;
	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: 110px;
	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: project-desc;
  outline: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 15px 15px 15px 15px;
  border-radius: 50%;
} 

#myBtn:hover {
  background-color: #1D547F;
  color: #000;
}
.arrowUp{
    font-size: clamp(1.2rem, 2.5vw, 3rem);
 }


.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.logo{
    height: 60px;
}
@media (max-width: 768px) {
    .logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }
}

.nav-item{
    font-weight: 600;
}
.nav-link {
    position: relative;
}

 .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(15,144,77);
    transition: width 0.3s ease-in-out;
  }
 .nav-link:hover::after {
    width: 100%;
  }





.left-center-overlay {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50rem;
  }

.discoverBtn{
    border: 1px solid #ffffff;
    color: #000000;
    background: #ffffff;
    border-radius: 0;
    padding: 15px 15px 15px 15px;
    letter-spacing: 2px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.discoverBtn:hover{
    background: none;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.viewButton{
    border-radius: 0px;
    border: 1px solid #1D547F;
    padding: 20px 50px 20px 50px;
    color: #404040;
    letter-spacing: 3px;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.viewButton:hover{
    background: rgb(15,144,77);
    border: 1px solid rgb(15,144,77);
}

.viewButton2{
    border-radius: 0px;
    border: 1px solid #ffffff;
    padding: 20px 50px 20px 50px;
    color: #ffffff;
    letter-spacing: 3px;
    transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
}

.viewButton2:hover{
    background: rgb(15,144,77);
    border: 1px solid rgb(15,144,77);
}


.productCard:hover  {
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    border-radius: 20px !important;
}


.card-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.productOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(29, 84, 127, 0.8), transparent);
  border-radius: 20px;
  transition: height 0.3s ease-in-out;
}

.card-img-container:hover .productOverlay {
  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;
}

.heroCover{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 45vh;
}

.mapCard{
    box-shadow: 10px 5px 5px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease-in-out;
}
.mapCard:hover{
    box-shadow: 10px 5px 5px rgba(29,84,127, 0.5);
}

.categoryCard{
    border-radius: 20px;
    box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.1), -5px -5px 30px 7px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.4s ease-in-out;
}

.categoryCard:hover{
    transform: scale(0.9, 0.9);
    box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.1),  -5px -5px 30px 15px rgba(0,0,0,0.1);
}
a{
    text-decoration: none;
}

.modelCard{
    border-radius: 20px;
    transition: transform 0.4s ease-in-out;
}
.modelCard:hover{
    transform: scale(1.05);
}

/**Gallery***/
.gallery {
  max-width: 100%;
  height: 360px;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.gallery-card {
  flex: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.35s ease-in-out;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.gallery-card:hover {
  flex: 2.25;
}

.gallery:has(.gallery-card:hover)
.gallery-card:not(:hover) img {
  filter: grayscale(100%);
  opacity: 0.5;
}

/**SCROLLER**/

:root {
  --scroller-size: 300vw;
}

.scroller-container {
  overflow: hidden;
  background-image: url('static/images/banner-bottom-bg.png');
  background-size: cover;
  background-position: center;
}
.scroller {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: var(--scroller-size);
  animation: icon-scroller 30s linear 0s normal infinite;
  will-change: transform;
}
.scroller-img {
  max-width: 200px;
  max-height: 120px;
}

@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: 60px;
  }
}
@media (max-width: 500px) {
  :root {
    --scroller-size: 1400vw;
  }
}
/**SCROLLER ENDS HERE**/
.noLink{
    text-decoration: none !important;
    background: none !important;
    border: none !important;
}

/**LOADER**/

#loader-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
}

.loader-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#loader {
    border: 4px solid #000000;
    border-radius: 50%;
    border-top: 4px solid rgb(15,144,77);
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin-top: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loaderImage {
    max-height: 8rem;
    max-width: 100%;
    margin-bottom: 10px;
}

.flex-row-reverse {
            display: flex;
            flex-direction: row-reverse;
        }

.noLink{
    color: #000000 !important;
}

.btn.customerBtn{
    color: #ffffff;
    border: 1px solid #ffffff;
	margin: 10px;
}

.btn.customerBtn:hover{
    color: rgba(29, 84, 127);
    border: 1px solid #ffffff;
    background: #ffffff;
}

/* Mobile responsive styling */
@media (max-width: 768px) {
    .btn.customerBtn {
        width: 100%;
        font-size: 14px;
        padding: 12px;
        display: block;
        margin: 10px 0;
		margin-left: 60px;
		margin-top: -60px;
    }
}