@import url("https://fonts.googleapis.com/css2?family=Red+Rose:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --color-default: #000000;
  --color-primary: #ff5515;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

body {
  color: var(--color-default);
  font-family: "Red Rose", serif;
}
html,
body {
  overflow-x: hidden;
}

a {
  color: var(--color-default);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--color-default), transparent 25%);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--color-default);

  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 80px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }
  .header-blur-bg {
    margin-left: 10px !important;
    margin-right: 10px !important;
    width: 96%;
    padding: 0px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 6px 10px;
    font-size: 19px;

    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu > ul > li:not(.dropdown) > a:hover,
  .navmenu > ul > li:not(.dropdown) > a.active,
  .navmenu > ul > li:not(.dropdown) > a.active:focus,
  .navmenu > ul > li.dropdown > a:hover,
  .navmenu > ul > li.dropdown > a.active,
  .navmenu > ul > li.dropdown > a.active:focus {
    background: linear-gradient(to right, var(--color-primary), #00000000);
    color: #fff;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 0;
  }
  .navmenu .dropdown ul li:last-child a {
    border-bottom: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
/* Initial state of dropdown (hidden) */
.navmenu .dropdown ul {
  opacity: 0;
  visibility: hidden;
  transform: perspective(600px) rotateX(-15deg) scale(0.95);
  transform-origin: top center;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  border-radius: 32px;
  min-width: 200px;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: linear-gradient(
    303deg,
    var(--color-default),
    var(--color-primary)
  );
  border: 1px solid #ffffff6b;
}

/* Dropdown appears with perspective and settles to normal */
.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(600px) rotateX(0deg) scale(1);
}
.navmenu .dropdown ul li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  text-transform: none;
}

/* Add a sliding underline */
.navmenu .dropdown ul li a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #ffffff6c;
  transition: width 0.3s ease;
}

.navmenu .dropdown ul li a:hover::after {
  width: 100%;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    color: #fff;
    background: linear-gradient(
      to left,
      var(--color-primary),
      var(--color-primary)
    );
    display: inline-block;
    z-index: 10000;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--color-default);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--color-primary);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff52;
  }

  .navmenu > ul > li:last-child > a {
    border-bottom: none;
  }

  .navmenu a i.toggle-dropdown {
    font-size: 12px;
    line-height: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
  }

  .navmenu .dropdown ul {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    position: static;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--color-default);
    border-radius: 8px;
  }

  .navmenu .dropdown ul.dropdown-active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    background: linear-gradient(
      to top,
      var(--color-primary),
      var(--color-secondary)
    );
  }

  .navmenu .dropdown.active > a i.toggle-dropdown {
    transform: rotate(180deg);
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: absolute;
    top: 36px;
    right: 15px;
    font-size: 32px;
    z-index: 10001;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    overflow: hidden;

    transition: 0.3s;
    z-index: 9998;
  }

  .mobile-nav-active .navmenu > ul {
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: block;
    background-color: var(--color-default);
    border-radius: 8px;
    overflow-y: auto;
    z-index: 9999;
    height: fit-content;
  }

  .mobile-nav-active .navmenu > ul > li .active {
    color: var(--color-primary);
  }

  .navmenu .dropdown ul li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    text-transform: none;
    border-bottom: 1px solid #ffffff52;
  }

  .navmenu .dropdown ul li:last-child a {
    border-bottom: none;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  color: #fff;
  transition: all 0.4s;
  box-shadow: 0 0 10px var(--color-primary);
}

.scroll-top i {
  font-size: 24px;

  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--color-primary), transparent 20%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

ul.custom-width {
  display: inline-block;
  min-width: 250px;
  max-width: 600px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

.hero .banner-img {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background-image: url(../gallery/banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }
}

.about-section {
  position: relative;
  margin-bottom: 60px;
}

body.index-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../gallery/background-image.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1; /* Behind all content */
}

.services-sec {
  position: relative;

  margin-bottom: 45px;
}

.service-head h2 span {
  font-size: 68px;
  margin-top: -30px;
  display: block;
}

.service-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 125px;
  font-weight: 400;
  text-transform: uppercase;

  pointer-events: none;
  line-height: 112px;
  margin-bottom: 0;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.74),
    rgba(255, 255, 255, 0)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.service-txt-blk2 {
  position: relative;
  color: #fff;
}

.s-two {
  margin-bottom: 0px !important;
}

.service-txt-blk2 p {
  margin-bottom: 0px;
  font-weight: 200;
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 1px;
}

.services-blk {
  position: relative;
  margin-bottom: 150px;
}
.service-txt-blk {
  position: relative;
}

.service-head {
  position: relative;
}

.cta-sec {
  position: relative;
  margin-bottom: 100px;
  margin-top: -145px;
}

