    @charset "utf-8";

    @import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900');

    /* Body */
    body{
    background-color: white;
    font-family: 'Urbanist', sans-serif;
    color: #292929;
    margin: 0;
    }

    /* Alignment */

    br {
    margin: 20px 0;
    }

    hr.solid {
    border-top: 2px solid #bbb;
    width: 50%;
    opacity: 50%;
    }
    hr.solid-1 {
    border-top: 1px solid #bbb;
    width: 80%;
    margin: 4rem 0rem;
    opacity: 30%;
    }

    .container {
    display: flex;
    padding: 20px;
    }

    .center {
    display: flex;
    justify-content: center;
    align-items: center;
    }

    /* Typography */
    h1 {
    font-size: 2em;
    }

    h2 {
    font-size: 1.5em;
    }

    h3 {
    font-size: 1.17em;
    }

    h4 {
    font-size: 1em;
    }

    h5 {
    font-size: 0.83em;
    }

    h6 {
    font-size: 0.67em;
    }

    p {
    font-size: 1em;
    }

    /* Link styles */
    html {
        scroll-behavior: smooth;
      }
    a.style-2 {
    color: #f5f5f5; 
    text-decoration: none;
    }

    a.style-2:hover {
    color: #292929;
    text-decoration: none;
    }

    /* Link styles */
    a.style-3 {
    color: #292929; 
    text-decoration: none;
    }

    a.style-3:hover {
    color: #ffffff;
    text-decoration: none;
    }



    /* navbar */
    .navbar {
    position: fixed;
    top: 1rem;
    left: 2rem;
    right: 0;
    z-index: 998;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0.5rem 1rem;
    }
    .navbar img {
    height: 50px;
    margin: 0;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    }
    .navlogo:hover {
    transform: translateX(-50%) scale(1.1) rotate(180deg);
    }


    /* hero section */
    .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    color: #292929;
    padding: 10rem 10rem;
    }
    .hero h1 {
    font-size: 4em;
    text-align: center;
    font-weight: 300;
    }
    .hero h2 {
    font-size: 2.5em; 
    text-align: center;
    font-weight: 500;
    line-height: 3.5rem;
    }

    /* Hero Animation */
    @keyframes reveal {
    from {
    opacity: 0;
    transform: translateY(-20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    .hero .content {
    animation: reveal 1s ease-in-out;
    }

    /* Review Star */
    .review-stars {
    display: flex;
    align-items: center;
    }
    .review-star {
    width: 30px;
    height: 30px;
    fill: #737373;
    }

    /* Review Star Animation */
    .star-animation {
    animation: twinkle 5s ease-in-out infinite;
    }

    @keyframes twinkle {
    0% {
    fill: #1ff6ef;
    }
    50% {
    fill: #737373;
    }
    100% {
    fill: #1ff6ef;
    }
    }



    /* About */
    .about-us {
    background-color: black;
    color: white;
    padding: 50px 0;
    text-align: left;
    }

    .about-us p {
    margin: 20px;
    font-size: 1.5rem;
    padding: 0px 150px;
    line-height: 2.5rem;
    }

    .about-us h1 {
    margin: 20px;
    font-size: 2.5rem;
    opacity: 20%;
    padding: 0px 150px;
    }  

    .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 20px;
    }


    /* Team */
    .team {
    padding: 8rem 0rem;
    padding-bottom: 3rem;
    }

    .team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    height: auto;
    margin: 20px 20px;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .team-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    }

    .row-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    }

    .team-card .info {
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    box-sizing: border-box;
    text-align: center;
    }

    .team-card .name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #292929;
    }

    .team-card .position {
    margin: 10px 0 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: #292929;
    }

    .team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
    }    


    /* Contact */
    .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #292929;
    padding-bottom: 10rem;
    padding-top: 1rem;
    padding-left: 5rem;
    padding-right: 5rem;
    }

    .contact h2 {
    font-size: 2.5em; 
    text-align: center;
    font-weight: 500;
    line-height: 3.5rem;
    padding: 0rem 10rem;
    }

    /* Service */
    .service {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #292929;
    padding: 10rem 5rem;
    }

    .service h2 {
    font-size: 2.5em; 
    text-align: center;
    font-weight: 500;
    line-height: 3.5rem;
    padding: 0rem 10rem;
    }

    .service p {
    font-size: 1.5rem;
    padding: 0rem 10rem;
    line-height: 2.5rem;
    }

    .service h1 {
    font-size: 2.5rem;
    opacity: 20%;
    padding: 0rem 5rem;
    }  

    .service ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 0.5rem; 
    width: 50%;
    padding: 0rem 15rem;
    }

    .service li {
    list-style: disc;
    margin-bottom: 1rem;
    width: calc(50% - 0.25rem);
    font-weight: 600;
    font-size: 1.2rem;
    }


    .down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    animation: bounce 1s ease-in-out infinite;
    }

    .down-arrow svg {
    width: 50px;
    height: auto;
    }

    .down-arrow path {
    fill: #292929;
    }

    /* Footer styles */
    footer {
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    flex-direction: column;
    }

    .company-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    }

    .logo {
    height: 50px;
    margin-bottom: 20px;
    }

    /* Copyright line */
    .copyright {
    font-size: 14px;
    margin-bottom: 20px;
    }

    .social-media-icon {
    height: 30px;
    margin: 10px;
    }

    .social-media-icon path {
    fill: white;
    }

    /* Heart icon styles */
    .heart-icon {
    height: 15px;
    width: 15px;
    fill: red;
    animation: pulse 1s infinite;
    }

    /* Project Slider */

    /* Portfolio styles */
