@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Roboto+Mono:wght@300&display=swap');

:root{
    --color:#ff0000 ;
    --background:#000000 ;
    --button:#950101 ;
    --infobox:#3D0000 ;
    --text:whitesmoke ;
}

*{
    box-sizing: border-box;
    margin:0;
    padding:0;
    text-decoration: none;
    list-style-type: none;
}

html{
    scroll-behavior: smooth;
}

/*All similar content styling codes*/
section{
    padding: 100px 0;
}

.max-width{
    max-width: 1300px;
    padding: 0 30px;
    margin: auto;
}

.about, .services, .skills, .teams, .contact, footer{
    font-family: 'Roboto Mono', monospace;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 200px;
    height: 2px;
    background: var(--background);
    transform: translateX(-50%);
}

section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: var(--color);
    padding: 0 5px;
    background: var(--background);
    transform: translateX(-50%);
}

/*Navigation Bar*/
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.navbar.sticky{
    padding: 5px 0;
    background: var(--background);
}

.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    color: var(--color);
    font-size: 34px;
    font-weight: 800;
}

.navbar .logo a span{
    color: var(--button);
    transition: all 0.3s ease;
    font-weight: 700;
}

.navbar.sticky .logo a span{
    color: var(--button);
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    display: block;
    color: var(--button);
    font-size: 16px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover{
    color: var(--color);
}

.navbar.sticky .menu li a:hover{
    color: var(--text);
}

/*Menu btn*/
.menu-btn{
    color: var(--text);
    font-size: 25px;
    cursor: pointer;
    display: none;
}

.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: var(--background);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: var(--button);
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn:hover{
    color: var(--color);
}

.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover{
    filter: brightness(100%);
}

/*Home Section*/
.home{
    display: flex;
    background: url("images/banner.jpg") no-repeat center;
    height: 100vh;
    color: var(--text);
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;;
}

.home .max-width{
  width: 100%;
  display: flex;
}

.home .max-width .row{
  margin-right: 0;
}

.home .home-content .text-1{
    font-size: 27px;
}

.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}

.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}

.home .home-content .text-3 span{
    color: var(--color);
    font-weight: 600;
}

.home .home-content a{
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text);
    font-size: 20px;
    padding: 15px 30px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 5px;
    border: 2px solid var(--color);
    transition: all 0.3s ease;
}

.home .home-content a:hover{
    color: var(--text);
    background-color: rgba(0, 0, 0, 0.8);
}

/*About Section*/
.about .title::after{
    content: "who are we";
}

.about .about-content .left{
    width: 45%;
}

.about .about-content .left img{
    height: 300px;
    width: 300px;
    margin-left: 30%;
    object-fit: cover;
    border-radius: 5px;
}

.about .about-content .right{
    width: 55%;
}

