/* Hero company description styling */
/* Form submission message */
.form-message {
  margin-top: 1rem;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease;
}
.form-message-success {
  color: #15803d;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.75rem 1rem;
}
.form-message-error {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  padding: 0.75rem 1rem;
}

/* Fix mobile overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
.container,
.row {
  max-width: 100%;
  overflow-x: hidden;
}
.mobile-menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
/* Push hero title below fixed navbar */



/* Mobile layout */
@media (max-width: 768px) {

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #7ABDE5;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .nav-links.show {
    display: flex;
  }
}


.hero-description {
  font-family: 'Brawler', serif !important;
  color: #000000;
  font-size: 1.13rem;
  font-weight: 400;
  margin: 1.1rem 0 0.5rem 0;
  line-height: 1.7;
  letter-spacing: 0.01em;
  text-align: left;
  max-width: 520px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }
}
/* Hero lead paragraph styling */
.hero-lead {
  font-family: 'Brawler', serif !important;
  color: #000;
  font-size: 1.18rem;
  font-weight: 400;
  max-width: 520px;
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: left;
}
@media (max-width: 575.98px) {
  .hero-lead {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* ===== Mobile: enlarge "Welcome to" only ===== */
@media (max-width: 768px) {
  .hero h1 .welcome-green {
    font-size: 3.4rem !important;
  }
}

.launch-video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.launch-video {
  width: 70%;          /* smaller */
  max-width: 1000px;   /* cap size */
  margin: 0 auto;
  padding: 30px;
  overflow: hidden;
  /* box-shadow: 0 40px 100px rgba(0,0,0,0.12); */
}

.launch-video video {
  width: 100%;
  height: auto;
  display: block;

}

/* Mobile fix */

@media (max-width: 991.98px) {
  .hero-coming-soon-col {
    margin-top: 0;
  }

  .hero-coming-soon {
    transform: none;
  }
}


/* Hero Coming Soon Layout */

.hero-coming-soon-col {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Glass curved pill */

.coming-soon-pill {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  padding: clamp(2rem, 4vw, 4rem);
  border-radius: 3rem;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 40px 80px rgba(0,0,0,0.10);

  min-width: 320px;
  max-width: 520px;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Launching Soon text */

.coming-soon-main {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 800;
  color: #634512;
  line-height: 1.05;
  font-family: 'Brawler', serif !important;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
}

/* keep word glued */

.coming-soon-main .word {
  display: flex;
  white-space: nowrap;
  letter-spacing: -0.02em; 
}

/* animated letters */

.coming-soon-main span {
  display: inline-block;
  animation: wave 1.6s ease-in-out infinite;
}

/* wave chain */

.coming-soon-main span:nth-child(1) { animation-delay: 0s; }
.coming-soon-main span:nth-child(2) { animation-delay: .06s; }
.coming-soon-main span:nth-child(3) { animation-delay: .12s; }
.coming-soon-main span:nth-child(4) { animation-delay: .18s; }
.coming-soon-main span:nth-child(5) { animation-delay: .24s; }
.coming-soon-main span:nth-child(6) { animation-delay: .30s; }
.coming-soon-main span:nth-child(7) { animation-delay: .36s; }
.coming-soon-main span:nth-child(8) { animation-delay: .42s; }
.coming-soon-main span:nth-child(9) { animation-delay: .48s; }

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Mobile */

@media (max-width: 991.98px) {
  .coming-soon-main {
    font-size: 2.2rem;
  }

  .coming-soon-pill {
    min-width: auto;
    padding: 1.8rem;
  }
}

/* Blood Red for 'Welcome to' heading */
.welcome-red {
  color: #881600;
}
/* Force Brawler font everywhere */
*, *::before, *::after {
  font-family: 'Brawler', serif !important;
}

:root {
  --default-font: 'Brawler', serif;
  --heading-font: 'Brawler', serif;
  --nav-font: 'Brawler', serif;
}


:root {
  --background-color: #EAEAEA; 
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #106eea;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  
}


:root {
  background-image:
    linear-gradient(to right, #7ABDE5 1px, transparent 1px),
    linear-gradient(to bottom, #7ABDE5 1px, transparent 1px);

  --nav-color: #222222;
  /* The default color of the main navmenu links */
  --nav-hover-color: #634512;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #634512;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}


.light-background {
  --background-color: #EAEAEA; 
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}


:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  background-color: #EAEAEA !important;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Brawler', serif !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: 'Brawler', serif !important;
}

/* Contact Form Messages
------------------------------*/
.contact-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: contact-form-loading 1s linear infinite;
}

@keyframes contact-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  width: auto;
  margin-right: 15px;
}

.header .logo h1 {
  font-size: 38px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 .brand-green {
  color: #48BF84;
}

.header .logo h1 .brand-red {
  color: #881600;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu (Clean Version)
--------------------------------------------------------------*/

/* ================= DESKTOP ================= */
@media (min-width: 1200px) {

  .mobile-nav-toggle {
    display: none;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
  }

  .navmenu a {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: 'Brawler', serif !important;
    font-weight: 600;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #634512;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 1199px) {

  /* hamburger */
  .mobile-nav-toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: #634512;
    z-index: 10000;
  }

  /* hide menu by default */
  .navmenu > ul {
    display: none;
  }

  /* full screen overlay when active */
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(122, 189, 229, 0.6);
    z-index: 9998;
  }

  /* show menu */
  .mobile-nav-active .navmenu > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;

  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  padding: 10px 0;
}


  /* links */
  .mobile-nav-active .navmenu a {
    font-size: 26px;
    font-weight: 700;
    color: #634512;
  }

  .mobile-nav-active {
    overflow: hidden;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 65px;
}



.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  color: #000000 !important;
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden; /* important for slide animation */
}

/* Slide-up blue background */
.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: #7ABDE5;   /* one single color */
  inset: 100% 0 0 0;      /* start from bottom */
  transition: inset 0.35s ease;
  z-index: -1;
}

.featured-services .service-item:hover:before {
  inset: 0;               /* slide to top */
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: 0.3s;
}

/* Text stays black on hover */
.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: #000 !important;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h3 {
  font-weight: 600;
  font-size: 18px;
}
.about .about-content h3 span {
  font-size: 25px !important;
}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}

.about .about-content ul i {
  background: var(--surface-color);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  font-size: 24px;
  margin-right: 15px;
  color: var(--accent-color);
  border-radius: 50px;
}

.about .about-content ul h4 {
  font-size: 18px;
  font-weight: 600;
}

.about .about-content ul p {
  font-size: 15px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 25px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item:not(.faq-active) h3:hover {
  color: var(--accent-color);
}

/* Keep FAQ active item text white even on hover */
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 22px 55px  #9ce3f7b6;
  border-radius: 45px;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item p a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
}

.contact .info-item p a:hover {
  color: var(--accent-color);
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .contact-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .contact-form {
    padding: 20px;
  }
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form input[type=text]:focus,
.contact .contact-form input[type=email]:focus,
.contact .contact-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .contact-form input[type=text]::placeholder,
.contact .contact-form input[type=email]::placeholder,
.contact .contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .contact-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Custom Brand Color for Trinetro Labs
--------------------------------------------------------------*/
/* Apply brand color to all sitename elements */
.sitename {
  color: #881600!important;
}


.hero h1 .welcome-green {
  color: #48BF84 !important;
}

.hero h1 .brand-red {
  color: #881600 !important;
  font-weight: 800;
  font-size: 4rem;
}

/* =================================
   TRINETRO ABOUT COLOR OVERRIDE
   paste at bottom of CSS file
==

/* ================================
   FORCE ABOUT + FAQ TEXT BLACK
================================ */
/* ================================
   FORCE ABOUT + FAQ + CONTACT BLACK
================================ */

/* About */
#about .section-title p span,
#about .section-title .description-title {
  color: #000 !important;
}

/* FAQ */
#faq .section-title p span,
#faq .section-title .description-title {
  color: #000 !important;
}

