/* Start Global Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --main-color: #EF6900;
    --main-color-alt: rgb(226, 58, 17);
    --main-transition: 0.3s;
    --main-padding-top: 80px;
    --main-padding-bottom: 80px;
    --section-background: #121212;
    --text-color: #868686;
}

::selection {
    background-color: var(--main-color);
    color: white;
}

html {
    scroll-behavior: smooth;
}

body {
    cursor: url(../Imgs/icons8-select-cursor-24.png), auto;
    font-family: "Special Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: var(--section-background);
}

.bodyHeader {
    height: 100vh;
    overflow: hidden;
}

a {
    text-decoration: none;
}


ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    transition: 550ms;
    width: 5px;
    position: fixed;
    transition: 600ms;
}

::-webkit-scrollbar:hover {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: var(--section-background);

}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--main-color-alt);
}

.container {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
}

.main-title {
    text-align: center;
    padding: 0 80px;

}
@media (max-width: 767px) {
    .main-title {
        padding: 0 25px;
    }
}
.main-title h2 {
    color: #e9e9e9;
    letter-spacing: 1.7px;

}
.main-title p {
    color: #8a8a8a;
    margin: 25px auto 80px;
}
/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

/* End Global Rules */
/* Start loder */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background-color: var(--section-background);
  }
.loader {
    width: 112px;
    height: 112px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  .loader.hidden {
    display: none;
  }
  
  .box1,
  .box2,
  .box3 {
    border: 16px solid #f5f5f5;
    box-sizing: border-box;
    position: absolute;
    display: block;
  }
  
  .box1 {
    width: 112px;
    height: 48px;
    margin-top: 64px;
    margin-left: 0px;
    animation: abox1 4s 1s forwards ease-in-out infinite;
  }
  
  .box2 {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 0px;
    animation: abox2 4s 1s forwards ease-in-out infinite;
  }
  
  .box3 {
    width: 48px;
    height: 48px;
    margin-top: 0px;
    margin-left: 64px;
    animation: abox3 4s 1s forwards ease-in-out infinite;
  }
  
  @keyframes abox1 {
    0% {
      width: 112px;
      height: 48px;
      margin-top: 64px;
      margin-left: 0px;
    }
  
    12.5% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 0px;
    }
  
    25% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 0px;
    }
  
    37.5% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 0px;
    }
  
    50% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 0px;
    }
  
    62.5% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 0px;
    }
  
    75% {
      width: 48px;
      height: 112px;
      margin-top: 0px;
      margin-left: 0px;
    }
  
    87.5% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 0px;
    }
  
    100% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 0px;
    }
  }
  
  @keyframes abox2 {
    0% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 0px;
    }
  
    12.5% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 0px;
    }
  
    25% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 0px;
    }
  
    37.5% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 0px;
    }
  
    50% {
      width: 112px;
      height: 48px;
      margin-top: 0px;
      margin-left: 0px;
    }
  
    62.5% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 64px;
    }
  
    75% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 64px;
    }
  
    87.5% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 64px;
    }
  
    100% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 64px;
    }
  }
  
  @keyframes abox3 {
    0% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 64px;
    }
  
    12.5% {
      width: 48px;
      height: 48px;
      margin-top: 0px;
      margin-left: 64px;
    }
  
    25% {
      width: 48px;
      height: 112px;
      margin-top: 0px;
      margin-left: 64px;
    }
  
    37.5% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 64px;
    }
  
    50% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 64px;
    }
  
    62.5% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 64px;
    }
  
    75% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 64px;
    }
  
    87.5% {
      width: 48px;
      height: 48px;
      margin-top: 64px;
      margin-left: 64px;
    }
  
    100% {
      width: 112px;
      height: 48px;
      margin-top: 64px;
      margin-left: 0px;
    }
  }
  
/* Start navbar */

nav {
    background-color: black;
    position: sticky;
    border-radius: 0 0px 12px 12px;
    top: 0;
    z-index: 999;
    box-shadow: 0 0 10px #6161619e;
    transition: var(--main-transition);
}

@media (max-width: 767px) {
    nav {
        border-radius: 0;
    }
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    nav .container {
        height: 85px;
        width: 100%;
    }
}

nav .container .logo img {
    width: 50px;
    filter: drop-shadow(0 0 10px var(--main-color));
    cursor: pointer;
}
@media (max-width: 991px) {
    nav .container .logo img {
        width: 40px;
    }
}

nav .container .main-nav {
    display: flex;
}
@media (max-width: 767px) {
    nav .container .main-nav {
        display: none;
    }
    nav .container .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgb(0 0 0 / 50%);
        z-index: 1000;
    }
}

