/* ====== Colors ====== */
:root {
  --primary-color: #ebb666;
  --secondary-color: #7c877f;
  --dark: #192324;
  --white: #ffffff;
  --grey: #7c877f;
  --bg-color-1: #fffffff8;
  --bg-color-2: #ece9e9;
  --bg-color-3: #09a2ee27;
}

/* ====== Global Reset ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* ====== Media Elements ====== */
iframe,
video {
  width: 100%;
}

/* ====== Links ====== */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ====== Text Selection ====== */
::selection {
  background-color: var(--primary-color);
  color: var(--dark);
}

/* ====== Custom Scrollbar ====== */
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--white);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-corner {
  background-color: var(--white);
}

/* ====== Body Styles ====== */
body {
  overscroll-behavior: none;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

/* ====== Disable Text Selection Globally ====== */
/* body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
span {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
} */

/* ====== Typography ====== */
strong {
  font-weight: 600;
}

/* ====header-section-start==== */

.header-section .menu-bar {
  width: 100%;
  position: absolute;
  z-index: 9999999;
  padding: 10px 0px;
}

.header-section .navbar {
  padding: 0;
}

.header-section .is-sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  animation: slideInDown 0.4s ease-in;
  background-color: var(--dark);
}

.header-section .navbar-brand {
  padding: 0;
}

.header-section .navbar-brand img {
  width: 150px;
  height: auto;
}

.header-section .menu-bar .nav-link {
  margin: 0px 5px;
  text-transform: capitalize;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s;
  font-family: "Krona One", sans-serif;
  display: inline-block;
  transition: all 0.5s;
}

.header-section .menu-bar .nav-link:hover {
  color: var(--white);
  text-shadow: 0 0 10px #ac7603, 0 0 20px #ac7603, 0 0 30px #ac7603,
    0 0 40px #ac7603;
}

.header-section .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-section .dropdown-menu {
  background-color: var(--white);
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  padding: 0;
  display: none;
  border: 1px solid white;
  overflow: hidden;
  border: 0;
  transition: 0.5s;
  position: absolute;
}

.header-section .dropdown:hover .dropdown-menu {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  transition: 0.5s;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
}

.header-section .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
  margin-bottom: 2px;
  position: relative;
  transition: all 0.5s;
  z-index: 1;
}

.header-section .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 0;
  width: 0;
  background-color: var(--primary-color);
  transition: all 0.5s;
  z-index: -1;
}

.header-section .dropdown-menu .dropdown-item:hover::before {
  width: 100%;
  transition: all 0.5s;
}

.header-section .dropdown-menu .dropdown-item:hover {
  color: var(--white);
}

.header-section .dropdown-menu .dropdown-item:first-child {
  margin-top: 15px;
}

.header-section .dropdown i {
  transition: 0.6s;
}

.header-section .dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.6s;
}

.header-section .navbar-toggler {
  background-color: var(--dark);
  color: var(--white);
  margin: 0px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  padding: 2px 10px;
  border: 1px solid white;
  margin-right: 10px;
}

.header-section .offcanvas-header {
  background-color: var(--primary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sidbar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
  font-size: 16px;
  padding: 3px 8px;
}

.header-section .sid .header-section .nav-link:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

.header-section .conatact-btn {
  color: var(--dark);
  text-decoration: none;
  background-color: var(--white);
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: ease-in-out 0.5s;
  margin: 0px 10px;
  border: 2px solid var(--dark);
  font-family: "Krona One", sans-serif;
}

.header-section .conatact-btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
  transition: ease-in-out 0.5s;
}

.header-section .offcanvas-header .btn-close {
  color: var(--white);
  opacity: 1;
  background-image: none;
  line-height: 10px;
  border-radius: 5px;
  border: none;
  border: 1px solid white;
  font-size: 16px;
  padding: 6px 8px;
  background-color: var(--dark);
}

.header-section .offcanvas-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

/* ===header-section-end=== */

.banner-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 150px 0px;
  background: url(../images/hero-bg.jpg) no-repeat center center/cover;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #192324a6;
  z-index: -1;
}