.about .about-content .right .text{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about .about-content p{
    text-align: justify;
    margin: 10px 10%;
}

.about .about-content a{
    display: inline-block;
    color: var(--button);
    transition: all 0.3s ease;
}

.about .about-content a:hover{
    color: var(--color);
    background: none;
    transform: scale(1.1);
}

.about .about-content .typing-2{
    background-color: var(--color);
    color: var(--text);
    padding: 0 10px;
    font-size: 20px;
}

/*Services Section*/
.services, .teams{
    color:var(--text);
    background: var(--background);
}

.services .title::before,
.teams .title::before{
    background: var(--button);
}

.services .title::after,
.teams .title::after{
    background: var(--background);
    content: "what we provide";
}

.services .serv-content .card{
    width: calc(50% - 10px);
    background: #222;
    text-align: center;
    border-radius: 5px;
    padding: 50px 20px;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services .serv-content .card:hover{
    background: var(--button);
}

.services .serv-content .card .box{
    transition: all 0.3s ease;
}

.services .serv-content .card:hover .box{
    transform: scale(1.1);
}

.services .serv-content .card i{
    font-size: 25px;
    color: var(--color);
    transition: color 0.3s ease;
}

.services .serv-content .card:hover i{
    color: var(--text);
}

.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 300;
    margin: 10px 0 7px 0;
}

.services .serv-content a{
    color: var(--text);
}

/*Skills*/
.skills .skills-content .column{
    width: calc(50% - 10px);
}

.skills .skills-content .left .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skills .skills-content .left p{
    text-align: justify;
}

.skills .skills-content .right .bars{
    margin-bottom: 15px;
}

.skills .skills-content .right .info{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}

.skills .skills-content .right span{
    font-weight: 400;
    font-size: 18px;
}

.skills .skills-content h3{
    font-weight: 500;
}

.skills .skills-content .right .line{
    height: 5px;
    width: 100%;
    background: var(--background);
    position: relative;
}

.skills .skills-content .right .line::before{
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}

.skills-content .right .html::before{
    width: 70%;
    position: relative;
    background-image: linear-gradient(to right, #D84924, #E46027);
    animation-name: html;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
}

@keyframes html {
  0%   {width: 10%}
  25%  {width: 30%}
  50%  {width: 40%}
  75%  {width: 50%}
  100% {width: 70%}
}


.skills-content .right .css::before{
    width: 80%;
    position: relative;
    background-image: linear-gradient(to right, #0D6CB6, #309CD0);
    animation-name: css;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
}

@keyframes css {
  0%   {width: 20%}
  25%  {width: 40%}
  50%  {width: 60%}
  75%  {width: 70%}
  100% {width: 80%}
}

.skills-content .right .js::before{
    width: 40%;
    position: relative;
    background-image: linear-gradient(to right, #DDBF30, #F2D223);
    animation-name: js;
    animation-duration: 7s;
    animation-timing-function: ease-in-out;
}

@keyframes js {
  0%   {width: 0%}
  25%  {width: 10%}
  50%  {width: 20%}
  75%  {width: 30%}
  100% {width: 40%}
}

.skills-content .right .figma::before{
    width: 70%;
    position: relative;
    background-image: linear-gradient(to right, #E54A1D, #F26B5C, #9954F2, #19B1F1, #09C47C);
    animation-name: html;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
}

@keyframes html {
  0%   {width: 10%}
  25%  {width: 25%}
  50%  {width: 30%}
  75%  {width: 55%}
  100% {width: 70%}
}

.skills-content .right .premier::before{
    width: 60%;
    position: relative;
    background-image: linear-gradient(to right, #280032, #DE71F2);
    animation-name: premier;
    animation-duration: 9s;
    animation-timing-function: ease-in-out;
}

@keyframes premier {
  0%   {width: 5%}
  25%  {width: 20%}
  50%  {width: 40%}
  75%  {width: 50%}
  100% {width: 60%}
}

.skills-content .right .audition::before{
    width: 90%;
    position: relative;
    background-image: linear-gradient(to right, #00241F, #00D8B1);
    animation-name: audition;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
}

@keyframes audition {
  0%   {width: 20%}
  25%  {width: 40%}
  50%  {width: 60%}
  75%  {width: 80%}
  100% {width: 90%}
}

/*Teams Section*/
.teams .card a{
    color: var(--text);
}

.teams .title::after{
    content: "Proudly Created";
}

.teams .carousel .card{
    background: var(--button);
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.teams .carousel .card:hover{
    background: var(--color);
}

.teams .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.teams .carousel .card:hover .box{
    transform: scale(1.01);
}

.teams .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

.teams .carousel .card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--background);
    transition: all 0.3s ease;
}

.teams .carousel .card:hover img{
    border-color: var(--text);
}

.owl-dots{
    text-align: center;
    margin-top: 20px;
}

.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid var(--button)!important;
    transition: all 0.3s ease;
}

.owl-dot.active{
    width: 50px;
    border-radius: 5px;
}

/*Contact Section*/
.contact .title::after{
    content: "get in touch";
}

.contact .contact-content .column{
    width: calc(50% - 50px);
}

.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p{
    text-align: justify;
}

.contact .contact-content .left .icons{
    margin: 10px 0;
}

.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .row .info{
    margin-left: 30px;
}

.contact .contact-content .row i{
    font-size: 25px;
    color: var(--color);
}

.contact .contact-content .info .head{
    font-weight: 500;
}

.contact .contact-content .info .sub-title{
    color: #333;
}

.contact .right form .fields{
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea{
    height: 80px;
    width: 100%;
}

.contact .right form .name{
    margin-right: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}

.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}

.contact .right form .button-area{
  display: flex;
  align-items: center;
}

.right form .button-area button{
  color: var(--button);
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: transparent;
  border: 2px solid var(--color);
  transition: all 0.3s ease;
}

.right form .button-area button:hover{
  color: var(--text);
  background-color: var(--background);
}

/*Footer*/
footer{
    background: var(--background);
    padding: 15px 23px;
    color: var(--text);
    text-align: center;
}

footer span a{
    color: var(--color);
    text-decoration: none;
}

footer span a:hover{
    text-decoration: underline;
}