/* */ 
.burger {
    position: relative;
    width: 40px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
  }
  @media (min-width: 768px) {
    .burger {
        display: none;
    }
  }
  
  .burger input {
    display: none;
  }
  
  .burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }
  
  .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }
  
  .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
  }
  
  .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  
  .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
    left: 5px;
  }

nav .container .main-nav li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
    color: var(--text-color);
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 0.01em;
    padding-right: 45px;
    transition: var(--main-transition);
}

@media (max-width: 991px) {
    nav .container .main-nav li a {
        padding-right: 25px;
    }
}



nav .container .main-nav li:last-of-type a {
    padding-right: 0;

}
nav .container .main-nav li a:hover {
    color: var(--main-color-alt);
}

@media (max-width: 767px) {
    nav .container .main-nav li a:hover {
        background-color: #86868675;
    }
}

nav .container .main-nav li a.active {
    color: var(--main-color-alt);
}
@media (max-width: 767px) {
    nav .container .main-nav li a.active {
        background-color: #86868675;
    }
}
.btn-primary {
    background-color: var(--main-color);
    color: #fff;
    padding: 11px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--main-transition);
}

.btn-primary:hover {
    background-color: var(--main-color-alt);
}

@media (max-width: 991px) {
    .btn-primary.nav,
    .container a.nav {
        display: none;
    }
}

/* End navbar */


/* Start home */
.home {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    overflow: hidden;
}

@media (max-width: 767px) {
    .home {
     background-image: url(../Imgs/home2.jpg);
     background-size: cover;
     position: relative;
     background-repeat: no-repeat;
    }
    .home::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 0;
    }
}

.home .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: calc(82vh - 85px);
    
}

.home .container .text {
    flex: 1;
    z-index: 1;
    position: relative;
}

@media (max-width: 991px) {
    .home .container .text {
        text-align: center;
    }
}

.home .container .text h2 {
    color: #7c7c7c;
    font-size: 19px;
    letter-spacing: 1.5px;
}
@media (max-width: 767px) {
    .home .container .text h2 {
        font-size: 15px;
        display: inline;
    }
}

.home .container .text h1 {
    color: var(--text-color);
    font-size: 30px;
    line-height: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
@media (max-width: 767px) {
    .home .container .text h1 {
        font-size: 18px;
        display: inline;
        margin-bottom: 0;
    }
}

.home .container .text h1 span {
    height: 48px;
    font-size: 60px;
    font-weight: 700;
    color: var(--main-color);
    display: block;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .home .container .text h1 span {
        margin-top: -10px;
        font-size: 35px;
    }
}

@media (max-width: 991px) and (min-width: 767px) {
    .home .container .text h1 span {
        margin-top: 8px;
    }
}
@media (min-width: 992px) {
    .home .container .text h1 span::after {
        content: "_";
        color: var(--main-color);
        animation: blink 1s infinite;
    }
}   
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.home .container .text .divshab{
    display: flex;
    justify-content: center;
    color: var(--text-color);
    align-items: center;
    gap: 5px;
}

@media (min-width: 992px) {
    .home .container .text .divshab{
        display: none;
    }
    
}
.home .container .text .divshab span{
    font-size: 20px;
    font-weight: 500;
}
.home .container .text .divshab span.shab{
    font-size: 10px;
}

.home .container .text ul{
    display: flex;
    margin: 35px 0;
    
}

@media (max-width: 991px) {
    .home .container .text ul{
        justify-content: center;
        margin: 10px 0;
    }
}

.home .container .text ul li a{
    background: rgb(91 91 91 / 20%);
    margin-right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--main-transition);
}

.home .container .text ul li a:hover{
    background-color: transparent;
    color: white;
}

@media (max-width: 991px) {
    .home .container .text ul li a {
        margin-right: 20px;
    }
}

.home .container .text ul li:last-of-type a{
    margin-right: 0;
}

.home .container .text .botton{
    display: flex;
    margin: 35px 0;
    gap: 20px;  
}

@media (max-width: 991px) {
    .home .container .text .botton{
        justify-content: center;
    }
}

.home .container .text .botton button.btn-cv{
    background-color: transparent;
    border: 1px var(--text-color) solid;
    padding: 10px 35px;
    color: var(--text-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--main-transition);
}
.home .container .text .botton button.btn-cv:hover{
    background-color: white;
    color: black;
}

.home .container .text .stats{
    display: flex;
    background: rgb(91 91 91 / 20%);
    gap: 20px;
    width: fit-content;
    padding: 20px;
    border-radius: 7px;
    margin-top: 70px;
}

