body {
  background-color: white;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Kumbh Sans', sans-serif;
  scroll-behavior: smooth;
}

/* Main Button Section */

.mainBtn {
  font-size: 1.8rem;
  background-color: #ff8177;
  background-image: linear-gradient(to top, #555555 0%, #999999 100%);
  padding: 20px 60px;
  border: none;
  border-radius: 4px;
  margin-top: 2rem;
  margin-left: 2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
  border: 2px solid black;
}

.mainBtn a {
  position: relative;
  z-index: 2;
  color: black;
  text-decoration: none;
}

.mainBtn::after {
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #ffc905;
  transition: all 0.35s;
  border-radius: 4px;
}

.mainBtn:hover {
  color: white;
}

.mainBtn:hover::after {
  width: 100%;
}

/* Main Button End */

/* Navbar Section */

.navbar {
  box-shadow: 0px 5px 10px  rgb(0 0 0  / 0.4);
  background: white;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbarContainer {
  display: flex;
  justify-content: center;
  height: 120px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

.navbarContainer img {
  margin: 0;
  padding: 10px;
  display: flex;
  height: 140px;
}


#navbarLogo {
  background-color: #ff0000;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

.navbarMenu {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbarItem {
  height: 80px;
}

.navbarLinks {
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  text-decoration: none;
  height: 100%;
  transition: all 0.3s ease;
}

.navbarLinks:hover {
  color: #ff0000;
  transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
  .navbarContainer{
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }
  
  .navBarImg {
      width: 80%;
      height: auto;
  }

  .navbarMenu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
  }

  .navbarMenu.active {
    background: white;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
  }

  #navbarLogo {
    padding-left: 25px;
    font-size: 1.5rem;
  }

.navbarToggle .bar {
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background: black;
  display: block;
  cursor: pointer;
}

.navbarItem {
  width: 100%;
}

.navbarLinks {
  text-align: center;
  padding: 2rem;
  width: 100%;
  display: table;
}

#mobileMenu {
  position: absolute;
  top: 20%;
  right: 5%;
  transform: translate(5%, 20%);
}

#mobileMenu.is-active .bar:nth-child(2) {
  opacity: 0;
}

#mobileMenu.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#mobileMenu.is-active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

}

/* Navbar End */

/* Main Section */
#home {

}

