* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    cursor: none;
}
:root {
    --light-color: white;
    --dark-color: black;
}
.dark-theme {
    --dark-color: rgb(255, 255, 255);
    --light-color: black;
}
#icon {
    width: 2%;
    margin-right: 25px;
}
 
#loader {
    height: 100vh;
background-color: #F6F6F6;
width: 100%;
position: fixed;
z-index: 200000000000;
background-image: url(./Images/Loader.gif);
background-repeat: no-repeat;
background-position: center;
background-size: 16%;
animation: load 3s linear forwards;
}
@keyframes load {
    0% {
        display: block;
    }
    100% {
        display: none;
    }
}

.cursor-dot {
    height: 10px;
    width: 10px;
    background-color: orangered;
}
.cursor-outline {
    height: 60px;
    width: 60px;
    border: 4px solid orange;
}
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1000000;
    pointer-events: none;
}
@media screen and (max-width: 992px) {
    .cursor-dot,
.cursor-outline {
    display: none;
}
body {
    cursor: pointer;
}

}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(255, 68, 0, 0.781);
}
::-webkit-scrollbar-track {
    background-color: rgb(185, 169, 169);
}
::selection {
    background-color: orangered;
    color: white;
}
nav {
    background-color: var(--light-color) !important;
    backdrop-filter: blur(3px);
}

nav .navbar-brand {
    font-weight: 900;
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--dark-color) !important;
}
nav .sft {
    border-bottom: 7px solid orange;
}
nav ul li a {
    margin: 0 20px;
    color: var(--dark-color) !important;
    font-weight: 700;
    position: relative;
}

nav ul li a::before {
    content: "";
    width: 0%;
    height: 2px;
    background-color: orange;
    position: absolute;
    bottom: 8px;
    left: 0;
   transition: all .5s linear;
}
nav ul li a:hover::before {
    width: 100%;
} 

.navbar .btn {
    color: white;
    font-weight: bold;
    background-image: linear-gradient(rgb(250, 163, 2), rgb(255, 77, 13));
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.navbar .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(182, 60, 11);
    width: 100%;
    min-height: 200px;
    border-bottom-right-radius: 30%;
    border-bottom-left-radius: 30%;
    transform: translateY(-100%);
    transition: all .4s ease-in;
    z-index: -1;
}
.navbar .btn:hover::before {
    transform: translateY(0%);
}

.navbar .btn:focus {
    box-shadow: none;
}

.modal-title {
    font-size: 30px;
    font-weight: 700;
    border-bottom: 5px solid orange;
}
.modal form input {
  border: 1px solid rgba(0, 0, 0, 0.603);
}
.modal form input:focus {
    box-shadow: none;
}
.modal .modal-body form .submit {
    color: white;
    font-weight: bold;
    background-image: linear-gradient(rgb(250, 163, 2), rgb(255, 77, 13));
}

/* nav-section-end --------------------- */