.cta-txt h2 {
  color: #fff;
  font-weight: 500;
}
.cta-txt p {
  color: #fff;
  font-size: 27px;
  font-weight: 300;
  margin-bottom: 0px;
}

.cta-top {
  position: relative;
  overflow: hidden;
}

.cta-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 33px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.cta-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px; /* border thickness */
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-default),
    var(--color-primary)
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.cta-call img {
  width: 50px;
  height: auto;
}

.cta-call:hover {
  color: var(--color-primary);
  transform: scale(1.05);
}

.header-container.blur-bg {
  position: relative;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 12px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  overflow: visible !important;
}

.header-container.blur-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reveal-left,
.reveal-right {
  opacity: 0;
}

.reveal-left {
  transform: translateX(-100px) scale(0.95);
  transition: all 0.8s ease-out; /* start further left */
}

.reveal-right {
  transform: translateX(100px) scale(0.95);
  transition: all 0.8s ease-out; /* start further right */
}

.reveal-bottom {
  opacity: 0; /* hidden initially */
  transform: translateY(50px) scale(0.95); /* start slightly lower and smaller */
  transition: all 0.8s ease-out;
}

.cta-txt h3 {
  color: #fff;
  margin-bottom: 0px;
}

.cta-txt h2 span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;

  background: linear-gradient(
    180deg,
    var(--color-primary),
    #ab390e8c,
    var(--color-default)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
}

.about-sec {
  position: relative;
}

.about-sec p {
  margin-bottom: 50px;
  color: #fff;
  font-weight: 300;
  font-size: 22px;
}
.why-choose {
  position: relative;

  margin-bottom: 100px;
}

.why-blk {
  color: #fff;
  position: relative;
}

.why-blk p {
  margin-bottom: 0px;
  font-weight: 300;
}

.why-blk .why-text {
  padding: 0 45px;
  margin-top: -80px;
}

.whychoose-c {
  position: relative;
  margin-top: -350px;
}

.wthree {
  position: relative;
  margin-left: 55px;
}
.wfour {
  position: relative;
  margin-right: 75px;
}

.why-text h2 {
  font-weight: 400;
}

.footer-sec {
  position: relative;

  padding-bottom: 20px;
}

.footer-head h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 125px;
  font-weight: 400;
  text-transform: uppercase;
  pointer-events: none;
  line-height: 112px;
  margin-bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.74),
    rgba(255, 255, 255, 0.25)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.25) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.25) 85%,
    rgba(0, 0, 0, 0) 100%
  );
}

.footer-head h2 span {
  font-size: 120px;
  margin-top: -7px;
  display: block;
}
.footer-middle {
  position: relative;
  margin-top: -145px;
}
.footer-logo {
  width: 550px;
  margin: auto;
}

.footer-locations {
  margin-top: 25px;
}
.footer-locations h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.locations-list a {
  padding: 6px 14px;
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 4px; /* space for underline */
  transition: color 0.1s ease;
}

.locations-list a:hover {
  background: var(--color-primary);
  color: #fff;
}
.footer-credit {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-top: 45px;
  font-weight: 300;
}

.fcall {
  display: flex;
  align-items: center;
  gap: 10px; /* space between image and number */
}

.fcall img {
  width: 250px;
  cursor: pointer;
}

.fcall .call-number {
  font-size: 45px;
  font-weight: 400;
  color: #fff; /* change to match footer color */
  text-decoration: none;
}

.femail {
  display: flex;
  align-items: center;
  gap: 10px; /* space between image and email */
}

.femail img {
  width: 250px;
  cursor: pointer;
}

