* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
}
.navbar {
  width: 100%;
  position: relative;
  height: 100vh;
  background: linear-gradient(
      to bottom,
      rgba(92, 77, 66, 0.8) 0%,
      rgba(92, 77, 66, 0.8) 100%
    ),
    url("https://startbootstrap.github.io/startbootstrap-creative/assets/img/bg-masthead.jpg");
  background-position: center;
  object-fit: cover !important;
}
.Main {
  position: absolute;
  left: 60px;
}
.Main .h3 {
  font-size: 60px;
}
.Main .pop {
  position: absolute;
  top: 170px;
  width: 50px;
  height: 3px;
  background-color: orangered;
}

.Main .sub {
  font-size: 20px;
  position: absolute;
  top: 180px;
}

.Main .btn {
  background-color: orangered;
}

/* Banner */
.hero-section {
  background-color: #f36141; /* Orange background */
  color: white; /* White text */
  text-align: center;
  padding: 60px 20px;
}
.hero-section .divider {
  width: 60px;
  height: 2px;
  background-color: white;
  margin: 20px auto;
}
.hero-section .btn-custom {
  background-color: #FFF; /* Slightly darker orange */
  color: #e04c2a;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}
.hero-section .btn-custom:hover {
  background-color: white;
  color: #f36141;
}

/* service */
.service-section {
  text-align: center;
  padding: 60px 20px;
}
.service-section .divider {
  width: 60px;
  height: 2px;
  background-color: #f36141;
  margin: 10px auto 30px;
}
.service-item {
  margin-bottom: 30px;
}
.service-item i {
  font-size: 3rem;
  color: #f36141;
  margin-bottom: 15px;
}

/* images */

.creagory {
  position: relative;
}
.creagory img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* .hover {
  display: none;
  background-color: #f36141;
  opacity: 0;
  width: 100%;
}

.creagory .col-4:hover .hover {
  position: absolute;
  top: 16px;
  display: block;
  opacity: 1;
} */

.creagory .col-4::before {
  background-color: #f36141;
  opacity: 2;
  z-index: 1;
}

/* Dowloand */
.download-section {
  background-color: #2c2f33; /* Dark background */
  color: #ffffff; /* White text */
  text-align: center;
  padding: 50px 0;
}
.download-button {
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
}
/* feedback */

.contact-section {
  padding: 50px 0;
}
.form-heading {
  text-align: center;
  margin-bottom: 20px;
}
.form-heading h2 {
  font-size: 2rem;
  font-weight: bold;
}
.form-heading p {
  font-size: 1rem;
  color: #6c757d;
}
.divider {
  width: 50px;
  height: 3px;
  background-color: #dc3545;
  margin: 10px auto;
}
.contact-section .btn-submit {
  background-color: #f76c5e;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 10px 20px;
}
.contact-section.btn-submit:hover {
  background-color: #f55742;
}

/* Media Query */

@media (min-width: 320px) and (max-width:425px) {

  .navbar {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(92, 77, 66, 0.8) 0%,
        rgba(92, 77, 66, 0.8) 100%
      ),
      url("https://startbootstrap.github.io/startbootstrap-creative/assets/img/bg-masthead.jpg");
    background-position: center;
    object-fit: cover !important;
  }
  .Main {
    position: absolute;
    left: 10px;
  }
  .Main .h3 {
    font-size: 20px;
  }
  .Main .pop {
    position: absolute;
    top: 60px;
    width: 50px;
    height: 3px;
    background-color: orangered;
  }

  .Main .sub {
    text-align: center !important;
    font-size: 14px;
    padding: 10px;
    position: absolute;
    top: 100px;
  }

  /* Banner */
  .hero-section {
    background-color: #f36141; /* Orange background */
    color: white; /* White text */
    text-align: center;
    padding: 30px 10px;
  }
  .hero-section .divider {
    width: 30px;
    height: 2px;
    background-color: white;
    margin: 20px auto;
  }
  .hero-section .btn-custom {
    background-color: #FFF; /* Slightly darker orange */
    color: #e04c2a;
    border: none;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
  }
  .hero-section .btn-custom:hover {
    background-color: white;
    color: #f36141;
  }
}

@media (min-width: 426px) and (max-width:768px) {

  .navbar {
    width: 100%;
    position: relative;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(92, 77, 66, 0.8) 0%,
        rgba(92, 77, 66, 0.8) 100%
      ),
      url("https://startbootstrap.github.io/startbootstrap-creative/assets/img/bg-masthead.jpg");
    background-position: center;
    object-fit: cover !important;
    overflow-x: hidden !important;
  }
  .Main {
    position: absolute;
    left: 40px;
  }
  .Main .h3 {
    font-size: 36px;
  }
  .Main .pop {
    position: absolute;
    top: 100px;
    width: 50px;
    height: 3px;
    background-color: orangered;
  }
  
  .Main .sub {
    font-size: 16px;
    position: absolute;
    top: 130px;
  }
  
  .Main .btn {
    background-color: orangered;
  }

  /* Banner */
  .hero-section {
    background-color: #f36141; /* Orange background */
    color: white; /* White text */
    text-align: center;
    padding: 100px 60px;
  }
  .hero-section .divider {
    width: 30px;
    height: 2px;
    background-color: white;
    margin: 20px auto;
  }
  .hero-section .btn-custom {
    background-color: #FFF; /* Slightly darker orange */
    color: #e04c2a;
    border: none;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
  }
  .hero-section .btn-custom:hover {
    background-color: white;
    color: #f36141;
  }

  .creagory{
    overflow-x: hidden !important;
  }
}

@media (min-width:1440px){
  .navbar {
    width: 100%;
    position: relative;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(92, 77, 66, 0.8) 0%,
        rgba(92, 77, 66, 0.8) 100%
      ),
      url("https://startbootstrap.github.io/startbootstrap-creative/assets/img/bg-masthead.jpg");
    background-position: center;
    object-fit: cover !important;
    overflow-x: hidden !important;
  }
  .Main {
    position: absolute;
  }
  .Main .h3 {
    font-size: 52px;
    position: absolute;
    bottom: -10px;
    right: 100px;
  }
  .Main .pop {
    position: absolute;
    top: 10px;
    right: 430px;
    width: 50px;
    height: 3px;
    background-color: orangered;
  }
  
  .Main .sub {
    font-size: 23px;
    position: absolute;
    top: 40px;
    right: -80px;
    /* border: 2px solid orange; */
  }
  
  .Main .btn {
    position: absolute;
    top: 150px;
    left: 800px;
    background-color: orangered;
  
  }
  .Main .btn:hover {
    background-color: #f36141;
  }

}