.portfolio {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .portfolio img {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: cover;
  }
  
  @media (min-width: 768px) {
    .portfolio img {
      width: 32%;
    }
  }
  
    .project-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    }

    .project-slider .slider-container {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    animation: slider 15s infinite; 
    }

    .project-slider .slider-container .slide {
    position: relative;
    width: 33.33333333%;
    height: 100%;
    float: left;
    }

    .project-slider .slider-container .slide img {
    display: block;
    width: 100%;
    height: 100%;
    }


    /* Button */
    button {
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 4px;
    padding: 12px 20px;
    cursor: grab;
    font-size: 16px;
    font-family: 'Urbanist';
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
    }

    button:hover {
    background-color: #292929;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transform: scale(1.1);
    }

    button:active {
    background-color: gray;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: scale(0.9);
    }



    /* Animation */


    @keyframes bounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-5px);
    }
    }

    @keyframes pulse {
    0% {
    transform: scale(1);
    }
    50% {
    transform: scale(1.1);
    }
    100% {
    transform: scale(1);
    }
    }


    @keyframes slider {
    0%, 25%, 100% {
    left: 0;
    }

    30%, 55% {
    left: -100%;
    }

    60%, 85% {
    left: -200%;
    }
    }


    /* Responsive */
    @media only screen and (max-width: 1200px) {
    .hero {
    padding: 10rem 2rem;
    }
    .hero h2 {
    font-size: 1.5em; 
    text-align: center;
    font-weight: 400;
    line-height: 2.5rem;
    }

    .about-us {
    padding: 5rem 2rem;
    }
    .about-us h1 {
    font-size: 1.7em; 
    text-align: left;
    font-weight: 300;
    line-height: 2.5rem;
    padding: 0px 10px;
    }
    .about-us p {
    font-size: 1.2em; 
    text-align: left;
    font-weight: 400;
    line-height: 2rem;
    padding: 0px 10px;
    }

    .grid {
    grid-template-columns: repeat(8, 1fr);
    }
    }


    @media (max-width: 900px) {
    .grid {
    grid-template-columns: repeat(4, 1fr);
    }
    .team {
    padding: 5rem 0rem;
    padding-bottom: 2rem;
    }
    .service {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    }

    .service h2 {
    font-size: 2.5em; 
    text-align: center;
    font-weight: 500;
    line-height: 3.5rem;
    padding: 0rem 2rem;
    }

    .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    }

    .contact h2 {
    font-size: 2.5em; 
    text-align: center;
    font-weight: 500;
    line-height: 3.5rem;
    padding: 0rem 2rem;
    }

    .service p {
    font-size: 1.5rem;
    padding: 0rem 3rem;
    line-height: 3rem;
    }

    .service h1 {
    font-size: 2.5rem;
    opacity: 20%;
    padding: 0rem 2rem;
    }  

    .service ul {
    padding: 0rem 5rem;
    }

    .service li {
    width: 100%;
    }

    }

    @media (max-width: 768px) {
    .team-card {
    width: 100%;
    margin: 30px;
    }
    .team {
    padding: 5rem 0rem;
    }


    }

    @media (max-width: 600px) {
    .grid {
    grid-template-columns: repeat(2, 1fr);
    }
    footer {
    flex-direction: column;
    }
    .project-slider {
    height: 65vh; 
    }

    }


