.cursor {
  width: 0px;
  height: 0px;
  position: fixed;
  /* top: 0;
  left: 0; */
  /* background-color: rgba(255, 255, 255, 0.45); */
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 20;
}

.banner {
  width: 100%;
  /* height: 100vh;
  background: url("https://picsum.photos/1920/1080?random=25") center/cover
    no-repeat; */
  background-color: var(--red-color);
  transform-origin: center center;
  border-radius: 0;
  box-shadow: none;
}

.hero {
  background: var(--red-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/*.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url("../images/web/new-banner-main.jpeg") no-repeat center
    center/cover;
  transform: translate(-50%, -50%) scale(0.2); 
  animation: expand 2s ease-out forwards;
  border-radius: 10px;
}*/

.center-wrapper {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  opacity: 0;
  animation: fadeIn 2s forwards 2s; /* text appears after banner grows */
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

/* .hero-logo img {
  width: 100%;
  height: 100%;
  will-change: transform;
} */

@keyframes expand {
  0% {
    width: 300px;
    height: 200px;
    transform: translate(-50%, -50%) scale(0.2);
    border-radius: 20px;
  }
  100% {
    width: 100%;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1);
    border-radius: 0;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.section {
	margin-top: 80px;
	overflow: hidden;
	position: relative;
}

.banner-bottom {
  position: absolute;
  /*bottom: 5%*/;
	bottom: 20%;
  left: 10%;
  z-index: 2;
	transform: translate(-10%, -5%);
}


.icon-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
	padding-bottom: 13px;
	border-bottom: 1px solid #6F8A6B;
	padding-right: 8px;
}


.button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
	padding: 10px 44px;
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 350px;
}

.button:hover {
	background-color: var(--white) !important;
    color: var(--darker-green-color) !important;
    transition-delay: .5s;	
}

.button:hover:after {
	transform: scale(1.47) translateY(0);
}
.button-second{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--darker-light-green-color);
  border: 1px solid var(--darker-green-color);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  color: var(--darker-green-color);
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
	padding: 10px 28px;
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 350px;
}

.button-second:hover {
	background-color: var(--darker-green-color) !important;
    color: var(--white) !important;
    transition-delay: .5s;	
}

.button-second:hover:after {
	transform: scale(1.47) translateY(0);
}

.bg-dark-red {
  background-color: #8b2115;
}

.bg-medium-red {
  background-color: #d04748;
}

.bg-dark-yellow {
  background-color: #db8024;
}

.bg-dark-green {
  background-color: #1d8b2e;
}


/* Common cover style */
.cover {
  position: absolute;
  background: #505b6f;
  z-index: 2;
}

/* TOP cover (start height 0 → expand down) */
.cover-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
}

/* BOTTOM cover (start height 0 → expand up) */
.cover-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
}

/* LEFT cover (start width 0 → expand right) */
.cover-left {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}

/* RIGHT cover (start width 0 → expand left) */
.cover-right {
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
}

/* .center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 12rem;
  color: #000000;
  font-weight: 800;
  opacity: 1;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 2px;
  transform: translate(-50%, -50%) scale(0.5);
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  -moz-transform: translate(-50%, -50%) scale(0.5);
  -ms-transform: translate(-50%, -50%) scale(0.5);
  -o-transform: translate(-50%, -50%) scale(0.5);
  pointer-events: none;
}

.center-text span {
  display: inline-block;
} */

.center-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* .center-text {
  font-size: 6vw;
  font-weight: 900;
  color: transparent;
  opacity: 0;
  transform: scale(0.2);
  filter: blur(20px);
  text-transform: uppercase;
  clip-path: url('../assets/images/zulu-logo.png');
} */