@keyframes home {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}
 

@media (max-width: 767px) {
    .home .container .text .stats{
        margin-top: 40px;
        width: fit-content;
        margin: 70px auto 0;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .home .container .text .stats{
        margin: 80px auto 0;
        width: 100%;
        justify-content: space-between;
        padding: 30px 45px;
    }
}

.home .container .text .stats .stat-box{
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid var(--text-color);
    padding: 10px 20px 10px 0;
    /* align-items: center; */
}

@media (max-width: 767px) {
    .home .container .text .stats .stat-box{
        padding: 10px 18px 10px 0;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .home .container .text .stats .stat-box{
        padding: 10px 58px 10px 0;
    }
}

.home .container .text .stats .stat-box:last-child{
    border-right: none;
    padding-right:0 ;
}

.home .container .text .stats .stat-box h3{
    color: var(--main-color);
    font-size: 22px;
}

@media (max-width: 767px) {
    .home .container .text .stats .stat-box h3{
        font-size: 20px;
    }
}

.home .container .text .stats .stat-box p{
    color: var(--text-color);
    font-weight: bold;
    font-size: 19px;
    letter-spacing: 1.2px;
}

@media (max-width: 767px) {
    .home .container .text .stats .stat-box p{
        font-size: 14px;
        font-weight: 600;
    }
}

.image img {
    width: 500px;
    object-fit: cover;
}

@keyframes slide {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}

@media (max-width: 991px) {
    .image img {
      display: none;
    }
}

/* Start Services */

.services{
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    overflow: hidden; 
}

.services .container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.services .container .box{
    text-align: center;
    background-color: #1b1b1b;
    border-radius: 18px;    
    opacity: 0;
    transform: translateY(50%);
    transition: 0.7s ease-in-out ;
}
.services .container .box#clean,
.services .container .box#design{
    transform: translateX(-70%);
}
.services .container .box#responsive,
.services .container .box#security{
    transform: translateX(70%);
}
.services .container .box.visible {
    opacity: 1;
    transform: translate(0,0) !important;
}

