@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@300;400;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    font-size: 10px;
    font-family: 'Montserrat' , sans-serif;
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
}
.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

p{
    color: black;
    font-size: 1.4rem;
    margin-top: 5px ;
    line-height: 2.5;
    font-weight: 300px;
    letter-spacing: .05rem;
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-title{
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .2rem;
    text-align: center;
 }
 .section-title span{
    color: rgb(0, 89, 179);
 }

.cta{
    display: inline-block;
    padding: 10px 30px;
    color: black;
    background: seagreen;
    border: 2px solid black;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 30px;
    transition: 0.3s ease;
    transition-property: background-color, color;
 }

.cta:hover{
    color: black;
    background-color: green;
 }

.brand h1{
   font-size: 3rem;
   text-transform: uppercase;
   color: white;
}
.brand h1 span{
   color: ;
}

#header{
   position: fixed;
   z-index: 1000;
   left: 0;
   top: 0;
   width: 100vw;
}

section{
   scroll-margin-top: 90px;
}

#header .header{
   min-height: 8vh;
   background-color: rgba(31, 30, 30, 0.16);
   box-shadow: 0 0 0 rgba(0, 0, 0, 0);
   transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

#header .nav-bar{
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   height: 100%;
   max-width: 1300px;
   padding: 0 20px;
}

#header .brand h1{
   color: white;
   letter-spacing: 0.1rem;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

#header .brand h1 span{
   color: #63d5ff;
}

#header .nav-list ul{
   list-style: none;
   position: absolute;
   background-color: rgb(31, 30, 30);
   width: 100vw;
   height: 100vh;
   left: 100%;
   top: 0;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   z-index: 1;
   overflow-x: hidden;
   transition: 0.5s ease left;
}

#header .nav-list ul.active{
   left: 0%;
}

#header .nav-list ul a{
   font-size: 2.5rem;
   font-weight: 500;
   letter-spacing: 0.2rem;
   text-decoration: none;
   color: white;
   text-transform: uppercase;
   padding: 20px;
   display: block;
   transition: color 0.25s ease, background-color 0.25s ease;
}

#header .nav-list ul li:hover a{
   color: black;
   background-color: rgba(255, 255, 255, 0.9);
   border-radius: 6px;
}

#header .hamb{
   height: 48px;
   width: 48px;
   display: inline-flex;
   border: 2px solid white;
   border-radius: 50%;
   position: relative;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transform: scale(0.8);
   margin-right: 10px;
   z-index: 20;
}

#header .hamb:after{
   position: absolute;
   content: '';
   height: 100%;
   width: 100%;
   border-radius: 50%;
   border: 2px solid white;
   animation: hamb_puls 1s ease infinite;
}

#header .hamb .bar{
   height: 2px;
   width: 24px;
   position: relative;
   background-color: white;
}

#header .hamb .bar::after,
#header .hamb .bar::before{
   content: '';
   position: absolute;
   height: 100%;
   width: 100%;
   left: 0;
   background-color: white;
   transition: 0.3s ease;
}

#header .hamb .bar::before{
   top: 7px;
}

#header .hamb .bar::after{
   bottom: 7px;
}

#header .hamb.active .bar{
   background-color: transparent;
}

#header .hamb.active .bar::before{
   top: 0;
   transform: rotate(45deg);
}

#header .hamb.active .bar::after{
   bottom: 0;
   transform: rotate(-45deg);
}



#one{
    background-image: url(./WhatsApp\ Image\ 2026-02-21\ at\ 4.59.11\ PM.jpeg);
    background-size: cover;
    background-position: top center;
    z-index: 1;
}

