* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: myfont;
  src: url('../fonts/NotoSans-Italic-VariableFont_wdth\,wght.ttf') format('truetype');
}
@font-face {
  font-family: myfont-1;
  src: url('../fonts/Roboto-Italic-VariableFont_wdth\,wght.ttf') format('truetype');
}
h1,h2,h3,h4,h5,h6{
  font-family: myfont;
}
p,li,a,span,input,button{
  font-family: myfont-1;
}
#bg {
  background-attachment: fixed;
  background-size: cover;
}
body {
  background-color: #fff;

  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  color: #3f3f3f;
  padding: 0 !important;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  
}


header {
  background-color: #fcfcfc;
}
/* navbar start here  */
.navbar-brand {
  font-size: 1.4em;
}
.navbar-dark .navbar-nav a.nav-link {
  color: #ffffff;
  font-size: 1.1em;
}
.dropdown-menu {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border: none;
  border-radius: 0;
  padding: 0.7em;
}

.dropdown-menu ul {
  list-style: none;
  padding: 0;
}
.dropdown-menu li .dropdown-item {
  color: gray;
  font-size: 1em;
  padding: 0.5em 1em;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown-menu li:first-child a:hover {
  background-color: #f1f1f1;
}


.dropdown-menu {
  border-radius: 0;
  border: none;
  padding: 0.5em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}
.dropdown-menu ul {
  list-style: none;
  padding: 0;
}

.dropdown-menu li a {
  color: gray;
  padding: 0.5em 1em;
}




.navbar-brand img {
  width: 350px;
  transition: width 0.3s ease;
}

.navbar-nav li {
  margin: 20px;
}

.navbar-nav li a {
  text-decoration: none;
  font-size: 20px;
  color: #6f2e30 !important;

}



.navbar-nav li a:hover {
  color: #f1d792 !important;
  transition: width 0.3s ease;
}

.navbar-toggler span {
  color: #6f2e30 !important;
}

/* top head section start here  */
.top-head {
  background-color: #f1d792;
}

.head-left a {
  text-decoration: none;
  color: #6f2e30;
  font-size: 17px;
}

.head-right a {
  text-decoration: none;
  color: #6f2e30;
  font-size: 17px;
  margin: 10px;
}

.head-left a:hover {

  color: #6f2e30;

  transition: width 0.3s ease;
}

.head-right a:hover {

  color: #6f2e30;

  transition: width 0.3s ease;
}

/* hero section start here  */
.inner-banner {
  padding: 130px 0px 80px;
  text-align: center;
  color: #fff;
}
.head{
  padding: 0 !important;
}

.swiper {

  height: 700px;
  
}

.swiper-slide img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.swiper-slide {
  position: relative;
}

.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  width: 100%;
  max-width: 800px;
  text-align: center;
  z-index: 2;
}

.hero-content h3 {
  font-size: clamp(2.5rem, 10vw, 4.5rem);
  margin-bottom: 1rem;
  font-weight: bold;
  color: #fff;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #fff;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff !important;
  margin: 0 30px;

}

.swiper-pagination-bullet-active {
  background-color: #f1d792 !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 20px !important;
  background-color: #000 !important;

}

/* about section start here  */
.about-left {
  padding: 40px 0;
}

.about-left h3 {
  font-size: 40px;
  font-weight: bold;
  color: #6f2e30;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 20px;
  font-weight: 500;

  margin-bottom: 20px;
}

.about-right img {
  width: 100%;
  object-fit: cover;
  border-radius: 60px ;
}

.about-section {
  align-items: center;
  position: relative;
}

/* feature product start here  */
.feature-product h3 {
  font-size: 40px;
  font-weight: bold;
  color: #6f2e30;
  margin-bottom: 20px;
}

.feature-product p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.card:hover {
  transform: scale(1.05);
  transition: 0.2s ease-in-out;
  /* background-color: #f3c623; */
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card img {
  padding: 30px;
}

.card img:hover {
  transform: scale(1.1);
  transition: 0.2s ease-in-out;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
}

.card-text {
  color: #690301;
  font-size: 20px;
}

.card-body .btn {
  background-color: #690301;
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px 20px;
  border: none;
}

.card-body .btn:hover {
  background: linear-gradient(to right, #000000, #690301);
  color: #fff;
  transition: 0.2 ease-in-out;
}

/* service setion start here  */
.service-text h3{
  font-size: 40px;
  font-weight: bold;
  color: #6f2e30;
  margin-bottom: 20px;
}
.nav-pills{
  box-sizing: border-box;
  box-shadow: 5px 0px 5px #a6ce39;
}
.nav-pills li{
  margin: 2px 0px;
}

.nav-pills .nav-link {
  background-color: #f8f9fa;
  color: #000;
  font-weight: 600;
  border-radius: 0;
  padding: 1rem;
  margin-bottom: 5px;
  text-align: left;
}

.nav-pills .nav-link.active {
  background-color: #88b006;
  color: white;
  position: relative;
}

.nav-pills .nav-link.active::after {
  content: '>';
  position: absolute;
  right: 15px;
  font-weight: bold;
}


/* testimonial section start here  */
.testimonial-section {
  background-color: #690301;
  padding: 90px 0;
  color: #fff;
}
.testimonial-item {
  
 padding: 43px;
}

.testimonial-section .carousel-inner {
  min-height: 320px;
  text-align: center;
}


.testimonial-section .text-content {
  color: #fff;
}

.testimonial-section h2 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 20px;
}

.testimonial-section p {
  font-size: 16px;
}

.btn-readmore {
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 10px 25px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.testimonial-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  color: #fff;
  padding: 30px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #fff;
}

.testimonial-body h5 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.testimonial-body h5 span {
  color: #690301;
}

.rating {
  color: #f5a623;
  font-size: 18px;
  margin-top: 10px;
}

/* Swiper buttons */
.swiper-button-prev,
.swiper-button-next {
  padding: 10px;
  border-radius: 4px;
  color: #000;
}




/* footer section start here  */
.footer-section {
  background-color: #1e1e1e;
  color: #ffffff;
}

.footer-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  font-size: 1rem;
  color: #cccccc;
}

