@import url(phone.css);

html {
    scroll-behavior: smooth;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: black;
    transition: 0.3s ease;
}

nav{
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: white;
    padding: 10px 30px;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    box-shadow: 0px 1px 20px rgb(230, 224, 224);
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
}

nav ul.navlinks{
    display: flex;
    list-style-type: none;
    gap: 50px;
    align-items: center;
}
nav .menu {
    display: flex;
    gap: 50px;
}
nav ul.navlinks li{
    width: 100px;
    text-align: center;
}
nav ul.navlinks a{
    width: 100%;
    text-align: center;
}
nav ul.navlinks a::after{
    content: "";
    width: 0;
    display:block;
    color: black;
    background-color: black;
    height: 3px;
    transition: 0.3s ease;
}

nav ul.navlinks a:hover::after{
    width: 100%;
}
nav .contact {
    width: fit-content;
}

nav .contact a {
    background-color:black;
    color: white;
    padding: 5px 20px;
    border-radius: 2px;
}


/*  scroll bars */

::-webkit-scrollbar {
  width: 7px;
   transition: 0.3s ease;
   height: 10px;
}

::-webkit-scrollbar:hover {
  width: 20px;
}

::-webkit-scrollbar-thumb {
  background-color:black;
  height: 10px;
  transition: 0.3s ease;
  width: 30px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  height: 30px;
}

button.menubtn {
    width: 100px;
    font-size: 0.85em;
    padding: 0;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 999;
    display: none;
}

button.menubtn.mob {
    padding: 5px 0;
    width: 100%;
}

/*MOBILE MENU*/

div.mobile {
    background-color: white;
    width: fit-content;
    height: fit-content;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    left: -300px;
    align-items: left;
    transition: 0.5s ease;
    display: none;
    position: fixed;
    margin-top: 10px;
}
 .mobile.visible {
        left: 0;
    }

div.mobile ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    gap: 10px;
}

div.mobile ul li {
    width: 100%;
    text-align: left;
}

div.mobile ul li a{
    width: 100%;
}
div.mobile ul li a::after{
    content: "";
    background-color: black;
    width: 0;
    display: block;
    height: 2px;
    transition: 0.3s ease;
}
div.mobile ul li a:hover::after{
    width: 100%;
}

div.mobile .contact{
    width: 100%;
    margin-top: 10px;
}

div.mobile .contact a{
    background-color: black;
    color: white;
    padding: 5px ;
}

/*======== HERO PAGE STYLING==========*/

div.hero {
    width: 100%;
    padding: 10px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(232, 217, 217);

    margin-bottom: 50px;
}

.hero .container {
    width: 80%;
    margin:auto;
    height: fit-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
}

.hero .container .text {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 10px;
}
.hero .container .text h1{
    font-size: 2.75em;

}

.hero .container .text p{
    font-size: 1.05em;
}

.hero .container .cta{
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.hero .container .cta a{
    background-color: black;
    padding: 10px 20px;
    color: white;
    border-radius: 2px;
    font-size: 1.05em;
}

/*======== ABOUT PAGE STYLING==========*/

div.about{
    width: 100%;
    margin-bottom: 100px;
    margin-top: 100px;
}

.about .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    gap: 20px;
}

.about .container .img {
    width: 50%;
    overflow: hidden;
    height: 400px;
    border-radius: 3px;
}

.about .container .img img{
    width: 100%;
    object-fit: cover;
    filter:grayscale();
    border-radius: 3px;
    transition: 0.3s ease;
    z-index: 1;
}
.about .container .img img:hover{
    filter: grayscale(0);
}

.about .container .desc {
    width: 50%;
    overflow: hidden;
}

.about .container .desc h2{
    font-size: 1.9em;
    color: grey;
    margin-bottom: 10px;
}

.about .container .desc p{
    margin-bottom: 10px;
}

.about .container .desc a{
    background-color: black;
    padding: 5px 20px;
    color: white;
    margin-top: 20px;
    display: block;
    width: fit-content;
}

/*======== SERVICES PAGE STYLING==========*/

div.services {
    width: 100%;
    padding:0 20px;
    margin-bottom: 100px;
    margin-top: 100px;
}

