:root {
  --primary: #d3aaa6;
  --secondary: #1e1e1e;
  --accent: #00e8d1;
  --dark: #121212;
  --text-light: #f8f9fa;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text-light);
  background-color: var(--dark);
}

.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
}

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

.nav-link {
  color: var(--text-light);
  margin: 0 10px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 500;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
  border-radius: 15px;
}

.nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.btn-login {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 4px;
  padding: 6px 20px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: var(--primary);
  color: white;
}

/* About Section */
.about-section {
  min-height: 100vh;
  background-image: linear-gradient(
      rgba(14, 3, 0, 0.8),
      rgba(24, 24, 24, 0.7),
      rgba(0, 0, 0, 0.9)
    ),
    url("../images/b51d4d64dee32f0bcec18cafce96de02b0358fff.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  margin-top: 5rem !important;
}

.section-title {
  font-size: 3rem;
  color: transparent;
  background-image: linear-gradient(to right, #ecbfbf, #56422e);
  background-clip: text;
  -webkit-background-clip: text;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

/* Approach Section */
.approach-section {
  padding: 80px 0;
  background: linear-gradient(319deg, #100000, #181818, #022c4b 143%);
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 18px;
}

.service-icon {
  width: 24px;
  height: 24px;
  background-color: #a18c77;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Newsletter Section */
.newsletter-section {
  margin: 40px 0;
}

.newsletter-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.newsletter-input {
  background: #1b1b1b !important;
  border: none !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 20px 170px 20px 20px !important;
  box-shadow: none !important;
  font-size: 16px;
  width: 100% !important;
}

.newsletter-input::placeholder {
  color: #899197 !important;
  opacity: 1;
}

.subscribe-btn {
  background-color: #331d1d !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 12px 24px !important;
  font-weight: 500;
  transition: background 0.3s;
  right: 1.5%;
  top: 8px;
  bottom: 0;
  height: 50px;
}

.subscribe-btn:hover {
  background-color: #422624 !important;
  color: #d5af85 !important;
}

.divider {
  height: 1px;
  background-color: #333;
  margin: 30px 0;
}

.logo-section img {
  max-width: 150px;
  margin-bottom: 15px;
}

.company-name {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.address-section {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

.links-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.links-list {
  list-style: none;
  padding: 0;
}

.links-list li {
  margin-bottom: 10px;
}

.links-list a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.3s;
}

.links-list a:hover {
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #c0c0c0;
}

.contact-item i {
  margin-right: 10px;
  font-size: 18px;
}

.contact-item a {
  color: #c0c0c0;
  text-decoration: none;
}

.bottom-footer {
  text-align: center;
  color: #888;
  font-size: 14px;
}

.bank-info {
  font-size: 12px;
  color: #777;
}

/* Why Choose Section styles */
.why-choose-section {
  overflow: hidden;
}

.why-choose-item {
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  letter-spacing: 0 !important;
}

.why-choose-item:hover {
  transform: translateY(-5px);
}

/* Utility Classes */
.p-relative {
  position: relative;
}

.primary-color {
  color: #be9f98;
}
.primary-color-linear {
  color: transparent !important;
  background: linear-gradient(91.06deg, #ecbfbf 2.26%, #56422e 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
}

.text-BE9F98 {
  color: #be9f98;
}

.fz-10 {
  font-size: 10px !important;
}

.fz-18px {
  font-size: 18px !important;
}

.fz-20px {
  font-size: 20px !important;
}

.fz-30px {
  font-size: 30px !important;
}

.fz-40px {
  font-size: 40px !important;
}

.fz-50px {
  font-size: 50px !important;
}

/* Service specialty card background */
.service-specialty {
  background-color: #3b3b3b33;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.service-specialty:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Dropdown menu styling */
.dropdown-menu {
  background-color: rgba(20, 20, 20, 0.95);
  border: 1px solid #85695b;
  border-radius: 4px;
}

.dropdown-item {
  color: #be9f98;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(190, 159, 152, 0.2);
  color: #fff;
}

/* Ensure dropdown is visible on hover for larger screens */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    margin-bottom: 20px;
  }

  .fz-40px {
    font-size: 30px;
  }

  .fz-50px {
    font-size: 35px;
  }

  .why-choose-section .section-title {
    font-size: 26px !important;
  }

  .address-section,
  .links-section,
  .contact-section {
    margin-top: 30px;
  }

  .mvc-divider {
    margin: 0 auto;
  }
  .mvc-content {
    text-align: center;
  }
  .mvc-title {
    text-align: center;
  }
  .mvc-description {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .about-section,
  .approach-section {
    padding: 50px 0;
  }

  .fz-40px {
    font-size: 24px;
  }

  .fz-50px {
    font-size: 28px;
  }

  .approach-section .section-title {
    font-size: 26px !important;
    margin-bottom: 30px !important;
  }

  .why-choose-section .section-title {
    font-size: 22px !important;
  }

  /* Smaller logo on mobile */
  .navbar-brand img {
    height: 35px;
  }

  /* Smaller text for company name on mobile */
  h5.primary-color {
    font-size: 16px;
  }

  .fz-10 {
    font-size: 8px;
  }

  /* Larger About Us text on mobile */
  #about .section-title {
    font-size: 32px !important;
    margin-bottom: 25px !important;
  }

  #about p {
    font-size: 18px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 375px) {
  .fz-40px {
    font-size: 22px;
  }

  .fz-50px {
    font-size: 24px;
  }

  .approach-section .section-title {
    font-size: 22px !important;
  }

  .why-choose-section .section-title {
    font-size: 20px !important;
  }

  #about .section-title {
    font-size: 28px !important;
  }

  #about p {
    font-size: 16px !important;
  }
}

/* Navbar Styles */
.navbar-brand-text {
  line-height: 8px;
}

.navbar-subtitle {
  line-height: 14px;
  font-size: 10px;
}

/* About Section Styles */
.about-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 25, 0.9),
    rgba(25, 25, 35, 0.8),
    rgba(35, 35, 45, 0.7)
  );
  z-index: 0;
}

.about-content {
  z-index: 2;
}

.about-title {
  font-size: 50px;
  background-image: linear-gradient(to right, #be9f98, #ecbfbf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.about-subtitle {
  font-size: 18px;
  line-height: 1.8;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
}

.about-divider {
  height: 5px;
  width: 5%;
  background: #877461;
  margin: 50px auto;
  border-radius: 5px;
}

.service-specialty {
  background-color: #3b3b3b33;
}

.service-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.service-icon {
  font-size: 28px;
  color: #f2994a;
}

.service-title {
  font-size: 16px;
}

.service-subtitle {
  font-size: 13px;
}

/* Why Choose Section Styles */
.why-choose-bg {
  background-image: linear-gradient(rgb(10 10 10 / 85%), rgb(0 0 0 / 70%)),
    url("../images/background_city.png");
  background-size: cover;
  background-position: 0px 705px;
  position: relative;
  padding: 118px 0;
}

.why-choose-content {
  z-index: 2;
}

.why-choose-main-title {
  font-size: 50px;
}

.why-choose-subtitle {
  font-size: 20px;
}

.why-choose-conclusion-title {
  font-size: 20px;
}

.why-choose-conclusion {
  font-size: 20px;
}

/* Newsletter Section Styles */
.newsletter-title {
  font-size: 25px;
}

/* Mission, Vision, Commitment Section */
.mission-vision-section {
  background: #121212;
  min-height: 100vh;
  position: relative;
}

.mvc-content {
  padding: 2rem 0;
}

.mvc-title {
  font-size: 3rem;
  font-weight: bold;
}

.mvc-divider {
  width: 60px;
  height: 4px;
  background-color: #ffac72;
  border: none;
}

.mvc-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
}

.mvc-icon-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.mvc-icon {
  width: 140px;
  height: 140px;
}
.mvc-icon-transparent {
  position: absolute;
  right: -125px;
  width: 250px;
  height: 250px;
}

@media (max-width: 768px) {
  .mvc-title {
    font-size: 2.5rem;
  }

  .mvc-content {
    padding: 1rem 0;
    text-align: center;
  }

  .mvc-icon-container {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
  }

  .mvc-icon {
    width: 50px;
    height: 50px;
  }

  .mvc-divider {
    margin: 0 auto;
  }
}

/* Circle Backgrounds */
.circle-linear-left-top {
  position: absolute;
  top: 60px;
  left: -235px;
  width: 40%;
  height: 50%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(50, 153, 178, 0.2) 0%,
    rgba(2, 44, 75, 0.2) 100%
  );
  filter: blur(100px);
  z-index: 0;
}
.circle-linear-bottom-right {
  position: absolute;
  bottom: -300px;
  right: -480px;
  width: 40%;
  height: 50%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(50, 153, 178, 0.2) 0%,
    rgba(2, 44, 75, 0.2) 100%
  );
  filter: blur(100px);
  z-index: 0;
}

.circle-linear-right-top {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 40%;
  height: 70%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(50, 153, 178, 0.2) 0%,
    rgba(2, 44, 75, 0.2) 100%
  );
  z-index: 0;
  filter: blur(100px);
}

.circle-linear-middle-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 40%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(50, 153, 178, 0.2) 0%,
    rgba(2, 44, 75, 0.2) 100%
  );
  filter: blur(100px);
  z-index: 1;
}

.circle-linear-middle-left {
  position: absolute;
  bottom: 30%;
  left: -20%;
  width: 30%;
  height: 40%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(50, 153, 178, 0.2) 0%,
    rgba(2, 44, 75, 0.2) 100%
  );
  filter: blur(100px);
  z-index: 1;
}

.circle-linear-top-left {
  position: absolute;
  top: -50px;
  left: 2.5%;
  width: 30%;
  height: 20%;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 158, 110, 0.3) 0%,
    rgba(116, 82, 64, 0.3) 100%
  );
  filter: blur(100px);
  z-index: 1;
}

.p-absolute {
  position: absolute;
}

footer {
  padding: 40px 0;
}