/* Contact */
#contact .section-title p span,
#contact .section-title .description-title {
  color: #000 !important;
}
/* ===== Brand Button Override ===== */

/* Section label pills: ABOUT / FAQ / CONTACT */
.section-title h2 {
  background: #634512 !important;
  color: #EAEAEA !important;
}

/* Send Message button */
.contact .contact-form button[type=submit] {
  background: #634512 !important;
  color: #EAEAEA !important;
  border: none;
}

/* Hover effect */
.contact .contact-form button[type=submit]:hover {
  background: #7a5a20 !important;
  color: #EAEAEA !important;
}




/* ===== FAQ Brand Hover Override ===== */

/* Active FAQ item */
.faq .faq-container .faq-active {
  background-color: #DEBF8A !important;
  border-color: #DEBF8A !important;
  color: #000000 !important;
}

/* Active title */
.faq .faq-container .faq-active h3 {
  color: #000000 !important;
}

/* Active paragraph */
.faq .faq-container .faq-active p {
  color: #000000 !important;
}

/* Hover effect (when opening/hovering) */
.faq .faq-container .faq-item:hover {
  background-color: #DEBF8A !important;
  color: #000000 !important;
}

/* Hover title */
.faq .faq-container .faq-item:hover h3,
.faq .faq-container .faq-item:hover p {
  color: #000000 !important;
}