.banner-section .banner-title {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.banner-section .banner-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--white);
  letter-spacing: 0.5px;
}

.banner-section .banner-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 700px;
  color: var(--white);
}

.banner-section .cta-button {
  background: var(--secondary-color);
  padding: 14px 20px;
  color: var(--dark);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--bg-color-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 1s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-section .cta-button::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  color: var(--dark);
  left: 0;
  top: 0;
  transition: all 1s ease;
  z-index: -1;
}

.banner-section .cta-button:hover::before {
  width: 100%;
}

.banner-section .cta-button:hover {
  color: var(--dark);
  transition: all 1s ease;
  border: 2px solid var(--dark);
}

@media (max-width: 768px) {
  .banner {
    padding: 100px 20px;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }
}

/* ====banner-section-end==== */

/* ===about-section-start=== */

.about-section {
  padding: 90px 0px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-page {
  background-color: var(--bg-color-2);
}

.about-section .about-item {
  margin-bottom: 25px;
}

.about-section .about-content span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.about-section .about-content span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--dark);
  left: 0;
  bottom: -5px;
}

.about-section .about-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  margin: 20px 0px;
  letter-spacing: 1px;
  color: var(--dark);
}

.about-section .about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
  max-width: 700px;
  color: var(--dark);
}

.about-section .about-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-section .about-item ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.9;
  color: var(--dark);
}

.about-section .about-item ul li i {
  color: var(--dark);
  margin-right: 10px;
}

.about-section .about-btn {
  margin-top: 30px;
}

.about-section .about-item .btn {
  background: var(--secondary-color);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  transition: all 1s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-section .about-item .btn::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background-color: var(--dark);
  color: var(--dark);
  left: 0;
  top: 0;
  transition: all 1s ease;
  z-index: -1;
}

.about-section .about-item .btn:hover::before {
  width: 100%;
}

.about-section .about-item .btn:hover {
  color: var(--white);
  transition: all 1s ease;
  border: 2px solid var(--white);
}

.about-section .about-item .btn:hover::before {
  width: 100%;
}

.about-section .about-item .about-images {
  position: relative;
  border-radius: 10px;
  z-index: 1;
}

.about-section .about-item .about-images .about-image-1 {
  height: 400px;
  width: 400px;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.about-section .about-item .about-images::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  height: 200px;
  width: 200px;
  background-color: var(--secondary-color);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  border-radius: 10px;
  z-index: -1;
}

.about-section .about-item .about-images .about-image-1:hover,
.about-section .about-item .about-images .about-image-2:hover {
  transform: scale(1.02);
  transition: all 0.5s ease;
}

.about-section .about-item .about-images .about-image-2 {
  height: 200px;
  width: 300px;
  border-radius: 10px;
  transition: all 0.5s ease;
  position: absolute;
  bottom: -100px;
  right: 50px;
  border: 5px solid var(--secondary-color);
}

.about-section .about-element,
.why-choose-us-section .why-choose-us-element,
.process-section .process-element,
.gallery-section .about-element {
  position: absolute;
  right: 10px;
  top: -50px;
  transform: rotate(0deg);
}

.about-section .about-element img,
.why-choose-us-section .why-choose-us-element img,
.project-section .project-element img,
.process-section .process-element img,
.gallery-section .about-element img {
  animation-duration: 3s;
  animation-fill-mode: both;
  height: 200px;
  width: 200px;
  object-fit: contain;
}

.hu__hu__ {
  animation: hu__hu__ infinite 5s ease-in-out;
}

@keyframes hu__hu__ {
  50% {
    transform: translateY(10px);
  }
}

/* ====about-section-end==== */

/* ===service-section-start=== */
.service-section {
  padding: 90px 0px;
  background-color: var(--bg-color-2);
  position: relative;
  overflow: hidden;
}

.service-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.service-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0px;
  letter-spacing: 1px;
  color: var(--dark);
}

.service-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.service-section .section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--dark);
  left: 0;
  bottom: -5px;
}