/* home-section-start --------------------- */
.home {
    min-height: 100vh;
    background-color: var(--light-color);
}
.home video {
    width: 100%; 
    height: 100vh; 
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(.7);
    margin-top: 80px;
    z-index: 2;
 }

 .homerow {
    position: relative;
    top: 200px;
    color: white;
    z-index: 3;
 }
 .homerow h4 {
    font-weight: 700;
    font-size: 25px;
    border-left: 5px solid orange;
    padding-left: 5px;
 }
 .homerow h1 {
    font-weight: 800;
    font-size: 50px;
 }
 .homerow h1 span {
    color: orange;
 }
 .homerow p {
    font-weight: 600;
    font-size: 19px;
 }
 .homerow button {
    color: white;
    font-weight: bold;
    background-image: linear-gradient(rgb(250, 163, 2), rgb(255, 77, 13));
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
 }
 .homerow button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(182, 60, 11);
    width: 100%;
    min-height: 200px;
    border-bottom-right-radius: 30%;
    border-bottom-left-radius: 30%;
    transform: translateY(-100%);
    transition: all .4s ease-in;
    z-index: -1;
}
.homerow button:hover::before {
    transform: translateY(0%);
}
.homerow button:hover {
    color: white;
}
.homerow button:focus {
    box-shadow: none;
}
.homerow img {
    width: 85%;
    position: relative;
    bottom: 80px;
    left: 30px;
    filter: drop-shadow(0px 0px 15px rgba(255, 166, 0, 0.76));
}
@media screen and  (max-width: 992px) {
    .homerow h4 {
        font-weight: 700;
        font-size: 18px;
        border-left: 5px solid orange;
        padding-left: 5px;
     }
     .homerow h1 {
        font-weight: 800;
        font-size: 35px;
     }
     .homerow h1 span {
        color: orange;
     }
     .homerow p {
        font-weight: 600;
        font-size: 15px;
     }
     .homerow button {
        color: white;
        font-weight: bold;
        background-image: linear-gradient(rgb(250, 163, 2), rgb(255, 77, 13));
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: none;
        font-size: 15px;
     }   
}
@media screen and  (max-width: 768px) {
.homerow img {
    width: 60%;
    margin-top: 90px;
}
}
@media  screen and (min-width: 768px) and (max-width: 992px) {
    .homerow img {
        width: 100%;
        margin-top: 90px;
    }
}
/* home-section-end --------------------- */










/* services-section-start --------------- */
.service {
    min-height: 100vh;
 padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
    top: 80px;
    background-color: var(--light-color);
}
.one{
    position: absolute;
    top: 0;
    rotate: -10deg;
    opacity: .5;
}
.two {
    position: absolute;
    bottom: 0;
    right: 50px;
    rotate: 10deg;
    opacity: .3;
}
@media screen and (max-width: 992px) {
    .soft {
        display: none;
    }
}
.service h1 {
    color: var(--dark-color);
    font-weight: 800;
    font-size: 50px;
    padding: 15px;
}
.service span {
    color: orange;
    border-bottom: 5px solid orangered;
}
.service .card {
    margin-top: 20px;
    background-color: orangered;
    color: white;
    text-align: center;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.411);
}
.service .card .card-title img {
    background-color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 10px;
}
.service .card-subtitle {
    font-weight: 800;
    font-size: 25px;
}
.service .card-text {
    font-weight: 600;
}
/* services-section-end --------------- */








/* projects-section-start ------------ */
.project {
   padding-bottom: 110px;
   background-color: var(--light-color);
}
.project h1 {
    color: var(--dark-color);
    font-weight: 800;
    font-size: 50px;
    padding: 25px;
}
.project h1 span {
    color: orange;
    border-bottom: 5px solid orangered;
}
.flickity-page-dots {
    display: none;
}
.carousel-cell {
    margin-top: 40px;
    width: 38%;
    height: 300px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.411);
    margin-right: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.carousel-cell .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 166, 0, 0.61);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transition: all .8s ease-in-out;
    transform: translateY(100%);
    border-radius: 10px;
}
.carousel-cell:hover .cover {
    transform: translateY(0%);
}
.carousel-cell .cover button {
    color: white;
    font-weight: bold;
    background:  rgb(255, 77, 13);
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
}
.carousel-cell .cover h5 {
    color: white;
    font-weight: 700;
}
.carousel-cell .cover button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(182, 60, 11);
    width: 100%;
    min-height: 200px;
    border-bottom-right-radius: 30%;
    border-bottom-left-radius: 30%;
    transform: translateY(-100%);
    transition: all .4s ease-in;
    z-index: -1;
}
.carousel-cell .cover button:hover::before {
    transform: translate(0%);
}
.carousel-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }
.flickity-prev-next-button {
    background: orangered;
    color: white;
    transition: all .5s linear;
}
.flickity-prev-next-button:hover {
    color: black;
}
 @media screen and (max-width: 430px) {
    .carousel-cell .cover h5 {
        color: white;
        font-weight: 500;
        font-weight: 14px;
    }
    .carousel-cell .cover button {
        color: white;
        font-weight: bold;
        background:  rgb(255, 77, 13);
        position: relative;
        overflow: hidden;
        border: none;
        z-index: 1;
        font-size: 13px;
    }
 }
 @media screen and (max-width: 768px) {
    .flickity-prev-next-button {
        width: 30px;
       height: 30px;
    }
 }