.services .container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.services .container .service {
    width: 300px;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 20px 0;
    height: 300px;
    border-radius: 3px;
    box-shadow: 0px 0px 20px rgb(224, 227, 220);
}
.services .container .service:hover{
    transform: translateY(-10px);
    scale: 1.05;
    box-shadow: 2px 2px 20px grey;
}

.services .container .service a{
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 3px 30px;
}

/*======== SERVICES PAGE STYLING==========*/

div.projects {
    width: 100%;
    margin-bottom: 100px;
}

.projects h2{
    text-align: center;
    margin-bottom: 20px;
}

.projects .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.projects .container .project {
    width: 300px;
    background-color: white;
     box-shadow: 0px 0px 20px rgb(224, 227, 220);
     border-radius: 5px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding-bottom: 10px;
}

.projects .container .project a{
    border-radius: 3px;
}

.projects .container .project .imageDiv1{
    height: 200px;
    width: 100%;
   background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/pexels-photo-2047905.jpeg);
    border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}

.projects .container .project .imageDiv2{
    height: 200px;
    width: 100%;
   background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/secretary.jpeg);
    border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}

.projects .container .project .name {
    text-align: center;
}

.projects .container .project .name a{
    background-color: black;
    color: white;
    padding: 4px 10px;
    margin-top: 10px;
    display: inline-block;
}

.projects .container .project .imageDiv1.toggle{
      background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/busyman.jpeg);
       border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.projects .container .project .imageDiv2.toggle2{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/instructor3.jpeg);
       border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.projects .container .project .imageDiv3{
    height: 200px;
    width: 100%;
   background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/pexels-photo-699122.jpeg);
    border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}

.projects .container .project .imageDiv3.toggle3{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/pexels-photo-572056.jpeg);
       border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.projects .container .project .imageDiv4{
    height: 200px;
    width: 100%;
   background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/pexels-photo-699122.jpeg);
    border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}

.projects .container .project .imageDiv4.toggle4{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/pexels-photo-2047905.jpeg);
       border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

/*======== PRICING PAGE STYLING==========*/

div.pricing{
    width: 100%;
    margin-bottom: 100px;
    padding: 50px 20px;
    background-color: black;
}

.pricing .container{
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    
    color: white;
    padding: 10px 20px;
}

.pricing .container .pack{
    width: 300px;
    height: 300px;
    box-shadow: 0 0 10px rgb(38, 28, 28);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
}

.pricing .container .pack ul {
    list-style-image: none;
    list-style-type: none;
}

.pricing .container .pack a{
    background-color: white;
    width: 100%;
    padding: 10px 0;
    padding-left: 10px;
    border-radius: 3px;
}

.pricing .container .pack span {
    color: aqua;
    font-weight: 600;
}

/*  business website*/
.pricing .container .pack.business{
    background-color: rgb(23, 23, 23);
}

.pricing .container .pack.business a{
    background-color: black;
    color: white;
}


/*======== CONTACT PAGE STYLING==========*/

div#contact {
    width: 100%;
    background-color: rgb(247, 251, 255);
    padding: 20px 50px;
    margin-bottom: 100px;
}

div#contact .top {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

div#contact #myForm {
    width: 80%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 20px;
    height: fit-content;
    align-items: center;
    
}

div#contact #myForm .content {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

div#contact #myForm .inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}

div#contact #myForm .inputs input {
    padding: 20px 10px;
    border: none;
    outline: none;
    background-color: beige;
    border-radius: 5px;
    font-weight: 600;
}

div#contact #myForm .comment {
    width: 50%;
    height: 100%;
}

div#contact #myForm .comment textarea {
    height: 200px;
    width: 100%;
    border: none;
    resize: none;
    background-color:beige;
    font-weight: 600;
    box-sizing: border-box;
    padding: 10px 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

div#contact #myForm .send {
    
    margin: auto;
}

div#contact #myForm .send button {
    width: 150px;
    border: none;
    padding: 10px 30px;
    background-color: black;
    color: white;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
}

/*======== PRICING PAGE STYLING==========*/

footer {
    width: 100%;
    color: white;
    background-color: black;
    padding: 20px 50px;
}

footer .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .container a{
    color: grey;
}