.service-section .service-item {
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.5s ease;
  margin-bottom: 25px;
  height: 100%;
  background-color: var(--secondary-color);
  overflow: hidden;
  filter: drop-shadow(0 0 0.1rem rgba(220, 157, 20, 0.945));
}

.service-section .service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-section .service-item:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.5s ease;
}

.service-section .service-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-section .service-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-section .service-item h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-section .service-item p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
  color: var(--dark);
}

.service-section .service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-section .service-item ul li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 5px;
  opacity: 0.9;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.service-section .service-item ul li i {
  color: var(--dark);
  margin-right: 10px;
}

.service-section .service-element,
.project-section .project-element,
.testimonials-section .testimonial-element {
  position: absolute;
  left: 10px;
  top: -50px;
  transform: rotate(0deg);
}

.service-section .service-element img,
.project-section .project-element img,
.testimonials-section .testimonial-element img {
  animation-duration: 3s;
  animation-fill-mode: both;
  height: 200px;
  width: 200px;
  object-fit: contain;
}

.hu__hu__ {
  animation: hu__hu__ infinite 5s ease-in-out;
}

@keyframes hu__hu__ {
  50% {
    transform: translateY(10px);
  }
}

/* ===service-section-end=== */

/* ===why-choose-us-section-start=== */

.why-choose-us-section {
  padding: 90px 0px;
  background-color: var(--bg-color-1);
  position: relative;
  overflow: hidden;
}

.why-choose-us-section .section-title {
  margin-bottom: 45px;
}

.why-choose-us-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0px;
  letter-spacing: 1px;
  color: var(--dark);
}

.why-choose-us-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.why-choose-us-section .section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--dark);
  left: 0;
  bottom: -5px;
}

.why-choose-us-section .why-choose-us-item {
  padding: 10px 0px;
  border-radius: 10px;
  transition: all 0.5s ease;
  margin-bottom: 25px;
}

.why-choose-us-section .why-choose-inner {
  display: flex;
  margin-bottom: 25px;
}

.why-choose-us-item {
  width: 100%;
}

.why-choose-us-section .why-choose-img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 25px;
  box-shadow: rgba(226, 157, 9, 0.432) 0px 1px 4px;
}

.why-choose-us-section .why-choose-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 0.5rem rgba(221, 133, 2, 0.89));
}

.why-choose-us-section .why-choose-us-item .icon {
  background-color: var(--dark);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 0.1rem rgba(220, 157, 20, 0.945));
  padding: 20px;
}

.why-choose-us-section .why-choose-us-item .icon img {
  height: 30px;
  width: 30px;
}

.why-choose-us-section .why-choose-us-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}

.why-choose-us-section .why-choose-us-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-us-section .why-choose-us-item ul li {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--dark);
}

/* ===why-choose-us-section-end=== */

/* ===project-section-start=== */

.project-section {
  padding: 90px 0px;
  background-color: var(--bg-color-2);
  position: relative;
  overflow: hidden;
}

.project-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.project-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0px;
  letter-spacing: 1px;
  color: var(--dark);
}

.project-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.project-section .section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--dark);
  left: 0;
  bottom: -5px;
}

.project-section .success-story {
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.5s ease;
  margin-bottom: 25px;
  height: 100%;
}

.project-section .nav-pills .nav-link.active {
  background-color: var(--dark);
  color: var(--white);
}

.project-section .nav-pills .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.project-section .project-item {
  padding: 8px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.5s ease;
  margin-bottom: 25px;
  background-color: var(--secondary-color);
  overflow: hidden;
  height: 100%;
}

.project-section .project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* ===project-section-end=== */

/* ===project-section-start===  */

.process-section {
  padding: 90px 0px;
  position: relative;
  overflow: hidden;
}

.process-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.process-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0px;
  letter-spacing: 1px;
  color: var(--dark);
}

.process-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.process-section .section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--dark);
  left: 0;
  bottom: -5px;
}

.process-steps {
  position: relative;
  margin-top: 50px;
}

/* Process Timeline */
.process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--dark);
}