.slider-content {
display: flex;
justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-content img {
  box-shadow: 10px 10px 15px  rgb(0 0 0  / 0.4);
}

.main {
  background: white;
  background: linear-gradient(to right, #161616, #00000);
  padding: 180px 0 75px 0;
}

.mainHeading {
  font-size: 100px;
  margin-bottom: 24px;
  color: white;
}

.mainHeading span {
background: #e65c00;
background: -webkit-linear-gradient(to right, #F9D423, #e65c00);
background: linear-gradient(to right, #F9D423, #e65c00);
background-size: 100%;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}

.mainDescription {
  font-size: 60px;
  background: #e65c00;
  background: -webkit-linear-gradient(to right, #F9D423, #e65c00);
  background: linear-gradient(to right, #F9D423, #e65c00);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

.highlight {
  border-bottom: 4px solid #ff0000;
  padding: 26px;
}

@media screen and (max-width: 768px) {
  .mainHeading{
    font-size: 60px;
  }
  .mainDescription {
    font-size: 40px;
  }

  .slider-content img {
    max-width: 100%;
    max-height: 100%;
  }
}

/* Main Section End */

/* About Section */
.about {
  background: white;
  padding: 10rem 0;
}

.aboutContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 90%;
  z-index: 1;
  width: 90%;
  max-width: 1300px;
  padding: 0 50px;
}


.aboutContainer .verBar {
  height: 99%;
  width: 1px;
  background: #222;
  margin: 5px auto;
}

.aboutContent {
color: black;
width: 100%;
}

.aboutContent h1 {
  text-align: center;
  font-size: 3rem;
  color: black;
  text-transform: uppercase;
  margin-bottom: 25px;
  white-space: nowrap;
}

.aboutContent h2 {
  text-align: center;
  font-size: 2rem;
  color: black;
  text-transform: uppercase;
}

.aboutContent p {
 color: black;
  text-align: center;
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.aboutImgContainer {
  text-align: center;
}

.aboutImgCard {
  margin: 10px;
  height: 600px;
  width: 500px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
  font-weight: bold;
  background-image: linear-gradient(to right, #555555 0%, #999999 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 40%;
  padding: 10px;
  line-height: 1.75rem;
  border: 4px solid black;
}


/*About mobile section */

@media screen and (max-width: 1100px) {
  .aboutContainer {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 90%;
  }

  .aboutImgContainer {
    display: flex;
    justify-content: center;
  }

  .aboutImgCard {
    margin: auto;
    height: 425px;
    width: 425px;
    font-size: .8rem;
  }

  .aboutContent {
    text-align: center;
    margin-bottom: 4rem;
  }

  .aboutContent h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
  }

  .aboutContent h2 {
    font-size: 3rem;
  }

  .aboutContent p {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 465px) {
  .aboutImgCard {
    font-size: .75rem;
    height: 450px;
    width: 350px;
  }

  .aboutContent h1 {
    font-size: 2rem;
    margin-top: 3rem;
  }

  .aboutContent h2 {
    font-size: 2rem;
  }

  .aboutContent p {
    margin-top: 2rem;
  }

  .mainBtn {
    padding: 12px 36px;
    margin: 2.5rem 0;
  }
}

/* About Section End */

/* Services Content */

.services {
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10rem 0;
}

.services h1 {
  color: black;
  margin-bottom: 5rem;
  font-size: 3.5rem;
}

.servicesWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
}

.servicesCard {
  border: 4px solid black;
  margin: 10px;
  height: 650px;
  width: 375px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: top;
  color: black;
  background-image: linear-gradient(to right, #555555 0%, #999999 100%);
  transition: 0.3s ease-in;
}

.servicesCard h2 {
  text-align: center;
  padding: 20px;
  font-size: 2rem;
  margin-top: 15px;
}

.servicesCard p {
  text-align: center;
  margin: 15px;
}

.servicesCard lu {
  text-align: left;
  padding-left: 30px;
  line-height: 1.5rem;
}

.servicesCard p {
  text-align: center;
  margin-top: 24px;
  font-size: 20px;
}

.servicesBtn {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.servicesCard button {
  color: white;
  padding: 14px 24px;
  border: none;
  outline: none;
  border-radius: 4px;
  background: #131313;
  font-size: 1rem;
}

.servicesCard button a {
  text-decoration: none;
  color: white;
}

.servicesCard button:hover {
  cursor: pointer;
}

.servicesCard:hover {
  transform: scale(1.075);
  transition: 0.3s ease-in;
  cursor: pointer;
}

@media screen and (max-width: 1300px) {
  .servicesWrapper {
    grid-template-columns: 1fr 1fr;
  }

}

@media screen and (max-width: 768px) {
  .servicesWrapper {
    grid-template-columns: 1fr;
  }

}

/* Services Section End */

/* Contact Section */

.contact {
  background: white;
  padding: 10rem 0;
}

.contactContainer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 90%;
  z-index: 1;
  width: 90%;
  max-width: 1300px;
  padding: 0 50px;
}

.contactContainer .verBar {
  height: 99%;
  width: 1px;
  background: #222;
  margin: 5px auto;
}

.contactContent {
color: white;
width: 100%;
}

.contactContent h1 {
  font-size: 3rem;
color: black;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
}

.contactContent h2 {
  font-size: 4rem;
  background: #dc1c13;
  background: -webkit-linear-gradient(to right, #ffb75e, #ff0000);
  background: linear-gradient(to right, #ffb75e, #ff0000);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  text-align: center;
}

.contactContent p {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: black;
}

.contactImgContainer {
  text-align: center;
}

.contactCard {
  margin: 10px;
  height: 500px;
  width: 500px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background-image: linear-gradient(to right, #555555 0%, #999999 100%);
}

/* Form Section */

.contactForm {
  height: 80%;
  width: 80%;
margin: auto;
}

.contactForm input {
  height: 32px;
  width: 300px;
  max-width: 300px;
  margin-top: 15px;
}

.contactForm textarea {
  height: 200px;
  width: 300px;
  max-width: 300px;
  max-height: 200px;
  min-width: 300px;
  min-height: 200px;
  margin-top: 15px;
}

.contactForm button {
  font-size: .9rem;
  background-color: #ffc905;
  background-image: linear-gradient(to top, #555555 0%, #999999 100%);
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  margin-top: 1rem;
  margin-left: 15px;
  cursor: pointer;
  position: relative;
  transition: all 0.35s;
  outline: none;
}

.formBtn a {
  position: relative;
  z-index: 2;
  color: white;
  text-decoration: none;
}

.formBtn::after {
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  width: 0;
    background: #ffc905;
  height: 100%;
  transition: all 0.35s;
  border-radius: 4px;
}

.formBtn:hover {
  color: white;
}

.formBtn:hover::after {
  width: 100%;
}

/*Contact Mobile*/
@media screen and (max-width: 768px) {
  .contactContainer {
    grid-template-columns: 1fr;
  }

.contactContent h2 {
  font-size: 3rem;
}

.contactCard {
  margin: auto;
  height: 500px;
  width: 400px;
}

}

/* Contact Section End */

/* footer section */
.footerContainer {
  background-color: #131313;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.footerLinks {
  width: 100%
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.footerLinksWrapper {
  display: flex;
}

.footerLinksItems {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 16px;
  text-align: left;
  width: 500px;
  box-sizing: border-box;
}

.footerLinksItems h2 {
  background-color: #ff0000;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  margin-bottom: 16px;
}

.footerLinksItems a {
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: 0.3s ease-out;
  line-height: 1.5rem;
}

.footerLinksItems a:hover {
  color: #e9e9e9;
  transition: 0.3s ease-out;
}

.copyright {
  width: 500px;
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}


@media screen and (max-width: 820px) {
    .footerLinks {
      padding-top: 2rem;
    }
    .footerLinksWrapper {
      flex-direction: column;
    }

}

@media screen and (max-width: 480px) {
    .footerLinksItems {
      margin: 0;
      padding: 10px;
      width: auto;
    }
    
    .footerLinks {
        margin: 0 auto;
    }
}

/* Carousel container */
        .carousel {
            display: flex;
            overflow: hidden;
            width: 950px; /* Adjust the width as needed */
        }

        .carousel img {
            width: 100%;
            height: 550px;
            border: solid 10px white;
            animation: fadeinout 10s linear forwards;
            -webkit-animation: fadeinout 10s linear forwards;
        }

        @keyframes fadeinout {
          0%, 90% { opacity: 0.1; }
          40%, 100% { opacity: 1; }
        }

        @-webkit-keyframes fadeinout {
          0%, 90% { opacity: 0.1; }
          40%, 100% { opacity: 1; }
        }

        /* Image Slider */

      /*  .mainContainer {
          display: flex;
          position: relative;
          max-width: 60rem;
          margin: 0 auto;
        }

        .slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    box-shadow: 10px 10px 15px  rgb(0 0 0  / 0.4);
  }

  .slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    animation: fadeinout 5s;
  }

  .slider-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
  }

  .active {
    display: block;
  }*/

  /*Thank you page*/

  .thankYou {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 90%;
    max-width: 1300px;
    padding: 150px;
  }

  .thankYou h2 {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: white;
  }

.thankYou button {
  width: 320px;
  margin: 25px auto;
}
