/* =======

	Template Name: Play Bootstrap
	Author: UIdeck
	Author URI: https://uideck.com/
	Support: https://github.com/uideck/
	Version: 1.0

======== */
/*===========================
  COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
:root {
  --font: "Inter", sans-serif;
  --body-color: #e0e0e0;
  --heading-color: #ffffff;
  --primary-color: #6DB964;
  --accent-color: #00242E;
  --secondary-color: #00242E;
  --white: #1a1a1a;
  --background-color: #1a1a1a;
  --card-background: #2d2d2d;
  --border-color: #404040;
  --text-muted: #b0b0b0;
  --shadow-color: rgba(0, 0, 0, 0.3);
}





body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  background-color: var(--background-color);
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.beta-badge {
  background-color: #6DB964;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
  float: right;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}


img,
svg {
  vertical-align: middle;
}

h1,
h2,
h3,
h5 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h5 {
  font-size: 18px;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

/*===== All Button Style =====*/
.ud-main-btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 500;
  font-size: 16px;
  border-radius: 5px;
  padding: 15px 25px;
  border: 1px solid transparent;
  color: var(--white);
  background: var(--heading-color);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

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

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Header CSS ===== */
.ud-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 0;
}
.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: flex;
  flex-wrap: nowrap;
}

.navbar-brand {
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.navbar-brand img {
  max-width: 300px;
}

/* Abbreviated app name for compact areas */
.app-name-short {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.app-name-abbreviated {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

/* Mobile abbreviated version */
@media (max-width: 480px) {
  .app-name-short {
    font-size: 16px;
  }
  
  .app-name-abbreviated {
    font-size: 14px;
  }
}

.navbar-toggler {
  padding: 0;
  flex: 0 0 30px;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}


.sticky .navbar-toggler .toggler-icon {
  background-color: var(--body-color);
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}

.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}

.ud-header.sticky .navbar-nav .nav-item > a {
  color: var(--heading-color);
}
.ud-header.sticky .navbar-btn .ud-white-btn {
  background-color: var(--primary-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}

.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: #fff;
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--primary-color);
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > a {
  color: var(--white);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--primary-color);
    opacity: 1;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-white-btn:hover {
  background: rgba(255, 255, 255, 0.1);;
  color: var(--heading-color);
}

/* ===== Hero CSS ===== */
.ud-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding-top: 180px;
  position: relative;
  overflow: hidden;
}

.abstract-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.abstract-shapes .circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.abstract-shapes .circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: float 10s ease-in-out infinite;
  animation-delay: -30s;
}

.abstract-shapes .circle-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -200px;
  animation: float 10s ease-in-out infinite reverse;
  animation-delay: -15s;
}

.abstract-shapes .circle-4 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 20%;
  animation: float 10s ease-in-out infinite;
  animation-delay: -45s;
  background: rgba(255, 255, 255, 0.08);
}

.abstract-shapes .circle-5 {
  width: 350px;
  height: 350px;
  bottom: 30%;
  right: 30%;
  animation: float 10s ease-in-out infinite reverse;
  animation-delay: -60s;
  background: rgba(255, 255, 255, 0.1);
}

.abstract-shapes .circle-6 {
  width: 180px;
  height: 180px;
  top: 60%;
  left: 35%;
  animation: float 10s ease-in-out infinite;
  animation-delay: -75s;
  background: rgba(0, 0, 0, 0.15);
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  20% { transform: translate(8px, -8px) rotate(1deg) scale(1.02); }
  40% { transform: translate(-4px, 10px) rotate(-1deg) scale(0.98); }
  60% { transform: translate(-8px, -5px) rotate(0.5deg) scale(1.01); }
  80% { transform: translate(6px, 8px) rotate(-0.5deg) scale(0.99); }
  100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes gradientMove {
  0% { background-position: 20% 50% }
  50% { background-position: 10% 50% }
  100% { background-position: 20% 50% }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 160px;
  }
}

@media (max-width: 767px) {
  .ud-hero {
    padding-top: 130px;
  }
}

.ud-hero-content {
  /* max-width: 780px; */
  margin: auto;
  margin-bottom: 30px;
}

.ud-hero-content .ud-hero-title {
  color: var(--white);
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 30px;
}

.ud-hero-content .ud-hero-title .app-name {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.ud-hero-content .ud-hero-title .hero-subtitle {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 10px;
  line-height: 1.3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero-content .ud-hero-title {
    font-size: 38px;
    line-height: 50px;
  }
  
  .ud-hero-content .ud-hero-title .app-name {
    font-size: 40px;
  }
  
  .ud-hero-content .ud-hero-title .hero-subtitle {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-title {
    font-size: 26px;
    line-height: 38px;
  }
  
  .ud-hero-content .ud-hero-title .app-name {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }
  
  .ud-hero-content .ud-hero-title .hero-subtitle {
    font-size: 16px;
    margin-top: 8px;
  }
}

.ud-hero-content .ud-hero-desc {
  font-weight: normal;
  font-size: 20px;
  line-height: 35px;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-hero-content .ud-hero-desc {
    font-size: 16px;
    line-height: 30px;
  }
}

.ud-hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ud-hero-buttons .ud-main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    margin: 5px;
  }
}