/* projects-section-end ------------ */











/* contact-section-start ---------------------- */
.contact {
    padding: 50px 50px 150px 50px;
    position: relative;
    background-color: var(--light-color);
}
.contact h1 {
    padding-bottom: 25px;
    color: black;
    font-weight: 800;
    font-size: 45px;
}
.contact h1 span {
    border-bottom: 8px solid orangered;
    color: white;
}
.contact .part1 {
    background-image: linear-gradient(rgb(250, 163, 2), rgba(226, 177, 15, 0.938));
    padding: 50px;
    border-top-left-radius: 20% 40%;
    border-bottom-right-radius: 20% 40%;
    position: relative;
}

.contact button {
    color: white;
    font-weight: bold;
    background-image: linear-gradient(rgb(250, 163, 2), rgb(255, 77, 13));
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.253);
 }
 .contact button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(182, 60, 11);
    width: 100%;
    min-height: 200px;
    border-bottom-right-radius: 30%;
    border-bottom-left-radius: 30%;
    transform: translateY(-100%);
    transition: all .4s ease-in;
    z-index: -1;
}
.contact button:hover::before {
    transform: translateY(0%);
}
.contact button:hover {
    color: white;
}
.contact button:focus {
    box-shadow: none;
}
.contact form input {
    font-size: 17px;
    font-weight: 600;
    border-radius: 0;
}
.contact form textarea {
    font-size: 20px;
    font-weight: 600;
    border-radius: 0;
}
.contact .form-check input {
    box-shadow: none;
}
.contact .form-check input:checked{
   background-color: orangered;
   border: none;
}
.contact .form-check label {
    color: white;
    font-size: 20px;
}
.contact .form-check label a {
    text-decoration: none;
    color: orangered;
    font-weight: 700;
}
.contact .form-check label a:hover {
    text-decoration: underline;
}
.contact form input:focus {
    box-shadow: none;
}
.contact form textarea:focus {
    box-shadow: none;
}
.contact .part2 iframe {
    width: 70%;
    height: 70%;
    margin: 0 auto;
    display: block;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.767);
}
@media screen and (max-width: 1100px) {
    .contact .part1 {
        background-image: linear-gradient(rgb(250, 163, 2), rgba(226, 177, 15, 0.938));
        padding: 70px;
        border-top-left-radius: 20% 40%;
        border-bottom-right-radius: 20% 40%;
        position: relative;
    }
}
@media screen and (max-width: 768px) {
    .contact .part1 {
        background-image: linear-gradient(rgb(250, 163, 2), rgba(226, 177, 15, 0.938));
        padding: 50px;
        border-radius: 0%;
        width: 100%;
        min-height: 100vh;
    }
}
@media screen and (max-width: 556px) {
    .contact .part1 {
        background-image: linear-gradient(rgb(250, 163, 2), rgba(226, 177, 15, 0.938));
        padding: 50px 10px;
        border-radius: 0%;
        min-height: 100vh;
    }
    .contact .form-check label {
        font-weight: 500;
        font-size: 15px;
    }
    .contact h1 {
        font-size: 25px;
    }
    .contact h1 span {
border-bottom: 2px solid orangered;
    }
    .contact form {
        width: 100%;
    }
}
/* contact-section-end ---------------------- */

















/* footer-section-start-------------------- */
footer {
    background-color: rgb(165, 46, 2);
    color: white;
    padding: 50px 0 10px 0;
}
footer h2{
    font-weight: 900;
    font-size: 30px;
    letter-spacing: 3px;
}
footer h2 span {
    border-bottom: 8px solid rgb(0, 0, 0);
}
footer p{
    font-weight: 600;
}
footer h3 {
    font-weight: 700;
    font-size: 20px;
}
footer a {
    text-decoration: none;
    color: wheat;
    font-weight: 500;
}
footer i {
    font-size: 25px;
    margin-right: 10px;
}
footer .copyright p {
    padding-top: 50px;
}
/* footer-section-end-------------------- */