.step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-content {
  width: 45%;
  padding: 10px 20px;
  background: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
}

.step-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0px 30px 0px;
  letter-spacing: 1px;
  color: var(--dark);
  position: relative;
}

.step-content h3::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  left: 0;
  bottom: -20px;
}

.step-content p {
  color: var(--white);
  margin-bottom: 15px;
}

.step-features {
  list-style-type: none;
  padding: 0;
}

.step-features li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: var(--white);
}

.step-features li:before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--dark);
  font-weight: bold;
  font-size: 1.2rem;
}

.step-image {
  width: 45%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.step-image:hover img {
  transform: scale(1.05);
}

.cta-section {
  margin-top: 60px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .step,
  .step:nth-child(even) {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .step-content,
  .step-image {
    width: 100%;
  }

  .step-content {
    margin-bottom: 20px;
  }

  .step-number {
    left: 20px;
    transform: none;
  }
}

/* ===project-section-end===  */

/* ===testimonials-section-start=== */

.testimonials-section {
  padding: 90px 0px;
  background-color: var(--bg-color-2);
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.testimonials-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0px;
  letter-spacing: 1px;
  color: var(--dark);
}

.testimonials-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.testimonials-section .section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--dark);
  left: 0;
  bottom: -5px;
}

.testimonials-section .testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  filter: drop-shadow(0 0 0.2rem rgba(221, 133, 2, 0.89));
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
  margin: 20px 5px;
  height: 100%;
}

.testimonials-section .quote-icon {
  font-size: 2.5rem;
  color: #e67e22;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 20px;
}

.testimonials-section .testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonials-section .client-info {
  display: flex;
  align-items: center;
}

.testimonials-section .client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #e67e22;
}

.testimonials-section .client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-section .client-details h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.testimonials-section .client-details p {
  font-size: 0.9rem;
  color: #666;
}

.testimonials-section .rating {
  color: #e67e22;
  margin-top: 5px;
  font-size: 1rem;
}

.testimonials-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonials-section .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #b6b5b5;
  border-radius: 50%;
  transition: background 0.3s;
}

.testimonials-section .owl-dots .owl-dot.active {
  background: var(--primary-color);
}

@media (max-width: 768px) {
  .testimonials-section .section-header h2 {
    font-size: 2rem;
  }
}


.testimonials-section .testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonials-section .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-section .quote-icon {
  font-size: 2.5rem;
  color: #e67e22;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 20px;
}

.testimonials-section .testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonials-section .client-info {
  display: flex;
  align-items: center;
}

.testimonials-section .client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #e67e22;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: bold;
  font-size: 1.5rem;
}

.testimonials-section .client-details h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.testimonials-section .client-details p {
  font-size: 0.9rem;
  color: #666;
}

.testimonials-section .project-type {
  display: inline-block;
  background: #e67e22;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 5px;
}

.testimonials-section .rating {
  color: #e67e22;
  margin-top: 5px;
  font-size: 1rem;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===testimonials-section-end=== */

/* ==footer-section-start== */

.footer-section {
  padding-top: 50px;
  position: relative;
  background-color: var(--dark);
  overflow: hidden;
}

.footer-section .footer-item {
  padding: 10px;
}

.footer-section .footer-item img {
  width: 150px;
  height: auto;
  border-radius: 2px;
}

.footer-section .footer-item p {
  font-size: 14px;
  color: var(--white);
  font-weight: 300;
  margin: 20px 0px;
}

.footer-section .footer-item .social-icons ul {
  list-style: none;
  padding: 0;
  display: flex;
}

.footer-section .footer-item span {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  background-color: var(--primary-color);
  padding: 0px 10px;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  position: relative;
}

.footer-section .footer-item .service-links i,
.footer-section .footer-item .pages-links i,
.footer-section .footer-item .contact-kota i,
.footer-section .footer-item .contact-indore i {
  margin-right: 5px;
}

.footer-section .footer-item .social-icons ul li {
  margin-right: 10px;
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 25px;
  border-radius: 5px;
  line-height: 40px;
  transition: 1.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}

.footer-section .footer-item .social-icons ul li::before {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 5px;
  inset: 0;
  z-index: -1;
  transform: translateY(-50px);
  transition: 1.5s;
  color: var(--white);
}

.footer-section .footer-item .social-icons ul li:hover::before {
  transition: 1s;
  transform: translateY(-0px);
}

.footer-section .footer-item .social-icons ul li a {
  color: var(--dark);
  text-decoration: none;
  display: block;
  height: 100%;
  width: 100%;
  line-height: 40px;
}

.footer-section .footer-item .social-icons ul li:hover a {
  color: var(--dark);
  transition: 0.5s;
}

.footer-section .footer-item .services-link,
.footer-section .footer-item .page-link,
.footer-section .footer-item .contact-kota,
.footer-section .footer-item .contact-indore {
  list-style: none;
  padding: 0;
  margin: 15px 0px;
}

.footer-section .footer-item .services-link li,
.footer-section .footer-item .page-link li,
.footer-section .footer-item .contact-kota li,
.footer-section .footer-item .contact-indore li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  transition: 0.2s;
}

