:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
    --default-color: #1e0624;
    --accent-color: #f1c40f;
    --background-color: rgb(254, 248, 228);
    --border-color: #2b0c9a;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --black: #000;
    --white: #fff;
    --brand-color: #8c6239;
    --primary-color: #ffecc8;
    --secondary-color: #10202c;
}

body {
  margin: 0; 
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-color);
}
::-webkit-scrollbar-track {
  background: var(--primary-color); 
}
/* For Firefox */
html {
  scrollbar-color: var(--brand-color) var(--primary-color);
  scrollbar-width: auto;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

#backToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--brand-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.top-bar {
  background: rgba(16,32,44,0.95);
  color: #fff;
  font-size: 1rem;
  min-height: 40px;
  z-index: 20;
}
.top-bar a {
  color: white;
  text-decoration: none;
}

/* Hero styles */
.hero {
  position: relative;
  height: 100vh;
  background: url('/static/img/hero1.jpg') no-repeat center center/cover;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-content {
  position: absolute;
  bottom: 100px;
  left: 50px;
  z-index: 2;
  color: white;
}
.hero-content h1 {
  font-size: 1rem;
}
.hero-content h2 {
  font-size: 8rem;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-content {
    left: 10px;
    right: 10px;
    width: auto;
  }
  .hero-content h1 {
    font-size: 12px;
    text-align: center;
  }
  .hero-content h2 {
    font-size: 4rem;
    text-align: center;
    line-height: 1;
  }
}

.transparent-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  padding: 1rem;
  color: white;
  width: 300px;
  min-height: 200px;
  margin-bottom: 1rem;
}
.card-action {
  background-image: url('/static/img/flowerside.webp');
  background-size: cover;
  background-position: center;
  width: 300px;
  min-height: 200px;
  margin-right: 1rem;
}
.avatar-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  margin-left: -13px;
  transition: transform 0.2s;
  z-index: 1;
}
.avatar-img:first-child {
  margin-left: 0;
}
.avatar-img:hover {
  transform: scale(1.1);
  z-index: 2;
}
.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.logo-track {
  margin: 0px;
  display: flex;
  width: fit-content;
  animation: scroll-marquee 40s linear infinite;
}
.client-logo {
  max-height: 40px;
  margin-right: 60px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
footer ul li {
  margin-bottom: 0.5rem;
}
footer ul li a:hover {
  text-decoration: underline;
}
.bottom-bar {
  background-color: var(--brand-color);
  color: white;
}

/* Feature highlight section */
.bg-brown {
  background-color: #4d2c1c;
}
.features-section {
  padding: 2rem 0;
  background-color: var(--primary-color);
}
.features-section .feature-card img {
  object-fit: cover;
  height: 100%;
  border-radius: 1rem;
}
.features-section .rounded-4 {
  border-radius: 1rem !important;
}
@media (min-width: 768px) {
  .features-section .col-md-4.d-flex.flex-column.gap-4 .feature-card {
    height: 100%;
  }
}
.seamless-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: seamless-scroll 100s linear infinite;
  font-size: 4.3rem;
  font-weight: 400;
  color: #ffecc8;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.marquee-track span {
  padding-right: 4rem;
}
.paused .marquee-track {
  animation-play-state: paused;
}
@keyframes seamless-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .marquee-track {
    font-size: 2.1rem;
  }
  .marquee-track span {
    padding-right: 2rem;
  }
}
.faq-row {
  display: flex;
  flex-wrap: wrap;
}
.faq-row > .col-md-5,
.faq-row > .col-md-7 {
  display: flex;
  flex-direction: column;
}
.faq-img-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.faq-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  flex-grow: 1;
}
.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa !important;
  color: inherit;
  box-shadow: none;
}
#faqAccordion {
  border-radius: 1rem;
  overflow: hidden;
}
#faqAccordion .accordion-item {
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: none;
}
#faqAccordion .accordion-item:first-child {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
#faqAccordion .accordion-item:last-child {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
#faqAccordion .accordion-button {
  border-radius: 1rem !important;
}

/* Jumbotron Video Section */
.jumbotron-video {
  min-height: 80vh;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.jumbotron-video .bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.jumbotron-video .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16,32,44,0.5);
  z-index: 1;
}
.jumbotron-video .content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.jumbotron-video .content h1,
.jumbotron-video .content .display-4 {
  margin-bottom: 1rem;
}
.jumbotron-video .content p {
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .jumbotron-video {
    min-height: 350px;
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .jumbotron-video .content {
    padding: 1.5rem 0.5rem;
    gap: 1rem;
  }
  .jumbotron-video .content h1,
  .jumbotron-video .content .display-4 {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
  }
  .jumbotron-video .content p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .jumbotron-video .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #e8e8e8;
  padding: 60px 40px;
  border-radius: 10px;
  height: fit-content;
}
.form-title {
  color: #2c3e50;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.form-subtitle {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.form-group {
  margin-bottom: 35px;
}
.form-control {
  border: none;
  border-bottom: 2px solid #d1d5db;
  border-radius: 0;
  background-color: transparent;
  padding: 12px 0;
  font-size: 16px;
  color: #6b7280;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  box-shadow: none;
  border-bottom-color: #2c5f5f;
  background-color: transparent;
}
.form-control::placeholder {
  color: #9ca3af;
  font-size: 16px;
}
.submit-btn {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}
.submit-btn:hover {
  background-color: #1a252f;
}
.submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 95, 95, 0.3);
}
.contact-item h2 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icon {
  width: 40px;
  height: 40px;
  background-color: #2c3e50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .form-container {
    padding: 40px 20px;
  }
  .form-title {
    font-size: 24px;
  }
  .col-md-6 {
    margin-bottom: 20px;
  }
}

/* Modern Responsive Navbar Styles */
#mainNavbar {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 10;
  transition: background 0.3s;
}
#mainNavbar .navbar-brand span {
  color: #fff;
  letter-spacing: 1px;
  font-size: 1.3rem;
}
#mainNavbar .nav-link, #mainNavbar .nav-pill {
  color: #fff !important;
  font-weight: 500;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}
#mainNavbar .nav-link.active, #mainNavbar .nav-link:hover, #mainNavbar .nav-pill.active, #mainNavbar .nav-pill:hover {
  color: #ffce3a !important;
  background: rgba(0,0,0,0.18);
}
#mainNavbar .navbar-toggler {
  background: transparent !important;
  border: none;
  outline: none;
}
#mainNavbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: none !important;
}
.offcanvas.offcanvas-end.bg-dark {
  background: #181818 !important;
}
.offcanvas .offcanvas-title {
  color: #ffce3a;
}
.offcanvas .btn-close-white {
  filter: invert(1);
}
.offcanvas .list-unstyled a {
  color: #fff !important;
  border-radius: 1.5rem;
  padding: 0.7rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}
.offcanvas .list-unstyled a:hover {
  background: #222;
  color: #ffce3a !important;
}
@media (max-width: 991px) {
  #mainNavbar {
    top: 40px;
  }
  body .hero {
    padding-top: 80px !important;
  }
}