@media (max-width: 767px) {
  .ud-hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}

.ud-hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-hero-buttons .ud-white-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: var(--white);
  opacity: 0.9;
  color: var(--primary-color);
}

.ud-hero-buttons .ud-dark-btn {
  background: var(--secondary-color);
  color: var(--white);
}

.ud-hero-buttons .ud-dark-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
  background: #1a1a20;
  color: var(--white);
}

.ud-hero-buttons .ud-link-btn:hover {
  background: var(--heading-color);
  opacity: 0.6;
}

.ud-hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Reserve space for dynamic content */
.ud-faq-body {
  min-height: 100px;
}

.beta-badge {
  width: 45px;
  height: 20px;
}

.ud-hero-image img {
  max-width: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
}

.ud-hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.ud-hero-image .shape.shape-2 {
  top: 10px;
  right: 20px;
}

/* ===== Features CSS ===== */
.ud-features {
  padding-top: 120px;
  padding-bottom: 90px;
}

@media (max-width: 767px) {
  .ud-features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-section-title {
  max-width: 620px;
  margin-bottom: 70px;
}

.ud-section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ud-section-title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.ud-section-title p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.ud-single-feature {
  margin-bottom: 40px;
}

.ud-single-feature:hover .ud-feature-icon::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ud-single-feature .ud-feature-icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background: var(--primary-color);
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.ud-single-feature .ud-feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: var(--primary-color);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-feature .ud-feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.ud-single-feature .ud-feature-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

/* ===== About CSS ===== */

/* ===== Pricing CSS ===== */

/* ===== FAQ CSS ===== */
.ud-faq {
  padding-top: 120px;
  padding-bottom: 90px;
  background: var(--background-color);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .ud-faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.ud-faq .shape, .ud-video-demo .shape, .ud-contact .shape {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
}

.ud-single-faq {
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0px 20px 95px rgba(109, 185, 100, 0.1);
          box-shadow: 0px 20px 95px rgba(109, 185, 100, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: rgba(13, 13, 13, 0.3);
}

.ud-single-faq .ud-faq-btn {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  color: var(--heading-color);
  opacity: 0.88;
  padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-btn {
    padding: 15px;
  }
}

.ud-single-faq .ud-faq-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ud-single-faq .ud-faq-btn span.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(109, 185, 100, 0.06);
  border-radius: 10px;
  color: var(--primary-color);
  margin-right: 24px;
}

.ud-single-faq .ud-faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
}

.ud-single-faq .ud-faq-body {
  padding: 0px 30px 40px 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-single-faq .ud-faq-body {
    padding: 0px 16px 20px 82px;
  }
}

/* ===== Testimonials CSS ===== */

/* ===== Team CSS ===== */

/* ===== Contact CSS ===== */
.ud-contact {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 767px) {
  .ud-contact {
    padding: 80px 0;
  }
}

.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: #f0f8f0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-contact::after {
    height: 45%;
  }
}

.ud-contact-title {
  margin-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-title {
    margin-bottom: 50px;
  }
}

.ud-contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.ud-contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
}

.ud-contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-contact-info-wrapper {
    margin-bottom: 50px;
  }
}

.ud-contact-info-wrapper .ud-single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 30px;
}

.ud-contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 24px;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.ud-contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.ud-contact-form-wrapper {
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
  position: relative;
  z-index: 1;
}

.ud-download-image img {
  clip-path: inset(0 5px 0 0);
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 40px 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-contact-form-wrapper {
    padding: 50px 40px;
  }
}

.ud-contact-form-wrapper .ud-contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-contact-form-wrapper .ud-contact-form-title {
    font-size: 24px;
  }
}

.ud-contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}

.ud-contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.ud-contact-form-wrapper .ud-form-group input,
.ud-contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}

.ud-contact-form-wrapper .ud-form-group input:focus,
.ud-contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
}