/* ===== Blue Transparent Navbar ===== */
.header,
.header .branding {
  background: rgba(169, 215, 255, 29%) !important; /* blue transparent */
  backdrop-filter: blur(10px); /* glass effect */
  border-bottom: 2px solid rgba(122, 189, 229, 0.6);
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.navmenu a {
  color: #634512 !important;
}

.navmenu a:hover {
  color: #EAEAEA !important;
}

.sitename {
  color: #634512 !important;
}

/* ===== Professional Brown Shadow Cards ===== */
/* ===== Clean Professional Card Border ===== */
/* ===== FORCE CARD DEPTH SHADOW ===== */

.featured-services .service-item {
  background: #ffffff !important;

  border: 2px solid rgba(99, 69, 18, 0.35) !important;

  box-shadow:
    0 4px 8px rgba(0,0,0,0.06),
    0 18px 40px rgba(0,0,0,0.14) !important;

  transition: all 0.25s ease !important;
}

/* Hover lift */

.featured-services .service-item:hover {
  transform: translateY(-10px) !important;

  box-shadow:
    0 10px 20px rgba(0,0,0,0.10),
    0 30px 60px rgba(0,0,0,0.18) !important;
}

.launch-date-badge {
  margin-top: 16px;
  padding: 8px 18px;

  background: #DEBF8A;
  color: #000000;

  font-size: 1.35rem;
  font-weight: 600;
  border-radius: 999px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.15);

  letter-spacing: 0.05em;
}

.navmenu a,
.navmenu a:focus {
  font-size: 20px !important;
}

@media (max-width: 768px) {
  .navmenu a,
  .navmenu a:focus {
    font-size: 20px !important;
  }
}

/*--------------------------------------------------------------
# Glass Form Styles
--------------------------------------------------------------*/
.glass-form {
  padding: 45px;
  border-radius: 28px;
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 40px rgba(147, 198, 222, 0.815);
}

.glass-form h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.glass-form > p {
  text-align: center;
  margin-bottom: 28px;
  opacity: 0.7;
}

.glass-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--default-color);
}

.glass-form input[type="text"],
.glass-form input[type="email"],
.glass-form input[type="range"],
.glass-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.8);
  font-size: 14px;
  color: var(--default-color);
}

.glass-form input[type="text"]:focus,
.glass-form input[type="email"]:focus,
.glass-form textarea:focus {
  outline: 2px solid var(--accent-color);
  background: rgba(255,255,255,0.95);
}

.glass-form input[type="range"] {
  padding: 0;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--accent-color), #7fc8f8);
  border-radius: 8px;
  cursor: pointer;
}

.glass-form input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #634512;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.glass-form input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #634512;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.glass-form textarea {
  min-height: 120px;
  resize: vertical;
}

.glass-form button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border-radius: 12px;
  border: none;
  background-color: #debf8a;
  color: #1a3f5c;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.glass-form button:hover {
  background-color: #634512;
  color: #ffffff;
  transform: translateY(-2px);
}

.glass-form button:active {
  transform: translateY(0);
}