.femail .email-address {
  font-size: 37px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.call-number,
.email-address {
  position: relative;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.call-number::after,
.email-address::after {
  content: "";
  position: absolute;
  height: 2px; /* thickness of underline */
  width: 100%;
  bottom: 0;
  right: 0; /* start from right */
  background: var(--color-primary, #ff5515);
  transform: scaleX(0); /* hidden initially */
  transform-origin: right; /* animate from right to left */
  transition: transform 0.3s ease;
}

.call-number:hover::after,
.email-address:hover::after {
  transform: scaleX(1); /* full underline on hover */
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 12px;
}

.footer-social .social-icon {
  font-size: 24px; /* adjust size */
  color: var(--color-primary); /* default icon color */
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icon:hover {
  color: #fff; /* brand color on hover */
}
.soci {
  position: relative;
  margin-top: 30px;
}
.soci h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  display: block;
  position: relative;
}

.contact-sec {
  position: relative;
  min-height: 85vh;
}

/* Breadcrumb Section */
.breadcrumb {
  padding: 180px 0 50px;
  color: #fff;
  text-align: center;
  position: relative;
}

.breadcrumb .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  font-size: 33px;
  font-weight: 400;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  display: inline-block;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 10px;
}
.breadcrumb-nav::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 95%;
  background: linear-gradient(
    to left,
    #00000000,
    var(--color-primary),
    #00000000
  );
  bottom: 0;
  left: 0;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-list li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-list li a:hover {
  color: var(--color-primary);
}

.breadcrumb-list li span.active {
  color: var(--color-primary);
  font-weight: 600;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "-";
  color: var(--color-primary);
  margin: 0 6px;
  font-weight: 500;
}

/* Animation */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.ip-content-blk {
  color: #fff;
  position: relative;
}

.ip-content-blk p {
  margin-bottom: 0px;
  font-weight: 300;
  font-size: 18px;
}

.feature-list {
  list-style: none; /* remove default bullets */
  padding: 0;
  margin: 20px 0;
  padding-left: 25px;
}

.feature-list li {
  position: relative;
  padding-left: 40px; /* space for icon */
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;

  transition: transform 0.3s ease;
}

.feature-list li::before {
  content: "✔"; /* checkmark icon */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--color-primary); /* brand color */
}

.feature-list li:hover {
  transform: translateX(5px); /* subtle hover effect */
}

.feature-list li strong {
  color: var(--color-primary);
  font-weight: 600;
}

.ip-content-blk h2 {
  margin-top: 15px;
  font-weight: 400;
}

.faq-section.v2 {
  max-width: 800px;
  margin: 80px auto;
  color: #f5f5f5;
}

.faq-section.v2 h2 {
  text-align: center;
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 60px;
}

.faq-section.v2 .faq-item {
  margin-bottom: 50px;
  padding-left: 20px;
  position: relative;
}

.faq-section.v2 .faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
  border-radius: 2px;
}

.faq-section.v2 h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-section.v2 p {
  color: #b5b5b5;
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  margin: 100px auto;
  color: #ffffff;
}

.cta-section h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-section p {
  color: #b5b5b5;
  margin-bottom: 20px;
  font-size: 23px;
}

.cta-btn {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 24px;
}

.cta-btn:hover {
  background: #ff6f3a;
}

.ip-content-blk h3 {
  margin-top: 15px;
  font-weight: 400;
  color: var(--color-primary);
  font-size: 20px;
}

.why-m-box {
  position: relative;
  display: inline-block;
}

.why-box {
  position: relative;
}

/* main container */
.why-m-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

/* boxes */
.why-box {
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  background: linear-gradient(to top, #ff55157a, #0000);
}

.why-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 85, 21, 0.1);
  box-shadow: 0 0 10px var(--color-primary);
}

/* make bottom row (2 boxes) centered */
.why-box:nth-child(4),
.why-box:nth-child(5) {
  flex: 1 1 calc(45% - 20px);
}

/* responsive */
@media (max-width: 768px) {
  .why-box {
    flex: 1 1 calc(45% - 20px);
  }
}

@media (max-width: 480px) {
  .why-box {
    flex: 1 1 100%;
  }
}

.contact-section {
  padding: 60px 20px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  max-width: 800px;
}

.contact-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;

  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  border: none;
  background: linear-gradient(to right, #ff551526, #0000, #ff551526);
  color: #fff;
}
.contact-form select {
  background: linear-gradient(to right, #ff551526, #0000, #ff551526);
  color: #fff;
  border-radius: 6px;
  padding: 12px;
  font-size: 1rem;
  width: 100%;
  border: none;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  border: 1px solid transparent;
  background: linear-gradient(to right, #ff551526, #0000, #ff551526);
  color: #fff;
  outline: none;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #ff4444;
}

.contact-form input.success,
.contact-form select.success,
.contact-form textarea.success {
  border-color: #00cc66;
}

.contact-form select option {
  background-color: #1a1a1a;
  color: #fff;
}

/* Make dropdown options visible */
.contact-form select option {
  background-color: #1a1a1a; /* dark background for contrast */
  color: #fff; /* white text */
}

.contact-form .submit-btn {
  padding: 12px 20px;
  background-color: #ff6600; /* your brand color */
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form .submit-btn:hover {
  background-color: #e65c00;
}

.required {
  color: red;
}

.privacy-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  text-align: center;
}

.cta-top-sec {
  position: relative;
}

.footer-coffice h4 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  display: inline-block;

  background-color: var(--color-primary);
  padding: 5px 10px;
}

.footer-coffice p {
  color: #fff;
}
.footer-coffice {
  margin-top: 25px;
}

.header-blur-bg {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px) saturate(120%); /* no blur initially */
  -webkit-backdrop-filter: blur(0px) saturate(120%);

  border-radius: 12px;
  transition: backdrop-filter 0.3s ease, background 0.3s ease;
  z-index: 0;
  height: 80%;
  bottom: 0;
  margin: auto;
}

.header-blur-bg.active {
  backdrop-filter: blur(12px) saturate(120%); /* blur appears after scroll */
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
}

.header-blur-bg.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