/* ===== Footer CSS ===== */
.ud-footer {
  background: var(--heading-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ud-footer-links {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ud-footer-links a {
  color: var(--white);
  font-size: 14px;
  margin-right: 10px;
  transition: all 0.3s;
  text-decoration: none;
}

.ud-footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.ud-footer-links .separator {
  color: var(--white);
  margin: 0 5px;
}

.ud-footer .shape {
  position: absolute;
  z-index: -1;
}

.ud-footer .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-footer .shape.shape-2 {
  top: 0;
  right: 0;
}

.ud-footer .shape.shape-3 {
  bottom: 0;
  right: 0;
}

.ud-footer-logo {
  max-width: 160px;
  display: block;
}

.ud-footer-logo img {
  width: 100%;
}

.ud-footer-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #e8f5e8;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: #e8f5e8;
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

.ud-hero-image {
  position: relative;
  width: 100%;
  margin: auto;
  text-align: center;
}

.ud-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ud-hero-image .shape {
  position: absolute;
  z-index: -1;
  width: 100px; /* Set fixed wmcnsions for shapes */
  height: 100px;
}

/* Reserve space for the logo */
.navbar-brand {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 160px;
  min-height: 40px;
}

.navbar-brand img {
  width: 100%;
  /* width: 300px; */
  height: auto;
  padding: 1rem
}

/* Reserve space for fonts */
@font-face {
  font-display: swap;
  font-family: 'Inter';
}

/* Reserve space for dynamic content */
.ud-faq-body {
  min-height: 120px;
}

.ud-feature-content {
  min-height: 150px;
}

.ud-hero-content {
  min-height: 250px;
}

/* ===========================
   DARK THEME STYLES (DEFAULT)
=========================== */

/* Header Styles */
.ud-header.sticky {
  background-color: rgba(26, 26, 26, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar-nav .nav-item > a {
  color: var(--body-color);
}

.navbar-nav .nav-item > a:hover {
  color: var(--primary-color);
}

.navbar-toggler .toggler-icon {
  background-color: var(--body-color);
}

/* Hero Section */
.ud-hero {
  background-color: var(--background-color);
}

.ud-hero-content .ud-hero-title {
  color: var(--heading-color);
}

.ud-hero-content .ud-hero-desc {
  color: var(--body-color);
}

/* Features Section */
.ud-features {
  background-color: var(--background-color);
}

.ud-single-feature {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px var(--shadow-color);
  padding: 1rem;
  border-radius: 1rem;
}

.ud-single-feature .ud-feature-icon {
  background-color: var(--primary-color);
}

.ud-single-feature .ud-feature-content h3 {
  color: var(--heading-color);
}

.ud-single-feature .ud-feature-content p {
  color: var(--body-color);
}

/* Contact Section */
.ud-contact {
  background-color: var(--background-color);
}

.ud-contact-title h2 {
  color: var(--heading-color);
}

.ud-contact-title span {
  color: var(--primary-color);
}

.ud-contact-info-wrapper .ud-single-info {
  background-color: var(--background-color);
  padding: 1rem;
  border-radius: 1rem;
}

.ud-contact-info-wrapper .ud-info-meta h5 {
  color: var(--heading-color);
}

.ud-contact-info-wrapper .ud-info-meta p {
  color: var(--body-color);
}

.ud-contact-form-wrapper {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
}

.ud-contact-form-wrapper .ud-contact-form-title h3 {
  color: var(--heading-color);
}

.ud-form-group label {
  color: var(--heading-color);
}

.ud-form-group input,
.ud-form-group textarea {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  color: var(--body-color);
}

.ud-form-group input:focus,
.ud-form-group textarea:focus {
  border-color: var(--primary-color);
}

/* Footer */
.ud-footer {
  background-color: var(--card-background);
  border-top: 1px solid var(--border-color);
}

.ud-footer-links a {
  color: var(--body-color);
}

.ud-footer-links a:hover {
  color: var(--primary-color);
}

.ud-footer-bottom {
  border-top: 1px solid var(--border-color);
}

.ud-footer-bottom .ud-footer-bottom-right {
  color: var(--body-color);
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: var(--body-color);
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
  color: var(--primary-color);
}

/* FAQ Section */
.ud-faq-wrapper {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
}

.ud-faq-title h3 {
  color: var(--heading-color);
}

.ud-faq-body p {
  color: var(--body-color);
}

/* Cards and General Elements */
.card,
.ud-single-testimonial {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  color: var(--body-color);
}

/* Buttons */
.ud-white-btn {
  background-color: var(--card-background);
  color: var(--heading-color);
}

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

/* Video Demo Section */
.ud-video-demo {
  background-color: var(--background-color);
}

.ud-video-demo h2 {
  color: var(--heading-color);
}

.ud-video-demo p {
  color: var(--body-color);
}

/* Fix contact form layout shifts */
.ud-form-group {
  margin-bottom: 20px;
  min-height: 80px;
}

.ud-form-group textarea {
  min-height: 120px;
}
/* ====== Banner CSS ======= */

/* ====== Login CSS ====== */

/* ====== Blog CSS ====== */

/* ====== Blog Details CSS ====== */

/* ====== Error 404 CSS ======= */