.nav {
    display: flex;
    justify-content:space-around;
    align-items: center;
    color: var(--black);
    width: 70%
}
.nav-links {
    display: flex;
    justify-content:start;
    width: 90%;
    text-transform: uppercase;
    margin-bottom: 0px;
    list-style: none;
    padding: 0;
    gap: 15px;
}
.nav-links li {
    position: relative;
}
.nav-links a{
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    border-bottom:2px solid transparent;
    transition:0.5s ease;
    transform: translateX(0%);
    font-size: 20px;
    padding: 10px 15px;
}
.nav-links a:hover{
    color: var(--primary);
    letter-spacing: 5px;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
    position: relative;
}

.arrow-down {
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 5px;
    transition: transform 0.3s ease;
    position: absolute;
    right: -5px;
    top: 40%;
}

.dropdown:hover .arrow-down {
    transform: rotate(225deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--black) !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 16px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--primary);
    color: white !important;
    letter-spacing: normal !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.burger{
    display: none;
}
.burger div{
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 5px;
    transition:all 0.5s ease;
}
@media only screen and (max-width: 991px){
    .nav{
        padding: 0 5vw;
        display: block !important;
        text-align: right;
    }
    .nav-links{
        position: absolute;
        right: 0;
        top: 110px;
        min-height: 15vh;
        background: var(--primary);
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        margin: 0;
        padding: 0;
        transform: translateX(100%);
        transition: All 0.5s ease-in;
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    }
    .nav-links li{
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: left;
    }
    .nav-links a{
        opacity: 0;
        color: white;
        width: 100%;
        text-align: left;
    }
    .nav-links a:hover{
        color: var(--black);
    }
    .burger{
        display: inline-block;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border-radius: 0;
        background-color: var(--primary);
    }

    .arrow-down {
        right: 10px;
    }
    
    .dropdown-content a {
        color: var(--black) !important;
        font-size: 14px !important;
        padding: 8px 16px !important;
    }
    
    .dropdown.mobile-open .dropdown-content {
        display: block !important;
    }
    
    .arrow-down {
        border-color: white;
    }

}
@media only screen and (max-width: 640px){
.nav{
    justify-content: space-between;
    padding: 0 5vw;
}
}
.nav-active{
    transform: translateX(0);
}
@media only screen and (max-width: 460px){
    .nav-links{
        width: 100%;
        transition:All 0.5s ease;
        top: 100px
    }
}
.nav-active{
    transform: translateX(0);
}
@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px );
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px );
}

/* ======================================= */
.nz-div-6 {
    color: #fff;
    position: relative;
    text-align: center;
    font-size: 26px;
  }
  
  h3.nz-div-6:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: 0;
    border-top: 2px solid #d0d2d3;
    z-index: 1;
    display: block;
  }
  
  .nz-div-6 .title-holder {
    min-width: 350px;
    height: 45px;
    background-color: var(--primary);
    line-height: 45px;
    padding: 0px 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    display: inline-block;
  }
  
  .title-holder:before {
    content: "";
    position: absolute;
    right: -15px;
    border-width: 0px;
    bottom: 0px;
    border-style: solid;
    border-color: var(--primary) transparent;
    display: block;
    width: 0;
    height: 0;
    border-top: 23px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 15px solid var(--primary);
  }
  
  .title-holder:after {
    content: "";
    position: absolute;
    left: -15px;
    border-width: 0px;
    bottom: 0px;
    border-style: solid;
    border-color: var(--primary) transparent;
    display: block;
    width: 0;
    height: 0;
    border-top: 23px solid transparent;
    border-bottom: 22px solid transparent;
    border-right: 15px solid var(--primary);
  }

  /* Scroll projects */
  .carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
  }
  .carousel-track:hover {
    animation-play-state: paused;
  }
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  .product-card {
    flex: 0 0 auto;
    margin-right: 1rem;
  }

  /* Fitout Projects Carousel */
  .fitout-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: 40px 0;
  }
  
  .fitout-carousel-track {
    display: flex;
    animation: fitoutScroll 25s linear infinite;
    gap: 20px;
  }
  
  .fitout-carousel-track:hover {
    animation-play-state: paused;
  }
  
  @keyframes fitoutScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  .fitout-project-card {
    flex: 0 0 auto;
    width: 300px;
    transition: transform 0.3s ease;
  }
  
  .fitout-project-card:hover {
    transform: scale(1.05);
  }
  
  .fitout-project-card .project-card-2 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .fitout-project-card .home-three-project-img-2 {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .fitout-project-card:hover .home-three-project-img-2 {
    transform: scale(1.1);
  }
  
  .fitout-project-card .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .fitout-project-card:hover .project-overlay {
    opacity: 1;
  }
  
  .fitout-project-card .home-three-project-text-box {
    position: absolute;
    bottom: 0;
    left: 15px;
    padding: 20px;
    width: 100%;
    display: block;
    min-width: 275px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  }
  
  .fitout-project-card .heading-four-2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
  }
  
  .fitout-project-card .project-category {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .fitout-project-card {
      width: 250px;
    }
    
    .fitout-carousel-track {
      gap: 15px;
    }
    
    .fitout-project-card .home-three-project-img-2 {
      height: 300px;
    }
    
    @keyframes fitoutScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
  }
  
  @media (max-width: 480px) {
    .fitout-project-card {
      width: 200px;
    }
    
    .fitout-project-card .home-three-project-img-2 {
      height: 250px;
    }
    
    .fitout-project-card .home-three-project-text-box {
      padding: 15px;
    }
    
    .fitout-project-card .heading-four-2 {
      font-size: 16px;
    }
  }

  .my-button {
  width: 300px;
  padding: 20vh 50vh;
  background: #000;
  color: #fff;
  font-family: monospace;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  overflow: hidden;
  
  animation: glow linear 2s infinite;
  
  position: relative
}