.footer-section .footer-item .services-link li:hover,
.footer-section .footer-item .page-link li:hover,
.footer-section .footer-item .contact-kota li:hover,
.footer-section .footer-item .contact-indore li:hover {
  margin-left: 5px;
  transition: 0.2s;
}

.footer-section .footer-item .services-link li a,
.footer-section .footer-item .page-link li a,
.footer-section .footer-item .contact-kota a,
.footer-section .footer-item .contact-indore a {
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.footer-section .footer-item .services-link li a::before,
.footer-section .footer-item .page-link li a::before,
.footer-section .footer-item .contact-kota a::before,
.footer-section .footer-item .contact-indore a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -5px;
  border-radius: 5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s;
}

.footer-section .footer-item .services-link li a:hover:before,
.footer-section .footer-item .page-link li a:hover:before,
.footer-section .footer-item .contact-kota a:hover:before,
.footer-section .footer-item .contact-indore a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 1s;
}

.footer-section .copy-right {
  text-align: center;
  color: var(--white);
  font-size: 14px;
  margin-top: 20px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.63);
}

.footer-section .copy-right p {
  padding: 20px 0px;
  margin: 0;
}

.footer-section .top-button .top {
  animation: bounce-in 2s ease infinite;
}

.footer-section .top-button .top {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: var(--dark);
  right: 1em;
  bottom: 0.1em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--white);
}

.footer-section .top-button .top {
  animation: bounce-in 2s ease infinite;
}

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.footer-section .call-button .top {
  animation: bounce-in 2s ease infinite;
}

.footer-section .call-button .call {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: var(--dark);
  right: 1em;
  bottom: 5em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--primary-color);
}

.footer-section .call-button .call:before {
  position: absolute;
  content: "";
  animation: phone-wave 2s linear infinite;
  inset: 0;
  border-radius: 5px;
}

@keyframes phone-wave {
  from {
    box-shadow: 0 0 0 0 var(--white);
  }

  to {
    box-shadow: 0 0 0 10px var(--primary-color);
    opacity: 0;
  }
}

.footer-section .whatsapp-button .whatsapp {
  background-color: #25d366;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: 1em;
  bottom: 8em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--primary-color);
}

.footer-section .whatsapp-button .whatsapp:before {
  position: absolute;
  content: "";
  animation: phone-wave 2s linear infinite;
  inset: 0;
  border-radius: 5px;
}

@keyframes phone-wave {
  from {
    box-shadow: 0 0 0 0 var(--white);
  }

  to {
    box-shadow: 0 0 0 10px var(--primary-color);
    opacity: 0;
  }
}

/* ==footer-section-end== */

/* ==breadcrumb-section-start== */

.breadcrumb-section {
  padding: 50px 0px;
  position: relative;
  background: url(../images/breadcrumb-bg.JPG) center center repeat no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #011622e7;
  z-index: -1;
}

