:root {
    --main-color:#191f3e;
    --secondary-color:#ff7926;
    --shadow-color:gray;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

@-webkit-keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

*, html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

p {
    letter-spacing: 1.5px;
}

li, a, button, p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
}

body {  
    font-family: "Roboto", sans-serif;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Archivo Black", sans-serif;
    color:var(--main-color);
    text-shadow: 2px 2px var(--shadow-color);
    line-height: 1;
    text-align: center;
    text-align: left;
}

h1 {
    font-size: 6vw;
}

h2 {
    font-size: 4vw;
}

h3 {
    font-size: 3vw;
}

h4 {
    font-size: 2vw;
}

h5 {
    font-size: 1.5vw;
}

h6 {
    font-size: 1.2vw;
}

@media (max-width: 767px){
    h1 {
        font-size: 14vw;
    }
    
    h2 {
        font-size: 13vw;
    }
    
    h3 {
        font-size: 12vw;
    }
    
    h4 {
        font-size: 11vw;
    }
    
    h5 {
        font-size: 10vw;
    }
}



.color-button, .hero-button, .sp-button, .hs-button, .services-container-button, .dev-options-button, .about-page-button, .form-button {
    cursor: pointer;
    padding: 9px 25px;
    background-image: linear-gradient(#191f3e, #212d64);
    border: none;
    border-radius: 50px;
    color: rgb(237, 237, 237);
    font-weight: bold;

    -webkit-animation: AnimationName 47s ease infinite;
    -moz-animation: AnimationName 47s ease infinite;
    animation: AnimationName 47s ease infinite;

}

button:hover{
    background-image: none;
    background-color: var(--secondary-color);
    scale: 1.1;
}

.header-container {
    width: 100%;
}

.hero-section{
    width: 100%;
    height: 85vh;
    padding: 0 15px;
    background-size: cover;
    background-attachment: fixed;
    background-image: url("images/hero-bg.jpg");

}

@media (max-width: 767px){
   .hero-section {
    background-image: url("images/mobile-hero-background.jpg");
   }
}



.hero-subtext {
    width: 100%;
    text-align: center;
    font-size: 25px;
    margin: 10px auto;
    color: var(--secondary-color);
    font-weight: bold;
    text-shadow: 1px 1px black;
}

.hero-content{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 25px 5px;
    align-content: center;
}

.hero-button{
    margin: 10px;
    font-size: 40px;
}

/********************************/
/* Homepage Services Section  **/
/******************************/

.homepage-services {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hs-text-container {
    width: 50%;
}

@media (max-width: 1000px){
    .hs-text-container {
        width: 100%;
    }
}

.hs-text-header {
    text-align: center;
}

.hs-text-paragraph {
    font-size: 2.5vw;
    margin: 20px;
    text-align: center;
}

@media (max-width: 1000px){
    .hs-text-paragraph {
        font-size: 4vw;
    }
}

.hs-text-services-header {
    margin: 20px auto;
    width: 100%;
    color: var(--secondary-color);
    text-shadow: 2px 2px black;
    text-align: center;
}

.hs-list-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    @media (max-width: 1000px){
        width: 100%;
    }
}

.hs-list-item {
    font-size: 25px;
    list-style-image: url("/images/div-img.png");
    margin: 10px auto;
    text-align: left;
    font-weight: bold;
    overflow-x: hidden;
}

.hs-image-container {
    width: 50%;
    float: right;
    margin: auto;
    object-fit: cover;
    overflow: hidden;
}

@media (max-width: 1000px){
    .hs-image-container {
        width: 100%;
    }
}  

.hs-image {
    height: 100%;
    margin: auto;
    @media (max-width: 1000px){
        width: 100%;
    }  
    
}

.hs-button-container {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.hs-button {
    margin: 10px auto;
    font-size: 35px;
}

/********************************/
/****** DevCare Section  *******/
/******************************/

.devcare-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 25px auto;
}

.dev-header-1 {
    margin-top: 2rem;
    text-align: center;
    font-size: clamp(4rem, 4vw, 4vw);
    text-shadow: 2px 2px gray;    
}

.dev-header-2 {
    text-align: center;
    color: var(--main-color);
    text-shadow: none;
}

.key-container {
    margin: 5rem auto;
}

.key-container .fa-solid {
    font-size: 100px;
    color: var(--secondary-color);
    text-shadow:black 2px 2px;
}

.dev-text {
    width: 80%;
    margin: 1.5rem auto;
    color: black;
    font-size: clamp(1.5rem, 1.5vw, 1.5vw);
    @media (max-width: 767px){
        width: 90%;
    }
}

.dev-blocks-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 50px;
    margin: 0 auto;
}