@media (max-width: 575px) {
  .glass-form {
    padding: 35px 25px;
  }

  .glass-form h2 {
    font-size: 26px;
  }

  .glass-form input,
  .glass-form textarea,
  .glass-form button {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# WhatsApp Floating Button
--------------------------------------------------------------*/
.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 100px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-btn:hover {
  background: #128c4a;
  color: #fff;
  transform: scale(1.1);
}

.whatsapp-btn i {
  line-height: 1;
}

/*--------------------------------------------------------------
# Video Stack (Contact Section)
--------------------------------------------------------------*/
.video-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 10;
  margin-top: 50px;
}

.video-stack .video-bg {
  position: absolute;
  visibility: hidden;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), #7fc8f8);
  border-radius: 24px;
  top: 20px;
  left: 20px;
  z-index: 0;
}

.video-stack .video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6bb7ec, #a8ddff);
  border-radius: 24px;
  transform: translate(-12px, -12px);
  opacity: 0.9;
}

.video-stack .video-card {
  position: relative;
  top: 45px;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.video-stack .video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .video-stack {
    max-width: 100%;
    margin: 30px auto;
  }
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

.mobile-nav-active input,
.mobile-nav-active .search,
.mobile-nav-active .form-control {
  display: none !important;
  background: transparent !important;
  border: none !important;
}
@media (max-width: 1199px) {
  .navmenu a {
    color: #634512 !important;
    font-size: 22px;
    padding: 14px 24px;
  }

  .navmenu a:hover {
    color: #EAEAEA !important;
  }
}
.mobile-nav-toggle {
  color: #634512 !important;
}

/* 🔥 Kill ghost mobile bar completely */
.mobile-nav-active .navmenu::before,
.mobile-nav-active .navmenu::after,
.navmenu::before,
.navmenu::after {
  display: none !important;
  content: none !important;
}

/* Remove any leftover mobile header strip */
.mobile-nav-active .mobile-nav-toggle + * {
  display: none !important;
}

.mobile-nav-active .navmenu {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(122, 189, 229, 0.6);
  padding-top: 90px !important;
  overflow-y: auto;
}

.navmenu * {
  background: transparent !important;
  box-shadow: none !important;
}

/* ===== Mobile nav hidden by default ===== */



/* Menu list */
.navmenu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu a {
  text-decoration: none;
  color: #634512;
  font-size: 18px;
  font-weight: 600;
}

/* Hamburger hidden on desktop */
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


/* ===== FINAL MOBILE NAV FIX ===== */
@media (max-width: 1199px) {

  /* show hamburger only on mobile */
  .mobile-nav-toggle {
    display: block !important;
    color: #634512 !important;
  }

  /* hide menu by default */
  .navmenu > ul {
    display: none !important;
  }

  /* when clicked → show menu */
  .mobile-nav-active .navmenu > ul {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: rgba(122, 189, 229, 0.6) !important;
    position: fixed;
    inset: 0;
    z-index: 9998;
  }

  /* link style */
  .mobile-nav-active .navmenu a {
    color: #634512 !important;
    font-size: 26px !important;
    font-weight: 700;
  }

  /* remove ghost overlay */
  .navmenu::before,
  .navmenu::after {
    display: none !important;
    content: none !important;
  }
}

body.mobile-nav-active .navmenu > ul {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;   /* changed */
  gap: 14px !important;                 /* added */

  align-items: center !important;

  position: absolute !important;
  top: 15px !important;
  left: 0 !important;
  width: 100% !important;

  background: #7ABDE5 !important;
  padding: 10px 0 !important;
}
body.mobile-nav-active .navmenu > ul {
  justify-content: center !important;
  gap: 6px !important;   /* ← tighter spacing */
}

body.mobile-nav-active .navmenu a {
  padding: 0 6px !important;  /* ← remove extra side space */
}


/* ===== About Image Glass Card Style ===== */

.about img,
.about .about-img img,
.about-image img {
  border-radius: 40px;
  overflow: hidden;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.5);

  background: rgba(255,255,255,0.35);
}

/* optional glass wrapper */
.about .about-img,
.about-image {
  border-radius: 40px;
  padding: 8px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.15)
  );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}


.header,
.scrolled .header {
  position: fixed !important;
  top: 0;
  width: 100%;
  transition: none !important;
  box-shadow: none !important;
}

#hero {
  padding-top: 160px !important;
}
