/* common Styles */
body {
    /* padding-top: 56px; Adjust for fixed navbar */
 font-family: "Barlow", serif !important;
  font-weight: 400;
  font-style: normal;
  }

.display-card {
    background: #fff;
    /* border-radius: 15px; */
    box-shadow: 0 5px 5px rgb(82 63 105 / 5%);
    padding: 1.5rem;
   
  }
.display-card h4 {
    color: #28b0c4;
    font-weight: 600;
  }

  section {
    padding: 60px 0;
  }
  section h2:hover{
    cursor: pointer;
    color: #28b0c4;
    transition: all ease-out 0.5s;
  }

  .scroll-indicator {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 1rem;
    writing-mode: vertical-lr;
    /* text-orientation: upright; */
    background-color: #28b0c4;
    padding: 10px 0;
    cursor: pointer;
}
  .main-color-font{
    color: #28b0c4;
  }
  /* navbar */
  .navbar {
    padding: 25px 0;
    /* height: 15vh !important; */
  }
  

.logo  {
  font-family: "Barlow", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  }

  /* nav ul li a:hover {
    background-color: #f5f5f5;
  }
   */
  
  

  /* home section */
  #home {
    height: 85vh;
  }

.home-container {
    background: url("./assets/images/home2.jpg");
    background-size: 105vw auto;
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px;
    filter: grayscale(60%);
    animation: horizontalMove 50s infinite;
    animation-timing-function: ease;
  }
  
  @keyframes horizontalMove {
    0% {
      background-position: 0% 0%;
    }
    50% {
      background-position: 100% 20%;
    }
    100% {
      background-position: 0% 0%;
    }
  }
.content {
    text-align: left;
    z-index: 2;
}

.content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.content button {
    border: 0.5px solid #fff;
    background: transparent;
    padding: 0.8rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.content button:hover {
    background: rgba(255, 255, 255, 0.152);
    /* color: #000; */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

@media only screen and (max-width: 600px) {
  .home-container {
    padding: 50px;
  }
  .content h1 {
        font-size: 2rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        font-weight: 700;
        color: #fff;
    }
    .content button {
 padding: 0.5rem 1rem;
 font-size: 0.8rem;
 }
  }



/* about us section */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 100px 50px;
    text-align: center;
}

.feature {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature h2 {
    font-size: 1.5rem;
    color: #28b0c4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}
.about-container{
    display: flex;
    /* justify-content: center; */
}
.container-image{
    width: 50%;
    height: 70vh;
    background: url("./assets/images/about.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(70%);
}

.container-text {
    padding: 0 50px;
    width: 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.container-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.container-text span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.container-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
@media only screen and (max-width: 600px) {
    .about-container{
        flex-direction: column;
    }
    .container-image, .container-text {
        width: 100%; 
        padding-top: 20px;
    }
    .features {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
        margin: 100px 50px;
        text-align: center;
    }
 }



#portfolio, #contact, #services  {
    height: auto;
    padding-top: 100px;
}
.card {
	/* position: relative;
	height: 500px;
	box-shadow: 5px 5px 20px;
	overflow: hidden; */
	cursor: pointer;
    border: none;
}
.intro {
	position: absolute;
	height: 80px;
	width: 100%;
	bottom: 0;
	overflow: hidden;
	padding: 10px;
	color: #fff;
	background-color: #28afc4c7;
	transition: .4s ease-in-out;
}

.card:hover .intro {
	height: 280px;
	bottom: 0;
	background-color: #28b0c4;
}

.card:hover .text-p {
	opacity: 1;
	visibility: visible;
}

.card:hover img {
	/* transform: scale(1.1) rotate(-3deg); */
}

.card img {
	height: auto;
	width: 100%;
	object-fit: cover;
	transition: transform .4s ease-in-out;
}

.text-h1 {
	margin: 10px;
	text-transform: uppercase;
	font-size: 18px;
}

.text-p {
	
	padding: 10px;
	opacity: 0;
}

  
ul {
    list-style: none;
}
li {
    padding: 10px;
}

input, textarea {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 0.5px solid black;
    background: transparent;
    color: var(--mainColor);
  }
  .form-field{
    margin-top: 30px;
    position: relative;
  }
  .form-field label {
    background: white;
    color: black;
    padding: 0 10px;
    position: absolute;
    top: -13px;
    left: 15px;
    transition: all 0.4s ease-out;
    display: inline-block
  }

 button
 {
    border: 0.5px solid rgb(0, 0, 0);
    background: transparent;
    padding: 0.8rem 1.5rem;
    color: rgb(4, 4, 4);
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
 }
    textarea {
        height: 150px;
       padding-top: 15px;
       color: var(--mainColor);
    }
  
    .fi {
        font-size: 20px; 
        margin-right: 8px;
        color: #28b0c4;
    }

.footer-bg{
    background-color: #28b0c4;
}
    /* extra design */
    .cursor {
        width: 5px;
        height: 5px;
        border: 10px solid #28b0c4;
        border-radius: 50%;
        position: absolute;
        transition-duration: 200ms;
        transition-timing-function: ease-out;
        animation: cursor-animate 550ms infinite alternate;
        z-index: 1000;
     }
     
     .cursor::after {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: absolute;
        top: -25px;
        left: -25px;
        animation: cursor-animate-2 550ms infinite alternate;
     }
      
     
     /*Modificador*/
     .cursor--expand {
        animation: cursor-animate-3 550ms forwards;
        border: 10px solid #28b0c4;
     }
     
     .cursor--expand::after {
        border: 10px solid rgba(var(--green-rbg-color), .3);
     }
     
     /*Keyframes*/
     @keyframes cursor-animate {
        from {
           transform: scale(1);
        }
     
        to {
           transform: scale(1.5)
        }
     }
     
     @keyframes cursor-animate-2 {
        from {
           transform: scale(1);
        }
     
        to {
           transform: scale(.3);
        }
     }
     
     @keyframes cursor-animate-3 {
        0% {
           transform: scale(1);
        }
     
        50% {
           transform: scale(3);
        }
     
        100% {
           transform: scale(1);
           opacity: 0;
        }
     }
     