.breadcrumb-section .breadcrumb-box {
  background-color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 10px;
  width: 230px;
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.breadcrumb-section .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  background-color: #192324da;
  padding: 5px 10px;
  border-radius: 5px;
}

.breadcrumb-section .element .right {
  position: absolute;
  bottom: -20px;
  right: 0px;
  transform: rotate(180deg);
}

.breadcrumb-section .element .right img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.breadcrumb-section .element .left {
  position: absolute;
  top: -10px;
}

.breadcrumb-section .element .left img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.breadcrumb-section .breadcrumb-heading h1 {
  font-size: 28px;
  color: var(--dark);
  font-weight: 700;
  z-index: 1;
}

.breadcrumb-section .breadcrumb li {
  font-size: 16px;
  color: var(--white);
  z-index: 1;
}

.breadcrumb-section .breadcrumb li i {
  padding: 0px 10px;
}

.breadcrumb-section .breadcrumb li a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
}

.breadcrumb-section .breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--white);
}

/* ==breadcrumb-section-end== */

/* ====gallery-section-start==== */

.gallery-section {
  padding: 90px 0px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.gallery-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.gallery-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0px;
  letter-spacing: 1px;
  color: var(--dark);
}

.gallery-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.gallery-section .section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--dark);
  left: 0;
  bottom: -5px;
}

.gallery-section .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.gallery-section .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #b6b5b5;
  border-radius: 50%;
  transition: background 0.3s;
}

.gallery-section .owl-dots .owl-dot.active {
  background: var(--primary-color);
}

.gallery-section .slider-container {
  height: 400px;
  display: flex;
  gap: 10px;
}

.gallery-section .option {
  position: relative;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  flex: 1;
  transition: all 0.5s ease;
  overflow: hidden;
}

.gallery-section .option.active {
  flex: 10;
  border-radius: 10px;
}

.gallery-section .shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transition: all 0.5s ease;
}

.gallery-section .option.active .shadow {
  height: 200px;
}

@media (max-width: 768px) {
  .gallery-section .slider-container {
    height: 300px;
  }

  .gallery-section .option:nth-child(5) {
    display: none;
  }
}

@media (max-width: 600px) {
  .gallery-section .option:nth-child(4) {
    display: none;
  }
}

/* ====gallery-section-ends==== */

/* ===contact-section-start=== */

.contact-section {
  padding: 90px 0px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.contact-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0px;
  letter-spacing: 1px;
  color: var(--dark);
}

.contact-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.contact-section .section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: var(--dark);
  left: 0;
  bottom: -5px;
}

.contact-section .contact-item {
  margin-bottom: 25px;
}

.contact-section .contact-item img {
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.contact-section .contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--secondary-color);
  padding: 15px 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}


.contact-section .error-text {
  color: red;
  font-size: 0.875rem;
  margin-top: 4px;
  display: block;
}


.contact-section .form-group {
  margin-bottom: 20px;
}

.contact-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border 0.3s;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.contact-section .form-group textarea {
  height: 115px;
  resize: vertical;
}

.contact-section .required-field::after {
  content: "*";
  color: #e74c3c;
  margin-left: 4px;
}

.contact-section .submit-btn {
  background-color: var(--primary-color);
  color: var(--dark);
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.contact-section .disclaimer {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-top: 30px;
  font-style: italic;
}

.contact-section .success-message {
  display: none;
  background-color: #2ecc71;
  color: white;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
}

.contact-section .error-message {
  display: none;
  background-color: #eb1a03;
  color: white;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* ===contact-section-end=== */

/* ===contact-info-section-start=== */

.contact-info-section {
  padding-top: 20px;
}

.contact-info-section .contact-info {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}

.contact-info-section .contact-info .icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: var(--primary-color);
  text-align: center;
}

.contact-info-section .contact-info i {
  font-size: 30px;
  line-height: 70px;
}

.contact-info-section .contact-info h3 {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
}

.contact-info-section .contact-info a,
.contact-info-section .contact-info p {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}

/* ===contact-info-section-end=== */