#one .one{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0, 50px;
    justify-content: flex-start;
}


 #one h1{
    display: block;
    width: fit-content;
    font-size: 4rem;
    position: relative;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: 1.5s ;
 }

 #one h1:nth-child(1) {
    animation-delay: 1.5s;
 }
 #one h1:nth-child(2) {
    animation-delay: 2.5s;
 }
 #one h1:nth-child(3) {
    animation-delay: 3.5s;
 }


 #one h1 span{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: black;
    animation: text_reveal_box 1s ease;
    animation-delay: 1s ;
 }

 #one h1:nth-child(1) span{
    animation-delay: 1s ;
 }

 #one h1:nth-child(2) span{
    animation-delay: 2s;
 }

 #one h1:nth-child(3) span{
    animation-delay: 3s;
 }


 #services .services {
    flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0;
 }
 

 #services .service-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
 }

 #services .service-item{
   flex-basis: 80%;
   display: flex;
   align-items: flex-start;
   justify-content: center;
   flex-direction: column;
   padding: 40px 30px;
   border-radius: 10px;
   background-image: url(./WhatsApp\ Image\ 2026-02-21\ at\ 4.59.11\ PM.jpeg);
   background-size: cover;
   margin: 10px 5%;
   position: relative;
   z-index: 1;
   overflow: hidden;
 }

 #services .service-item::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .6;
    z-index: -1;
 }

 #services .service-bottom .icon{
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
 }

 #services .service-item h2{
   font-size: 2rem;
   color: white;
   margin-bottom: 10px;
   text-transform: uppercase;
 }

 #services .service-item p{
   color: antiquewhite;
   text-align: justify;
   line-height: 1.8;
 }



 #projects .projects{
   flex-direction: column;
   max-width: 1200px;
   margin: 0 auto;
   padding: 100px 0;
 }

 #projects .projects-header h1{
   margin-bottom: 50px;
 }

 #projects .all-projects{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
 }

 #projects .project-items{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   width: 80%;
   margin: 20px auto;
   overflow: hidden;
   border-radius: 10px;
 }

 #projects .project-info{
   padding: 30px;
   flex-basis: 50%;
   height: 100%;
   display: flex;
   align-items: flex-start;
   flex-direction: column;
   background-image: linear-gradient(60deg, blue 0%, white 100%);
   color: white;
 }
 #projects .project-info h1 {
   font-size: 4rem;
   font-weight: 500;
 }

 #projects .project-info h2 {
   font-size: 1.8rem;
   font-weight: 500;
   margin: 10px;
 }

 #projects .project-img{
   width: 100%;
   overflow: hidden;
 }

 #projects .project-img img{
   width: 100%;
   display: block;
   transition: transform 0.4s ease;
 }

 #projects .project-items:hover .project-img img{
   transform: scale(1.1);
 }


 #about .about{
   flex-direction: column-reverse;
   text-align: center;
   max-width: 1200px;
   margin: 0 auto;
   padding: 100px 20px;
 }

 #about .col-left{
   width: 250px;
   height: 360px;
 }
 #about .col-right{
   width: 100%;
 }
 #about .col-right h2{
   font-size: 1.8rem;
   font-weight: 500;
   letter-spacing: 1.2rem;
   margin-bottom: 10px;
 }

 #about .col-right p{
   margin-bottom: 20px;
 }

 #about .col-right .cta{
   margin: 50px;
   padding: 10px 20px;
   font-size: 2rem;
 }
 #about .col-left .about-img{
   height: 100%;
   width: 100%;
   position: relative;
   border: 7.5px solid black;
 }
 #about .col-left .about-img::after{
   content: '';
   position: absolute;
   left: -33px;
   top: 19px;
   height: 98%;
   width: 98%;
   border: 7px solid royalblue;
   z-index: -1;
 }


 @keyframes text_reveal_box{
    50%{
        width: 100%;
        left: 0;
    }
    100%{
        width: 0;
        left: 100%;
    }
 }
 @keyframes text_reveal {
    100%{
        color: wheat;
    }
 }

 @keyframes hamb_puls{
   0%{
      opacity: 1;
      transform: scale(1);
   }
   100%{
      opacity: 0;
      transform: scale(1.4);
   }
 }

 #contact .contact{
   flex-direction: column;
   max-width: 1200px;
   display: flex;
   margin: 0 auto;
   padding: 100px 20px;
 }

 #contact .contact-items{
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
   margin-top: 30px;
 }

 #contact .contact-item{
   width: 80%;
   display: flex;
   align-items: center;
   gap: 20px;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 0 18px 0 #0000002c;
   background-color: #ffffff;
   transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
 }

 #contact .contact-item:hover{
   animation: contact_hover_pop 0.35s ease;
   transform: translateY(-8px) scale(1.01);
   box-shadow: 0 10px 28px 0 #00000038;
   background-color: #f5fbff;
 }

 #contact .contact-item .icon{
   width: 70px;
   height: 70px;
   flex-shrink: 0;
 }

 #contact .contact-info h1{
   font-size: 2rem;
   margin-bottom: 5px;
 }

 #contact .contact-info h2{
   font-size: 1.4rem;
   font-weight: 500;
   line-height: 1.8rem;
 }

 #footer{
   background-color: #dff1ff;
 }

 #footer .footer{
   min-height: 220px;
   flex-direction: column;
   padding: 40px 20px 20px;
   text-align: center;
 }

 #footer .brand h1{
   font-size: 3rem;
   text-transform: uppercase;
   color: black;
   margin-bottom: 10px;
   letter-spacing: .15rem;
 }

 #footer .brand h1 span{
   color: rgb(0, 89, 179);
 }

 #footer h2{
   color: black;
   font-size: 1.8rem;
   font-weight: 500;
   margin-bottom: 20px;
   letter-spacing: .1rem;
 }

 #footer .social-icon{
   display: flex;
   gap: 14px;
   margin-bottom: 20px;
 }

 #footer .social-item{
   width: 52px;
   height: 52px;
 }

 #footer .social-item img{
   border-radius: 50%;
   border: 2px solid #dce6f4;
   padding: 4px;
   background-color: #ffffff;
   transition: transform 0.25s ease;
 }

 #footer .social-item:hover img{
   transform: translateY(-3px);
 }

 #footer p{
   color: black;
   font-size: 1.3rem;
   margin-top: 5px;
   text-align: center;
 }

 @keyframes contact_hover_pop {
   0%{
     transform: translateY(0) scale(1);
   }
   60%{
     transform: translateY(-10px) scale(1.015);
   }
   100%{
     transform: translateY(-8px) scale(1.01);
   }
 }