.center-text {
  font-size: 7vw;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 1;
  color: var(--white);
  /* background-image: url("../images/zulu-logo.png");
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0px #000; */
  /* -webkit-filter: blur(20px);
  filter: blur(20px);
  transform: scale(0.2); */
  text-wrap: nowrap;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.center-text span {
  /* display: inline-block; */
  margin: 0;
  color: var(--white);
}

.center-line {
  width: 100%;
  max-width: 350px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--white);
  border-radius: 10px;
  opacity: 1;
}

.center-slogan {
  font-size: 2.3vw;
  margin-top: 12px;
  opacity: 1;
  /* transform: translateY(20px); */
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--white);
  text-transform: uppercase;
}

.center-slogan span {
  display: inline-block;
  opacity: 1;
  /*transform: translateY(20px);*/
  font-family: "Montserrat", sans-serif;
}

.linkIcon{
	display: none;
}

/* -------------------------------- */
/* Responsive layout */
/* -------------------------------- */
@media (max-width: 1024px) {
  .txtArea {
    padding-left: 0px;
    padding-right: 0px;
  }
	.banner-bottom {
		bottom: 15%;
	}
	.imgArea {
		margin-left: 0px;
		margin-right: 0px;
	}
}

@media (max-width: 991px) {
  .legal-link {
    padding: 5px 12px;
  }
	.txtArea {
		margin-top: 20px;	
	}
	
	.max-w-70 {
		max-width: 100%;
		margin: 0 auto;
	}
	
	#mainService .mainServiceList .serviceCnt {
		padding: 40px 0;
	}
	.newsTitle {
		font-size: 30px;	
	}
	.banner-bottom {
    	bottom: 10%;
	}
	#mainTitleArea h2,
	.callingTitle{
	font-size: 40px;
	letter-spacing: 0px;
	font-weight: 700;
  }
}

@media (max-width: 768px) { 
	.center-slogan {
		font-size: 3vw;
	}
	
}

@media (max-width: 767px) {
  .center-text {
    transform: translate(0px, 0px) !important;
  }
  .center-slogan {
    font-size: 3vw;
  }
  #mainService .mainServiceList .serviceCnt:before {
    display: none;
  }
  #mainTitleArea .subTxt {
    white-space: unset;
    font-size: 16px;
  }
  .txtArea {
    margin-bottom: 20px;
  }
	.main-banner .banner-bottom .icon-list{
		gap: 8px;
	}
	.main-banner .banner-bottom .button{
		padding: 10px 15px;
	}
	
}
@media (max-width: 720px) and (min-width: 426px) {
    .center-slogan {
		letter-spacing: 2px;
    }
}

@media (max-width: 560px) {
  #mainTitleArea h2,
	.callingTitle{
	font-size: 30px;
	letter-spacing: 0px;
	font-weight: 700;
  }
  .legal-link {
    padding: 5px 15px;
  }
	
	section .section {
		overflow: auto;
	}
	.main-banner .banner-bottom .icon-list{
	    gap: 3px;
		margin: 0;
	}
	.main-banner .banner-bottom .button,
	.main-banner .banner-bottom .button-second{
		font-size:12px;
		padding: 7px 15px;
	}
}

@media (max-width: 490px) {
  .legal-link {
    padding: 5px 10px;
  }
  .legal-link:not(:last-child)::after {
    right: -3px;
  }
	
	
}

@media (max-width: 425px) {
  .center-text {
    font-size: 9vw;
    transform: translate(0px, 0px) !important;
  }
  .center-slogan {
    font-size: 5.5vw;
	  letter-spacing: 0;
  }
	.banner-bottom {
    	bottom: 5%;
	}
}

@media (max-width: 375px) {
  .legal-link {
    padding: 5px 5px;
    font-size: 11px;
  }
  .copyright {
    font-size: 13px;
  }
	.main-banner .banner-bottom .button,
	.main-banner .banner-bottom .button-second{
		font-size:9px;
		padding: 5px 10px;
	}
}

@media (max-width: 360px) {
  .center-text {
    font-size: 10vw;
  }
  .center-slogan {
    font-size: 3.5vw;
  }
}
