* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #ffa500;
  --dark-color: #0D0C0A;
  --white-color: #ffffff;
  --light-color: #e7e7e7;
}

body {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  color: #9eabc7;
  background: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "General Sans", sans-serif;
  font-weight: 600;
}

.theme-btn {
  color: #000000;
  background: var(--primary-color);
  font-size: 16px;
  font-family: "Satoshi", serif;
  font-weight: 700;
  padding: 13px 26px;
  padding-right: 58px;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.4px;
  border: none;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  text-wrap: nowrap;
}

.theme-btn .icon {
  position: absolute;
  top: 8px;
  right: 9px;
  bottom: 8px;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  background: var(--dark-color);
  padding: 6px;
  color: #d7ae62;
  line-height: 1;
  transition: all 0.3s;
}

.theme-btn:hover {
  background: var(--primary-color);
  transition: all 0.3s;
}

.theme-btn:hover .icon {
  transform: rotate(-35deg);
}

.heading {
  color: var(--white-color);
  font-size: 3.2rem;
  margin-bottom: 3rem;
}

.heading span {
  color: var(--primary-color);
}

/* ==================================================
                    Header Style
=================================================== */
header {
  background: transparent;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  z-index: 999;
}

header.scrolled {
  background: #0d0c0a;
}

#home header {
  margin-top: 15px;
  position: absolute;
}
#home header.scrolled {
  position: sticky;
  position: -webkit-sticky;
}

.navbar {
  padding: 1.4rem 0;
  align-items: center;
}

.navbar-brand img {
  height: 44px;
}

.navbar-nav {
  column-gap: 1rem;
  align-items: center;
}

.nav-link {
  color: #d5d5d5;
  font-size: 1rem;
  font-family:
    "Satoshi",
    sans-serif,
    system-ui,
    -apple-system;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
  transition: all 0.3s;
}

.navbar-toggler {
  padding: 10px;
  font-size: 16px;
  border-radius: 50%;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

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

/* ==================================================
                    Hero Style
=================================================== */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}

.hero .row {
  align-items: center;
  padding: 190px 0 75px;
}

.hero h1 {
  color: var(--light-color);
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--primary-color);
}

.hero p {
  color: #9eabc7;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 2.25rem;
}

.hero-img {
  text-align: center;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}
.hero-slide::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(191deg, rgb(204 133 0 / 25%), #110f09, transparent);
  z-index: -1;
  opacity: 0.8;
}
/* ==================================================
                    About Style
=================================================== */
.about {
  padding: 140px 0;
  background: #11100e;
}