@media only screen and (min-width: 768px) {
   .cta{
      font-size: 2.5rem;
      padding: 20px, 60px;
   }
   h1.section-title{
      font-size: 6rem;
   }
   #one h1{
      font-size: 7rem;
   }

   #services .service-bottom .service-item{
      flex-basis: 45%;
      margin: 2.5%;
      min-height: 420px;
      padding: 35px 25px;
   }

   #projects .project-items{
      flex-direction: row;
   }
   #projects .project-items:nth-child(even){
      flex-direction: row-reverse;
   }
   #projects .project-items{
      height: 400px;
      margin: 0;
      width: 100%;
      border-radius: 0;
   }
   #projects .all-projects .project-info{
      height: 100%;
   }
   #projects .all-projects .project-img{
      height: 100%;
   }

   #about .about{
      flex-direction: row;
      align-items: center;
      text-align: left;
      gap: 40px;
   }
   #about .col-left{
      width: 600px;
      height: 400px;
      padding-left: 60px;
   }
   #about .about .col-left .about-img::after{
      left: -45px;
      top: 34px;
      height: 98%;
      width: 98%;
      border: 10px solid blue;
   }
   #about .col-right{
      text-align: left;
      padding: 30px;
   }

   #about .col-right h1{
      text-align: left;
   }

   #about .col-right .cta{
      margin: 30px 0 0;
   }

   #contact .contact{
      flex-direction: column;
      padding: 100px 0;
      align-items: center;
      justify-content: center;
      min-width: 20vh;
   }

   #contact .contact-items{
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      margin: 0;
   }

   #contact .contact-item{
      width: 30%;
      margin: 0;
      flex-direction: row;
   }

   #contact .contact-item .icon{
      height: 100px;
      width: 100px;
   }

   #contact .contact-item .icon img{
      object-fit: contain;
   }
   #contact .contact-item .contact-info{
      width: 100%;
      text-align: left;
      padding-left: 20px;
   }

}

@media only screen and (min-width: 1200px) {
   #header .hamb{
      display: none;
   }

   #header .nav-list ul{
      position: initial;
      display: block;
      height: auto;
      width: fit-content;
      background-color: transparent;
   }

   #header .nav-list ul li{
      display: inline-block;
   }

   #header .nav-list ul li a{
      font-size: 1.8rem;
   }

   #services .service-bottom .service-item{
      flex-basis: 22%;
      margin: 1.5%;
      min-height: 460px;
      padding: 30px 20px;
   }
}