.footer-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-section i {
  margin-right: 10px;
  color: #f3c623;
  /* gold accent for icons */
}

.footer-logo img {
  max-width: 250px !important;
  height: auto;
  border-radius: 0.5rem;
}

.copyright-section {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 14px 0 0 0;
}
.copyright-section a{
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
/* spacial section start here  */
.spacial-services img{
  width: 100%;
  margin-top: -50px;
}
/* about section start here  */
.about-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  padding: 0 30px 30px 30px;
  border-radius: 5px;
  margin-top: 30px;
}
.about-para{
  padding: 40px 0;
}
.about-main img{
  width: 100%;
  padding-top: 20px;
  object-fit: cover;
}


.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  position: absolute;
  top: -30px;
  background-color: #88b006;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
}
.video-info .video-bx2 {
  position: absolute;
  bottom: 40px;
  left: 0;
}
.video-bx2 {
  background-color: #fff;
  border: 4px solid #88b006;
  padding: 30px;
  width: 300px;
  position: absolute;
  bottom: 10%;
  text-align: center;
}


/* contact us section start here  */
.content-inner-1 {
  padding-top: 80px;
  padding-bottom: 0px;
}
.section-full {
  position: relative;
}
.section-head {
  margin-bottom: 50px;
  padding-top: 20px;
}

.section-head.contact-title span {
  color: #88b006;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
.section-head.contact-title h2 {
  font-size: 67px;
  line-height: 80px;
  color: #000;
}
.section-head .head-title {
  font-size: 50px;
  line-height: 60px;
}
.section-head.contact-title p {
  font-weight: 400;
}
.text-center.section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding-top: 0;
}
.section-head p {
  font-size: 18px;
  color: #aeaeae;
  font-weight: 600;
  margin-bottom: 0;
}
.section-head p {
  padding-top: 10px;
  font-size: 16px;
  color: #0f192d;
}

.section-full:last-child {
    margin-bottom: -50px;
}
.content-inner-2 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.section-full {
    position: relative;
}
.icon-bx-wraper {
  position: relative;
  display: flex;
}
.icon-md {
  width: 60px;
}
.icon-md i {
  font-size: 45px;
}

.icon-xl i, .icon-lg i, .icon-md i, .icon-sm i, .icon-xs i {
  vertical-align: middle;
  color: #f3c623 !important;
}

.icon-content {
  overflow: hidden;
}
.contact-box .section-head h2 {
  color: #000;
  font-size: 32px;
}
.contact-box .section-head p {
  font-weight: 400;
}

.text-center.section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
  padding-top: 0;
}
.section-head p {
  font-size: 18px;
  color: #aeaeae;
  font-weight: 600;
  margin-bottom: 0;
}
.form-group {
  margin-bottom: 25px;
}
.contact-box .form-control {
  background-color: #ebebeb;
  border: 2px solid #ebebeb;
  height: 60px;
  border-radius: 6px;
  padding: 20px;
  font-size: 16px;
  font-weight: 300;
}
.contact-box textarea.form-control {
  height: 180px;
}
.contact-box .form-control {
  background-color: #ebebeb;
  border: 2px solid #ebebeb;
  height: 60px;
  border-radius: 6px;
  padding: 20px;
  font-size: 16px;
  font-weight: 300;
}
textarea.form-control {
  min-height: calc(1.5em + (.75rem + 2px));
}
.btn.black.btn-aware {
  position: relative;
  overflow: hidden;
  background: transparent;
  z-index: 1;
  border-color: #000;
}
.btn.outline.black {
  color: #171717;
  border-color: #171717;
}
.btn.outline.radius-xl, .btn.outline-2.radius-xl {
  border-radius: 100px;
}
.btn.black:hover,
.btn.black:active,
.btn.black:focus {
    background-color: #000;
    color: #fff;
}
/* gallery page start here  */
.gallery-img img:hover{
  transform: scale(1.05);
  transition: 0.2s ease-in-out;
}


/* services under page  */
.banner-content h3{
  font-size: 40px !important;
}
.service-section h3{
  font-size: 67px;
  line-height: 80px;
  color: #000;
  padding: 20px 0px;
}
.service-section p {
  padding: 25px;
  margin: auto;
  font-size: 18px;
}
.about-left ul li{
  list-style: none;
}
.checklist-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.check-icon {
  color: #f44336 !important; /* Red color */
  margin-right: 10px;
  font-size: 1.2rem;
}