.about .highlight {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.about h2 {
  color: var(--light-color);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.about p {
  color: #b4bdd0;
  font-size: 18px;
  line-height: 1.5;
}

.about .image-wrapper {
  max-width: 560px;
  margin-left: auto;
}

/* ==================================================
                    Services Style
=================================================== */
.services {
  padding: 140px 0 0;
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}

#services::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 35%;
  width: 51%;
  background: linear-gradient(191deg, rgb(255 165 0 / 35%), #0d0c0a, transparent);
  z-index: -1;
  transform: skewX(10deg);
  opacity: 0.2;
}

.services .highlight {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}

.services h2 {
  color: var(--light-color);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 4rem;
  text-align: center;
}

.service-card {
  background: linear-gradient(180deg, #291e0d, transparent);
  padding: 30px;
  border-bottom: 2px solid #251d0d;
  border-radius: 24px;
}

.service-card img {
  width: 44px;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  color: var(--light-color);
  font-size: 1.65rem;
  font-family: "Satoshi", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: #b4bdd0;
  font-size: 17px;
  margin-bottom: 0;
}

#area-coverage {
  padding-top: 120px;
}

.area-coverage {
  padding: 48px;
  background: linear-gradient(180deg, #291e0d, transparent);
  border-bottom: 2px solid #251d0d;
  border-radius: 24px;
}

.area-coverage h3 {
  color: var(--light-color);
  font-size: 2.4rem;
  font-family: "Satoshi", sans-serif;
  font-weight: 600;
  margin: 0;
}

.location {
  display: flex;
  padding: 15px 20px;
  gap: 12px;
  align-items: center;
  background: #0d0c0a;
  border-radius: 12px;
}

.location img {
  width: 30px;
}

.location span {
  color: #b4bdd0;
  font-weight: 600;
}

/* ==================================================
                    CTA Style
=================================================== */
.cta {
  padding: 130px 0;
}

.cta-card {
  padding: 80px 80px;
  background: linear-gradient(180deg, #251d0d, transparent);
  border-bottom: 2px solid #251d0d;
  border-radius: 24px;
  position: relative;
  overflow-x: hidden;
  overflow-x: clip;
}

.cta-card::before {
  position: absolute;
  content: "";
  bottom: 40px;
  right: 40px;
  height: 100%;
  width: 44%;
  background: url("../img/hero-img.webp") no-repeat;
  background-size: contain;
  background-position: center;
}

.cta h2 {
  color: var(--light-color);
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta p {
  color: #b4bdd0;
  font-size: 18px;
  margin-bottom: 2rem;
}

/* ==================================================
                    Footer Style
=================================================== */
footer {
  padding: 80px 0 50px;
  background: #11100e;
}

.site-info img {
  max-height: 44px;
}

.site-info p {
  color: #b3b7bf;
  margin: 1.5rem 0 0;
}

.services-widget,
.contact-info {
  margin-top: 1rem;
}

.services-widget h3,
.contact-info h3 {
  color: #d39729;
  font-size: 1.6rem;
  font-family: "Satoshi", sans-serif;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.services-widget ul,
.contact-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services-widget ul li a,
.services-widget ul li a:hover,
.contact-info ul li,
.contact-info ul li a,
.contact-info ul li a:hover {
  color: #b3b7bf;
  text-decoration: none;
}

.contact-info ul {
  gap: 15px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info img {
  max-width: 24px;
}

.contact-info img.alt {
  transform: scale(1.3);
}

p.copyright {
  font-size: 15px;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ==================================================
                    Page Header Style
=================================================== */
.page-header {
  padding: 80px 0 0;
  border-top: 1px solid #362a17;
}

.page-header h1 {
  color: var(--light-color);
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #9eabc7;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==================================================
                Project Gallery Style
=================================================== */
.project-gallery {
  padding: 60px 0 120px;
}

.project-gallery .g-4,
.project-gallery .gy-4,
.project-gallery .gx-4 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.project-card {
  width: 100%;
  background: #0f1c3d;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.project-card::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, #ffa500, transparent);
  opacity: 0.75;
  transition: top 0.3s;
}

.project-card:hover:before {
  top: 0;
}

.project-card img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.project-card h4 {
  position: absolute;
  bottom: -200px;
  left: 30px;
  z-index: 1;
  color: var(--light-color);
  background: var(--dark-color);
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-family: "Satoshi", sans-serif;
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0;
}

.project-card:hover h4 {
  bottom: 20px;
  opacity: 1;
  transition-delay: 0.1s;
}

/* ==================================================
                Contact Us Style
=================================================== */
.contact-us {
  padding: 60px 0 120px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, #251d0d, transparent);
  border-bottom: 2px solid #251d0d;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.info-card .icon {
  height: 54px;
  width: 54px;
  padding: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, #251e0d, #100e0a);
  border-top: 1px solid #382b12;
}

.info-card .label {
  display: block;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-family: "General Sans", sans-serif;
  font-weight: 500;
}

.info-card .phn {
  margin-top: 4px;
}

.info-card .pin {
  transform: scale(1.25);
}

.info-card a,
.info-card a:hover,
.info-card p {
  color: #b4bdd0;
  font-size: 18px;
  text-decoration: none;
}

.contact-card {
  max-width: 800px;
  margin-left: auto;
  padding: 70px 70px 50px;
  background: linear-gradient(180deg, #251d0d, transparent);
  border-bottom: 2px solid #251d0d;
  border-radius: 24px;
}

.contact-card .form-control {
  padding: 0.375rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--light-color);
  background-color: #0d0c0a;
  border: var(--bs-border-width) solid #251d0d;
  border-radius: 12px;
}

.contact-card .form-floating > label {
  padding: 1rem 1.25rem;
  overflow: hidden;
  color: #9dabc7;
}

.contact-card .form-floating > textarea:focus ~ label::after,
.contact-card .form-floating > textarea:not(:placeholder-shown) ~ label::after {
  background-color: #0c1838;
}

.contact-card .form-control:focus {
  border-color: #705a2f !important;
  box-shadow: none;
}

.contact-card .theme-btn {
  padding: 13px 26px;
  min-width: 170px;
}

.contact-card .theme-btn:has(> .icon) {
  padding-right: 58px;
}

.alert {
  font-weight: 600;
  margin-top: 1.5rem;
  border-radius: 12px;
}