.services .container .box i{
    color: var(--main-color);
    font-size: 50px;
    padding: 30px 0 20px;
}
.services .container .box h3{
    color: var(--main-color);
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.services .container .box p{
    color: #616161;
    font-size: 15px;
    line-height: 1.7;
    margin: 30px; 
}

/* End Services */
/* Start About */
.about{
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    overflow: hidden; 
}
.about .container{
display: grid;
grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
    .about .container{
        grid-template-columns: 1fr;
    }
}

.about .container .text{
    width: 90%;
    padding: 20px; 
    flex: 1;
    justify-self: center;
}

@media (max-width: 991px) {
    .about .container .text{
        margin-top: 50%;
        z-index: 5;
        background-color: var(--section-background);
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .about .container .text{
        margin: 0 ;
        padding: 0;
    }
}

.about .container .text p{
    line-height: 2;
    color: var(--text-color);
}
@media (max-width: 767px) {
    .about .container .text p{
        font-size: 15px;
        line-height: 1.5;
    }
}

.about .container .text .btn-cv{
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 35px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--main-transition);
    margin: 30px 0;
}

@media (max-width: 991px) {
    .about .container .text .btn-cv{
        display: block;
        margin: 30px auto;
    }
}

.about .container .text .btn-cv:hover{
    background-color: var(--main-color-alt);
}

.about .container .spline{
    position: absolute;
    top: -2%;
    right: -25%;
    transform: scale(0.7);
}

@media (max-width: 991px) {
    .about .container .spline{
        top: -20%;
        right: 2%;
        transform: scale(0.6);
    }
}

@media (max-width: 767px) {
    .about .container .spline{
        display: none;
    }
}

/* End About */
.skills {
  padding-bottom: var(--main-padding-bottom);
  position: relative;
  overflow: hidden; 
}

.skills .container.visible{
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.skills .container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .skills .container{
        gap: 10px;
    }
}
.skills .container .skill {
    margin: 20px 0;
    width: 160px;
    height: 160px;
    position: relative;
    transform: scale(0.8);
}
@media (max-width: 767px) {
    .skills .container .skill{
       margin: 10px 0;  
       transform: scale(0.7);

    }
}

.skills .container .skill .outer {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #3333337c; 

}

.skills .container .skill .outer .inner {
    background-color: var(--section-background);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.skills .container .skill .text {
    font-size: 13px;
    color: var(--text-color);
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    text-align: center;  
}
svg {
    position: absolute;
    top: 0;
    left: 0;
}
.skills .container .skill .text .num {
    font-size: 25px;
    font-weight: bold;
    color: var(--main-color);
}
.skills .container .skill .outer .inner i {
    color: var(--text-color);
    font-size: 60px;
}

.skills .container .skill circle {
    fill: none;
    stroke-width: 20px;
    stroke-linecap: round;
    stroke-dasharray: 472;
    stroke-dashoffset: 472;
    stroke: url(#GradientColor);
    transition: 2s;
}
/* End Skills */

/* Start Portfolio */

.portfolio{
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    overflow: hidden; 
}

.portfolio .show-more{
    text-align: center;
    margin: 50px 0 0;
}

.portfolio .show-more button{
    padding: 10px 20px;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.portfolio .show-more button:hover{
    background-color: var(--main-color-alt);
}

.portfolio .container{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.portfolio .container .box{
    width: 500px;
    background-color: #1b1b1b;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: 0.7s ease-in-out;
    transform: translateY(50%);
}
.portfolio .container .box.overflow{
    max-height: 0;
    opacity: 0;
    transition: 0.7s ease-in-out;
}

.portfolio .container .box.one,
.portfolio .container .box.three{
    transform: translateX(-70%);
}



.portfolio .container .box.visible{
    opacity: 1;
    transform: translate(0, 0);
}

.portfolio .container .box .img{
    position: relative;
    overflow: hidden;
    
}
.portfolio .container .box .img::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.137);
    opacity: 0;
    transition: var(--main-transition);
    z-index: 1;

}


.portfolio .container .box .img:hover img{
    transform: scale(1.2);
}

.portfolio .container .box .img:hover::after{
    animation: over-img 0.5s;
}

@keyframes over-img {

    0%,
    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        width: 300%;
        height: 300%;
    }
}

.portfolio .container .box .img img{
    max-width: 100%;
    transition: var(--main-transition);
}

.portfolio .container .box .text {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 10px 15px 10px;
}
.portfolio .container .box .text h3{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.5;
    margin-left: 10px;
}
.portfolio .container .box .text p{
    color: #616161;
    font-size: 15px;
    line-height: 1.7;
    margin-right: 10px; 
}

/* End Portfolio */
/* Start Contact */
.contact{
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    overflow: hidden; 
}

.contact .container{
    display: flex;
}

.contact .container form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.contact .container form input,
.contact .container form textarea{
    width: 300px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #616161;
    font-size: 12px;
    letter-spacing: 1.5px;
    outline: none;
    transition: var(--main-transition);
    resize: none;
    background-color: #1b1b1b;
    padding: 15px 10px;
    caret-color: var(--main-color);
}
.contact .container form textarea{
    height: 150px;
}
.contact .container form input:focus,
.contact .container form textarea:focus{
    background-color: #353535;
    color: #fff;
}

.contact .container form button{  
    padding: 10px 20px;
    background: var(--main-color);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--main-transition);
    margin-top: 20px;
}

.contact .container form button:hover{
    background-color: var(--main-color-alt);
}

/* End Contact */
/* Start Footer */
footer{
    position: relative;
    overflow: hidden; 
    background-color: #1b1b1b;
    
}   

footer .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer .container .logo img {
    width: 50px;
    filter: drop-shadow(0 0 10px var(--main-color));
    cursor: pointer;
    margin-top: 30px;
}
@media (max-width: 991px) {
    footer .container .logo img {
        width: 40px;
    }
}

footer .container ul{
    display: flex;    
}

@media (max-width: 991px) {
    footer .container ul{
        justify-content: center;
        margin: 10px 0;
    }
}

footer .container ul li a{
    background: rgb(91 91 91 / 20%);
    margin-right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--main-transition);
}

footer .container ul li a:hover{
    background-color: transparent;
    color: white;
    transform: translateY(-10px);
}

@media (max-width: 991px) {
    footer .container ul li a {
        margin-right: 20px;
    }
}

footer .container .text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
}
@media (max-width: 991px) {
    footer .container .text{
        flex-direction: column;
        margin: 10px 0;
        gap: 20px;
    }
}
footer .container .text .email,
footer .container .text .phone{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}
footer .container .text .email a,
footer .container .text .phone a{
    transition: var(--main-transition);
    color: var(--text-color);
    font-size: 17px;
    font-weight: 500;  
    letter-spacing: 1px; 
}
footer .container .text .email a:hover,
footer .container .text .phone a:hover{
color: #c9c9c9;
}

footer .container .copyright{
    text-align: center;
    color: #494949;
    font-size: 12px;
    margin-bottom: 15px;
}

footer .container hr{
    width: 60%;
    border: 0.5px solid #3f3f3fad;
}
/* End Footer */