.dev-block {
    color: white;
    text-align: center;
    width: 30%;
    border-radius: 20px;
    margin: 10px auto;
    background: linear-gradient(270deg, #191f3e, #212d64);
    background-size: 300% 300%;

    -webkit-animation: AnimationName 47s ease infinite;
    -moz-animation: AnimationName 47s ease infinite;
    animation: AnimationName 47s ease infinite;
}

@media (max-width: 1200px){
    .dev-block {
        width: 45%;
        align-self: center;
    }
}

@media (max-width: 767px){
    .dev-block {
        width: 90%;
        align-self: center;
    }
}

.dev-img {
    margin: 20px;
    width: 100px;
}

.dev-header-3 {
    color: white;
    text-align: center;
    font-size: 2vw;
}

@media (max-width: 1200px){
    .dev-header-3 {
        font-size: 4vw;
    }
}

@media (max-width: 767px){
    .dev-header-3 {
        font-size: 6vw;
    }
}

.dev-desc {
    color: white;
    padding: 20px;
    font-size: 1.2rem;
}

.hidden-text-1 {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
}

.hidden-text-2 {
    height: 300px;
    display: none;
}

.dev-link, .dev-link-2 {
    color: #f8f8f8;
    background-color:#ff7926;
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
    border-style: none;
    position: fixed;
    width: 50%;
    bottom: 20px;
    left: 25%;
    font-weight: bold;
}

.dev-link:hover, .dev-link-2:hover {
    color: #ff7926;
    background-color: #f8f8f8;
}

/********************************/
/****** Why Us? Section  *******/
/******************************/


.why-us {
    width: 100%;
    background-image: url("images/question-marks.png");
    background-attachment: fixed;
    padding-top: 5vh;
    text-align: center;
}

.why-us-header {
    text-align: center;
}

.why-us-desc {
    margin: 25px;
    text-align: left;
    font-size: 1.5rem;
}

/********************************/
/****** Reviews Section  *******/
/******************************/

.reviews {
    width: 100%;
    background: linear-gradient(270deg, #191f3e, #212d64);
    background-size: 300% 300%;

    -webkit-animation: AnimationName 47s ease infinite;
    -moz-animation: AnimationName 47s ease infinite;
    animation: AnimationName 47s ease infinite;
    padding: 25px 0px;
}

.reviews-container {
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 50px;
}

@media (max-width: 767px){
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
}

.reviews-header {
    width: 100%;
    text-align: center;
    margin: 25px auto;
    color: white;
    text-shadow: 2px 2px gray;
}

.review-card {
    width: 80%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    margin: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-pic {
    width: 120px;
    height: 120px;
    margin: 1rem;
    border-radius: 100%;
    align-self: center;
}

.client-name {
    color: white;
    font-size: 1.5rem;
    align-self: center;
}

.bus-name {
    color: white;
    margin: .5rem auto;
}

.review {
    color: white;
    margin: 1rem auto;
    font-style: italic;
    padding: 10px;
    line-height: 1.5;
}

.speech-bubble {
    width: 100%;
    height: 100%;
}

.sp-img-container {
    width: 50%;
    height: auto;
    margin: 0 auto;
    padding: 50px;
    @media (max-width: 1000px){
        width: 100%;
        padding: 30px;
    }
}

.sp-img {
    width: 100%;
    
}

.sp-txt-container {
    width: 100%;
    text-align: center;
    @media (max-width: 767px){
        width: 100%;
    }
}

.sp-header {
    margin: 2rem 2rem;
    text-align: center;
    font-size: clamp(3rem, 3vw, 4vw);
    text-shadow: 2px 2px gray;
}

.sp-text {
    font-size: clamp(1.3rem, 1.5vw, 1.5vw);
}

.sp-button {
    font-size: 2rem;
    height: 100%;
    margin: 2rem;
    @media (max-width: 767px){
        font-size: 1.5rem;
    }
}

.color-text {
    background-image: linear-gradient(#191f3e, #212d64);
    color: transparent;
    background-clip: text;
    font-weight: bold;
}

.color-head {
    color: #212d64;
    text-shadow: 2px 2px gray;
}

.color-head-2 {
    color: #ff7926;
    text-shadow: 2px 2px gray;
}

/********************************/
/****** Services Page  *******/
/******************************/

.services-folder {
    margin: 50px 150px;
    background-color: #191f3e;
    overflow: hidden;
    @media (max-width: 1200px){
        margin: 10px;
    }
}

.folder-tab {
    width: 30%;
    float: right;
    position: relative;
    height: 75px;
    background-color: #191f3e;
    bottom: 20px;
    transform-origin: bottom left;
    transform: skewX(-20deg);
    @media (max-width: 1500px){
        height: 50px;
        top: 25px;
    }
}

.folder-tab2 {
    background-color: white;
    height: 50px;
    width: 100%;
    
}

.services-folder-content{
    width: 70vw;
    @media (max-width: 1500px){
        padding: 5px;
        height: auto;
        width: 100%;
    }
}

/********************************/
/****** Services Section  *******/
/******************************/

.services-header {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 50px auto;
}

@media (max-width: 767px){
    .services-header {
        font-size: 50px;
    }
}

.services-container-parent {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services-container {
    width: 30vw;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1500px){
    .services-container {
        width: 100%;
    }
}

.service-pic {
    width: fit-content;
}

.service-type {
    text-align: center;
    margin: 10px 0;
}

.service-description {
    font-size: 1.2rem;
}

.services-page-button-container {
    display: flex;
    justify-content: center;
    margin: 0 50px;
}

.services-container-button {
    display: flex;
    justify-self: center;
    font-size: 40px;
    margin-bottom: 50px;
}

/********************************/
/****** Loading Circles  *******/
/******************************/

.services-container-parent-circle {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    width: 100%;
}

.circle-desc-header {
    display: flex;
    justify-content: center;
    font-size: 50px;
    text-align: center;
    font-size: clamp(3rem, 4vw, 4vw);
    text-shadow: 2px 2px gray;
    color: #191f3e;
    margin-bottom: 50px;
    @media (max-width: 767px){
        margin-bottom: auto;
    }
  }

.circles-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .circle {
    width: 150px;
    height: 150px;
    margin: auto 100px;
    @media(max-width: 1500px){
        margin: 50px 30px;
        width: 100px;
        height: 100px;
    }
  }
  
  .circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#191f3e 0%, #ddd 0%);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .circle-text {
    position: absolute;
    font-size: 1.5em;
    font-weight: bold;
    color: white;
  }

  .circle-text-2 {
    text-align: center;
    margin: 20px auto;
    font-weight: bold;
    color:#191f3e;
  }

  .circle-desc-container {
    width: 75%;
    text-align: center;
    margin: 100px auto 0 auto;
    @media (max-width: 767px){
        margin: 50px auto 0 auto;
    }
  }

  .circle-desc {
    font-size: 1.2rem;
    text-align: left;
  }


/********************************/
/**** You Wouldn't Section  ****/
/******************************/

.services-container-parent-2 {
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
    @media (max-width: 1500px){
        flex-direction: column;
    }
}

.you-container-1 {
    width: 30%;
    @media (max-width: 1500px){
        width: 100%;
    }
}

.you-container-2 {
    width: 50%;
    @media (max-width: 1500px){
        width: 100%;
        padding: 0 20px;
    }
}

.you-header {
    display: flex;
    justify-content: center;
    font-size: 50px;
    text-align: center;
    font-size: clamp(3rem, 4vw, 4vw);
    text-shadow: 2px 2px gray;
    color: #191f3e;
    margin-bottom: 20px;
}

.you-desc {
    font-size: 1.2rem;
    @media (max-width: 767px){
        margin-bottom: 50px;
    }
}

/********************************/
/**** DevCare Section  ****/
/******************************/

.services-container-parent-3 {
    text-align: center;
    background-color: #191f3e;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 1000px){
        flex-direction: column;
    }
}

.devcare-container-1 {
    width: 50%;
    @media (max-width: 1000px){
        width: 100%;
    }
}

.devcare-header {
    font-size: 50px;
    text-align: center;
    font-size: clamp(3rem, 4vw, 4vw);
    color: white;
    text-shadow: 2px 2px gray;
    margin: 50px auto 10px auto;
    padding: 10px;
}

.devcare-header-2 {
    font-size: 50px;
    color: #ff7926;
    text-align: center;
}

.devcare-description {
    font-size: 1.2rem;
    padding: 50px;
    color: white;
    text-align: left;
}

.devcare-container-2 {
    width: 50%;
}

@media (max-width: 1000px){
    .devcare-container-2 {
        width: 100%;
    }
}

.devcare-logo {
    width: 80%;
}

.devcare-container-3 {
    width: 100%;
}

/********************************/
/*** DevCare Section Part II ***/
/******************************/

.services-container-parent-4 {
    display: flex;
    justify-content: space-evenly;
    background-color: #191f3e;
}

@media (max-width: 1000px){
    .services-container-parent-4 {
        flex-direction: column;
    }
}

.devcare-options {
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding: 50px;
    border-radius: 10px;
    width:fit-content;
    align-self: center;
    flex-wrap: wrap;
    margin: 10px;
}

@media (max-width: 1000px){
    .devcare-options {
        width: 90%;
    }
}

.dev-options-header {
    font-size: 50px;
    color:#191f3e;
    margin-bottom: 20px;
    text-align: center;
}

.dev-options-header-2 {
    font-size: 30px;
    color:#ff7926;
    text-shadow: 1px 1px black;
    margin-bottom: 20px;
    text-align: center;

}

.dev-options-list {
    color:#191f3e;
    list-style: none;
}

.dev-options-list li {
    font-size: 20px;
    margin: 15px auto;
    text-align: left;
    width: 100%;
}

.dev-positive:before {
    content: "+";
    margin-right: 10px;
}
.dev-positive {
    font-weight: bold;
    color:#191f3e;
}

.dev-negative {
    color:#000000b6;
}

.dev-negative:before {
    content: "-";
    margin-right: 10px;
    color:#000000b6;
}

.dev-pricing {
    font-size: 40px;
    color:#191f3e;
    text-shadow: none;
    text-align: center;
    margin-bottom: 5px;
}

.dev-commit {
    color:#191f3e;
    margin-bottom: 20px;
    text-align: center;
}

.dev-options-button-container {
    border: 3px #ff7926;
    border-style: solid none none none;
    padding: 20px;
}

/********************************/
/*******   About Page  *********/
/******************************/

.about-page-container {
    display: flex;
    justify-content: center;
    @media (max-width: 767px){
        flex-direction: column;
    }
}

.about-page-pic-container {
    width: 40%;
    padding: 25px;
    @media (max-width: 767px){
        width: 100%;
    }
}

.about-page-pic {
    width: 100%;
    border-radius: 10px;
}

.about-page-desc-container {
    width: 50%;
    @media (max-width: 767px){
        width: 100%;
    }
}

.about-page-header {
    font-size: 50px;
    text-align: center;
    font-size: clamp(3rem, 4vw, 4vw);
    color:#191f3e;
    text-shadow: 2px 2px gray;
    margin: 50px auto 10px auto;
    padding: 10px;
}

.about-page-desc {
    font-size: 1.2rem;
    padding: 10px;
}

.about-page-button {
    display: flex;
    justify-self: center;
    margin: 50px;
    font-size: 35px;
}


/********************************/
/***     Contact Us Page     ***/
/******************************/

.form-container{
    background-image: url("images/hero-bg.jpg");
    height: 100vh;
    width: 100%;
    padding: 20px;
}

.form-header {
    text-align: center;
    font-size: 3rem;
    margin: 5vh auto;
}

.contact-form {
    width: 50%;
    display: flex;
    justify-self: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ffffff53;
    border-radius: 10px;
    padding-bottom: 10px;
}

.contact-form form {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
}

.contact-form form textarea {
    height: 100px;
    margin: 20px auto;
    width: 75%;
}

.contact-form button {
    width: 25%;
    align-self: center;
}

.contact-form label {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin: 20px auto;
}

.contact-form input {
    height: 50px;
    border-radius: 5px;
    font-size: 1.2rem;
    text-align: center;
    margin: 20px auto;
    width: 75%;
}

.contact-form form textarea {
    height: 100px;
    border-radius: 5px;
    font-size: 1.2rem;
}

.contact-form button {
    width: auto;
    align-self: center;
    font-size: 2rem;
}

@media (max-width: 1000px){

    .form-container{
        background-image: url("images/mobile-hero-background.jpg");
        height: 100vh;
        width: 100%;
        padding: 50px;
    }
    
    .contact-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
    }
    
    .contact-form form {
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        background-color: white;
        width: auto;
    }

    .contact-form form textarea {
        height: 300px;
        margin: 20px 0;
        width: 100%;
    }
    
    .contact-form button {
        width: 25%;
        align-self: center;
    }
    
    .contact-form label {
        font-size: 1.2rem;
        font-weight: bold;
        text-align: center;
        margin: 10px 0;
    }
    
    .contact-form input {
        height: 50px;
        border-radius: 5px;
        font-size: 1.2rem;
        text-align: center;
        margin: 20px 0;
        width: 100%;
    }
    
    .contact-form form textarea {
        height: auto;
        border-radius: 5px;
        font-size: 1.2rem;
    }
    
    .contact-form button {
        width: auto;
        align-self: center;
        font-size: 2rem;
    }
    
}

form { max-width: 400px; margin: auto; }
label { display: block; margin-top: 10px; }
input, textarea { width: 100%; padding: 8px; margin-top: 5px; }
.hidden { display: none; } /* Honeypot field is hidden */

.form-container {
    height: auto;
}




  