.my-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1/1;
  width: 150%;
  height: auto;
  border-radius: 50%;
  background: conic-gradient(#fff 0%, #000 3%, #409 60%, #fff 100%);
  animation: spin linear 2s infinite;
  transform: translate(-50%, -50%)
}

.my-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - var(--border));
  height: calc(100% - var(--border));
  background: #000d;
  transform: translate(-50%, -50%);
  border-radius: var(--radius);
  backdrop-filter: blur(10vh);
}

.my-button span {
  display: block;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Geo", monospace;
  font-size: 12.5vh;
  text-transform: uppercase
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg)
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

@keyframes glow {
  0% {
    border: 0 transparent solid;
  }
  25% {
    border: 15px #4094 solid;
  }
  50% {
    border: 30px transparent solid;
  }
  100% {
    border: 0 transparent solid;
  }
}

.button-wrap {
	margin: 0;
	background: #171618;
	height: auto;
	display: grid;
	place-items: center;
	width: 130px
}

.my-button {
	position: relative;
	padding: 10px 20px;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
	color: #999;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 4px;
	font: 500 20px consolas;
	overflow: hidden;
}

.my-button  span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, #171618, #3bff3b);
	animation: animate1 2s linear infinite;
}

@keyframes animate1 {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.my-button  span:nth-child(2) {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to bottom, #171618, #3bff3b);
	animation: animate2 2s linear infinite;
	animation-delay: 1s;
}
@keyframes animate2 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(100%);
	}
}

.my-button  span:nth-child(3) {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to left, #171618, #3bff3b);
	animation: animate3 2s linear infinite;
}

@keyframes animate3 {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.my-button  span:nth-child(4) {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(to top, #171618, #3bff3b);
	animation: animate4 2s linear infinite;
	animation-delay: 1s;
}

@keyframes animate4 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(-100%);
	}
}

.custom-container {
  max-width: 90% !important;
}

.autofit.financial-icon {
  max-height: 66px !important;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/wp-content/themes/central-build/images/about-us.jpeg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    min-height: 60vh;
}
.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f4ff;
  margin: 0 auto 20px;
  }
.service-box:hover {
    background: #f8f9fa;
}

.cta-button-emergency {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: white !important;
  font-weight: 700;
  padding: 10px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(229, 57, 53, 0.6);
  animation: pulse-red 2s infinite; /* Emergency animation */
}

.cta-button-emergency:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white !important;
}

@keyframes pulse-red {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4); }
  100% { transform: scale(1); box-shadow: 0 0 0 10px rgba(229, 57, 53, 0); }
}