@font-face{
    font-family: Proxima;
    src: url(fonts/ProximaNova-Bold.otf)
}

* {
    font-family: Proxima;
    margin: 0;
    padding: 0;    
    box-sizing: border-box;
}

/*ANIMATION FOR ELEMENTS WHEN SCROLLING */
@keyframes appear{
  from{
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes float {
  0% {
      transform: translateY(0);
  }

  50% {
      transform: translateY(-40px);
  }

  100% {
      transform: translateY(0);
  }
}
.header{
    min-height: 80vh;
    width: 100%;
    background-color: #bdc3c7;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-shadow: .1em .1em 0 hsl(200 10% 30%);
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #00cec9;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 65%;
    left: 60%;
    transform: translate(-60%,-60%);
    text-align: center;
}
.text-box h1{
    font-size: 80px;
    font-weight:bolder;
    color: #fff;
    text-shadow: .02em .1em 0 hsla(200, 10%, 30%, 0.545);
    animation: float 3s ease-in-out infinite;
}
.text-box p{
    margin: 10px 0px 40px;
    font-size: 25px;
    /* text-shadow: 2px 2px black; */
    color: #333333;
}
.text-box img{
    width: 200px;
    animation: float 3s ease-in-out infinite;
}


nav .fa{
    display: none;
}

@media(max-width: 700px){
    .text-box h1{
        font-size: 40px;
        color: #fff;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: fixed;
        background: #00cec9;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -400px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor:pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}



/*-----------------COUNTER-------------*/
  
.counter-section {
  text-align: center;
  padding: 50px 20px;
}

/* Main container for the counters */
.counter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allows counters to wrap on smaller screens */
  padding-top: 60px;
  gap: 150px;
}

/* Counter Box */
.counter-box {
  font-size: 9rem;
  font-weight: bold;
  color: #00cec9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 220px;
  padding-bottom: 50px;
}
.counter-box h1{
  font-size: 3.5rem;
}
/* Text below numbers */
.counter-box p {
  font-size: 1rem;
  font-weight: normal;
  color: #333333;
  margin-top: 5px;
}

/* Center box for total businesses */
.center-box {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .counter-box {
    font-size: 3.5rem; /* Reduce size for tablets */
  }
}

@media (max-width: 768px) {
  .counter-container {
    flex-direction: column;
    gap: 30px;
  }
  .counter-box h1{
    font-size: 2rem;
  }
  .counter-box {
    font-size: 6rem; /* Reduce size further for smaller screens */
  }

  .center-box {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .counter-box {
    font-size: 3rem; /* Reduce further for small mobile devices */
  }
  .counter-box h1{
    font-size: 1rem;
  }
  .counter-box p {
    font-size: 0.9rem;
  }
}







/*--------FOOTER REAL------------*/
.footer {
    background-color: #333333;
    color: white;
    padding: 40px 20px;
    
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    animation: appear linear;
    animation-timeline: view() ;
    animation-range: entry 0% cover 40%;
  }
  .footer-column {
    flex: 0 0 340px;
    text-align: left;
    min-width: 250px;
  }
  .footer-column img{
    width: 230px;
    padding-bottom: 30px;
  }
 
  
  .footer-column h4 {
    color: #00cec9;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .footer-column p,
  .footer-column a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
  }
  .footer-column a:hover {
    color: white;
  }
  .social-icons {
    /* display: flex; */    /*Remove if you dont want centered*/
    gap: 10px;
    /* margin-top: 15px; */ /*Remove if you dont want centered*/
  }



  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 12px;
    color: #666;
  }
  .footer-bottom a {
    color: #00cec9;
    margin: 0 5px;
  }
  .footer-bottom a:hover {
    color: white;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-column {
      flex: 1 1 100%;
    }
  }





















