/*===========================
  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: #637381;
  
  
  --white: #ffffff;
}

body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  background-color: #fff8f0;
  overflow-x: hidden;
  
}

* {
  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;
}

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;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== 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);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: orange;
}

.about-image{
  margin-top: 10% !important;
}

.ud-main-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

.chevron-right{
  color: white;
}

.chevron-right{
  color: white;
}

@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.custom-note {
  background-color: orange;
  color: white;
  padding: 5px; /* optional for better spacing */
  border-radius: 5px; /* optional for rounded corners */
}
@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: orange;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 100px; /* ⬅️ moved up to avoid overlap */
  z-index: 99;
  color: var(--white);
  display: flex;
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Header CSS ===== */
/*
 .ud-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
  font-family: 'Poppins', sans-serif;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000; 
  background-color: #fff8f0; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.navbar .startup-logo{
  color: var(--white);
  margin-left: 45px;
}
.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-right: 50px;
}

.navbar-brand img {
  max-width: 140px; 
  height: 60px;
  margin-left: 20px;
  background-color: white;
}
.ud-header .navbar-nav .ud-submenu-link {
  font-size: 1.1rem;      
  font-weight: 500;        
  letter-spacing: 0.5px;   
  color: #b01111;      
  transition: color 0.2s ease;
}
.ud-header .navbar-nav .ud-submenu-link:hover {
  color: #9b5722;        
}

.ud-header .navbar-nav .nav-item {
  margin: 0 0.75rem;
}
@media (max-width: 412px) {
  .navbar-brand img {
    max-width: 100px;
    margin-left: 10px;
  }
}


@media (max-width:412px){
  .navbar .startup-logo{
    margin-left: 15px;

  }
}

@media (max-width:412px){
  .navbar .startup-logo{
    margin-left: 15px;

  }
}

.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: 160px;
}

@media (max-width: 412px){
  .navbar-brand img {
    max-width: 120px;
  }
}
@media (max-width: 412px){
  .navbar-brand img {
    max-width: 120px;
  }
}
.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--heading-color);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.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:  15px 8px;;
  position: relative;
}

@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: var(--white);
  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: orange;
    opacity: 1;
  }
}

.navbar-nav .nav-item .ud-submenu {
  position: absolute;
  width: 250px;
  background: var(--white);
  top: 110%;
  padding: 20px 30px;
  -webkit-box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
          box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .ud-submenu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}

.navbar-nav .nav-item .ud-submenu.show {
  display: block;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link {
  padding: 7px 0;
  color: var(--heading-color);
  font-size: 14px;
}

.navbar-nav .nav-item .ud-submenu .ud-submenu-link:hover {
  color: orange;
}

.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: orange;
    opacity: 1;
  }
}

.navbar-nav .nav-item:hover > .ud-submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}

.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-white-btn:hover {
  background: white;
  color: var(--heading-color);
}
.ud-header .navbar-nav .nav-item:hover > a {
  color: orange;
  opacity: 1;
}

.ud-header .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.ud-header .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: orange;
  opacity: 1;
}

.ud-header .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}

.ud-header .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: orange;
  opacity: 1;
}

.ud-header .navbar-btn .ud-white-btn {
  background: orange;
  color: var(--white);
}

.ud-header .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
} */

/* ===== Hero CSS ===== */
.ud-hero {
  margin-top: 20%;
  background-repeat: no-repeat;
  position: relative;
}
.ud-hero .row{
  --bs-gutter-x: 0px;
}

.navbar-nav.mx-auto{
  margin-left: auto!important;
  margin-right: 0 !important;
  background-repeat: no-repeat;
  position: relative;
}

.navbar-nav.mx-auto{
  margin-left: auto!important;
  margin-right: 0 !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-hero {
    padding-top: 160px;
  }
}

@media (max-width: 412px) {
  .ud-hero {
    margin-top: 24%;
    margin-top: 24%;
  }
}



.ud-hero-info {
  color: var(--white);
  position: relative;
  margin-top: 20%;
  position: relative;
  margin-top: 20%;
  font-weight: 700;
  margin-bottom: 30px;
}





.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;
  -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: #fefefe;
  color: orange;
}

.ud-hero-buttons .ud-link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.ud-hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.ud-hero-brands-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}

.ud-hero-brands-wrapper img:hover {
  opacity: 1;
}

.ud-hero-image {
  max-width: 80px;
  /* margin: auto; */
  text-align: center;
  position: relative;
  z-index: 1;
 
}

.ud-hero .hero-img{
  max-width: 100%;
  text-align: center;
  margin-top: -20%;
}

.hero-img-phn{
  display: none ;
}

@media (max-width: 767px) {
  .ud-hero .hero-img{
    margin-top: 5%;
    height: 600px;
  }
}

@media (max-width:412px){
  .ud-hero .hero-img
   {
    display: none ;
  }
  .hero-img-phn{
    display: flex;
    height: 500;
    margin-top: 10%;
  }
.hero-img-phn{
  display: none ;
}
}

@media (max-width: 767px) {
  .ud-hero .hero-img{
    margin-top: -20%;
    height: 600px;
  }
}

@media (max-width:412px){
  .ud-hero .hero-img
   {
    display: none ;
  }
  .hero-img-phn{
    display: flex;
    height: 500;
    margin-top: -24%;
  }
}

/* ===== Features CSS ===== */
#features .container{
  width: 100%;
  max-width: 1500px;
}

.row .note-text{
  padding-left: 600px;
}

@media (max-width:767px){
  .row .note-text{
    padding-left: 20px;
  }
  #features .note-text{
    font-size: 16px;
    margin-left: 0px;
  }
  .note-text.btn-success div{
    padding: 10px;
  }
}

#features .container{
  width: 100%;
  max-width: 1500px;
}

.row .note-text{
  padding-left: 600px;
}

@media (max-width:767px){
  .row .note-text{
    padding-left: 20px;
  }
  #features .note-text{
    font-size: 16px;
    margin-left: 0px;
  }
  .note-text.btn-success div{
    padding: 10px;
  }
}

.ud-features {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ud-section-title {
  max-width: 620px;
  margin-bottom: 50px;
}

.ud-section-title span {
  font-weight: 600;
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}



.ud-section-title span {
  font-weight: 600;
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .ud-features {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  #features .container{
    width: 100%;
    max-width: 800px;
  }

  .ud-section-title span {
    font-weight: 600;
    font-size: 8px;
    color: white;
    margin-bottom: 10px;
    font-weight: bold;
  }
}

@media (max-width: 412px) {
  .ud-features {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #features .container{
    width: 100%;
    max-width: 800px;
  }

  .ud-section-title{
    margin-bottom: 40px;
  }

  #features .container{
    width: 100%;
    max-width: 800px;
  }

  .ud-section-title span {
    font-weight: 600;
    font-size: 8px;
    color: white;
    margin-bottom: 10px;
    font-weight: bold;
  }
}
button:not(:disabled) {
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 412px) {
  .ud-features {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #features .container{
    width: 100%;
    max-width: 800px;
  }

  .ud-section-title{
    margin-bottom: 40px;
  }

  .ud-section-title span {
    font-weight: 600;
    font-size: 8px;
    color: white;
    margin-bottom: 10px;
  }
  .ud-section-title span {
    font-weight: 600;
    font-size: 8px;
    color: white;
    margin-bottom: 10px;
  }
}



.ud-section-title h2 {
  font-weight: 700;
  font-size: 38px;
  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 h2 {
    font-size: 32px;
  }
  .ud-section-title h2 {
    font-size: 32px;
  }
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.ud-single-feature {
  margin-bottom: 40px;
  margin-right: 20px;
  margin-left: 20px;
  margin-right: 20px;
  margin-left: 20px;
}

.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: orange;
  font-size: 32px;
  color: var(--white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width:767px){
  .ud-single-feature .ud-feature-icon {
    width: 40px;
    height: 40px;
    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: 7px;
    background: orange;
    font-size: 32px;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width:412px) {
  .ud-features .col-sm-6{
    text-align: center;
  }
  .ud-feature-icon{
    margin-left: 40%;
  }
}

@media (max-width:767px){
  .ud-single-feature .ud-feature-icon {
    width: 40px;
    height: 40px;
    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: 7px;
    background: orange;
    font-size: 32px;
    color: var(--white);
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width:412px) {
  .ud-features .col-sm-6{
    text-align: center;
  }
  .ud-feature-icon{
    margin-left: 40%;
  }
}

.ud-single-feature .ud-feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: orange;
  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;
}

@media (max-width:767px){
  .ud-single-feature .ud-feature-icon::before {
    border-radius: 7px;
  }
}

@media (max-width:767px){
  .ud-single-feature .ud-feature-icon::before {
    border-radius: 7px;
  }
}

.ud-single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  margin-bottom: 12px;
}

@media (max-width: 767px){
  .ud-single-feature .ud-feature-title{
    font-size: 20px;
  }
  .ud-section-title span{
    font-size: 20px;
  }
}

@media (max-width: 767px){
  .ud-single-feature .ud-feature-title{
    font-size: 20px;
  }
  .ud-section-title span{
    font-size: 20px;
  }
}

@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;
}
@media (max-width: 767px){
  .ud-single-feature .ud-feature-desc{
    font-size: 16px;
  }
}
@media (max-width: 767px){
  .ud-single-feature .ud-feature-desc{
    font-size: 16px;
  }
}

.ud-single-feature .ud-feature-link {
  font-weight: 500;
  color: var(--body-color);
}

.ud-single-feature .ud-feature-link:hover {
  color: orange;
}

/* ===== About CSS ===== */
.ud-about {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ud-about-wrapper {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-wrapper {
    display: block;
  }
}

.ud-about-content-wrapper {
  padding: 70px;
}

@media (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-about-content-wrapper {
    padding: 50px;
  }
}

.ud-about-content {
  max-width: 500px;
}

.ud-about-content .tag {
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  background: orange;
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.ud-about-content h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 45px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .ud-about-content h2 {
    font-size: 26px;
    line-height: 38px;
  }
}

.ud-about-content p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}

.ud-about-content .ud-main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .ud-about-image {
    text-align: center;
  }
}

/* ===== Pricing CSS ===== */
.ud-pricing {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #fcbc7b;
}

.ud-pricing img{
  height: 10rem;
}

.ud-pricing .card{
  width: 20rem;
  height: 24rem;
  padding: 20px;
}
.ud-faq .card .card-body{
  text-align: left !important;
  background: #f3f4fe;
}

.ud-pricing img{
  height: 10rem;
}

.ud-pricing .card{
  width: 20rem;
  height: 24rem;
  padding: 20px;
}
.ud-faq .card .card-body{
  text-align: left !important;
}

@media (max-width: 767px) {
  .ud-pricing {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ud-pricing .card {
    width: 18rem;
    height: 22rem;
    margin-bottom: 20px;
  }
  #pricing .row>* {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .ud-pricing img {
    height: 6rem;
  }
  .card-title{
    font-size: 20px;
  }
}

@media (max-width: 412px){
  .ud-pricing {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.ud-single-pricing {
  margin-bottom: 40px;
  background: var(--white);
  border: 2px solid #d4deff;
  border-radius: 8px;
  text-align: center;
  padding: 45px 30px;
  position: relative;
}

.ud-single-pricing.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#3056d3), to(#179bee));
  background: linear-gradient(180deg, #3056d3 0%, #179bee 100%);
  border: none;
  padding: 55px 30px;
}

.ud-single-pricing.active .ud-pricing-header h3,
.ud-single-pricing.active .ud-pricing-header h4 {
  color: var(--white);
}

.ud-single-pricing.active .ud-pricing-body li {
  color: var(--white);
}

.ud-single-pricing.first-item::after, .ud-single-pricing.last-item::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: 1;
}

.ud-single-pricing.first-item::after {
  background: orange;
  left: -2px;
  bottom: -2px;
  border-radius: 0px 55px 0px 8px;
}

.ud-single-pricing.last-item::after {
  background: #13c296;
  top: -2px;
  right: -2px;
  border-radius: 0px 8px 0px 55px;
}

.ud-single-pricing .ud-popular-tag {
  display: inline-block;
  padding: 10px 25px;
  background: var(--white);
  border-radius: 30px;
  color: orange;
  margin-bottom: 20px;
  font-weight: 600;
}


.ud-single-pricing .ud-pricing-body {
  margin-bottom: 40px;
}

.ud-single-pricing .ud-pricing-body li {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 18px;
}

.ud-single-pricing .ud-main-btn {
  border-radius: 30px;
  padding: 15px 40px;
}

.ud-single-pricing .ud-border-btn {
  border: 1px solid #d4deff;
  color: orange;
  background: var(--white);
}

.ud-single-pricing .ud-border-btn:hover {
  color: var(--white);
  border-color: orange;
  background: orange;
}

.ud-single-pricing .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.ud-single-pricing .ud-white-btn:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== FAQ CSS ===== */
.ud-faq {
  padding-top: 90px;
  padding-bottom: 90px;
  background: white;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .ud-faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.ud-faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.ud-single-faq {
  background: var(--white);
  border: 1px solid #f3f4fe;
  -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
          box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
}

.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(48, 86, 211, 0.06);
  border-radius: 10px;
  color: orange;
  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 (max-width: 412px){
  .card-body{
    font-size: 16px;
  }
}
@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 ===== */
.ud-section-title {
  text-align: center;
  margin-bottom: 20px;
}
.testimonial-grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  margin-bottom: 40px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;             /* Size of the circle */
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border-radius: 50%;      /* Makes it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;         /* Icon size */
  z-index: 10;
  pointer-events: none;    /* Prevent click interference */
}


.testimonial-card h4 {
  margin-top: 15px;
  font-size: 18px;
  color: #b01111;
}

.testimonial-card p {
  font-size: 14px;
  color: #666;
}

/* Optional animation or tilt */
/* .tilt {
  transform: rotate(-1deg);
}
.delay-1 {
  transform: rotate(1deg);
}
.delay-2 {
  transform: rotate(-2deg);
} */

/* =====Testimonials css end === */
.ud-brands .ud-title {
  margin-bottom: 30px;
}

.ud-brands .ud-title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}

.ud-brands .ud-title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}

.ud-brands .ud-brands-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -40px;
}

.ud-brands .ud-brands-logo .ud-single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}

.ud-brands .ud-brands-logo .ud-single-logo:hover img {
  -webkit-filter: none;
          filter: none;
}

.ud-brands .ud-brands-logo .ud-single-logo img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== Team CSS ===== */
.ud-team {
  padding-top: 90px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .ud-team {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-single-team {
  margin-bottom: 40px;
}

.ud-single-team .ud-team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}

.ud-single-team .ud-team-image {
  border-radius: 50%;
}

.ud-single-team .ud-team-image img {
  width: 100%;
  border-radius: 50%;
}

.ud-single-team .shape {
  position: absolute;
  z-index: -1;
}

.ud-single-team .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-single-team .shape.shape-2 {
  bottom: 0;
  right: 0;
}

.ud-single-team .ud-team-info {
  text-align: center;
  margin-bottom: 20px;
}

.ud-single-team .ud-team-info h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.ud-single-team .ud-team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}

.ud-single-team .ud-team-socials {
  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;
}

.ud-single-team .ud-team-socials a {
  width: 32px;
  height: 32px;
  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;
  margin: 0px 10px;
  color: #cdced6;
}

.ud-single-team .ud-team-socials a:hover {
  color: orange;
}

/* ===== Contact CSS ===== */
.ud-contact {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

@media (max-width: 767px) {
  .ud-contact {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.ud-contact::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 50%;
  background: linear-gradient(to bottom, #fffaf0, #fde6c4);
}

@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: block;
  -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-title h2{
    font-size: 32px;
  }
}

.ud-contact-info-wrapper .ud-single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 400px;
  margin-bottom: 30px;
}

.ud-contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: orange;
  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;
}

@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: orange;
}

/* ===== Footer CSS ===== */
.spiritual-footer {
  background: linear-gradient(to bottom, #fffaf0, #fde6c4);
  padding: 60px 0 30px;
  font-family: 'Segoe UI', sans-serif;
  color: #5c3a00;
  border-top: 5px double #e67e22;
}

.brand-name {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: 36px;
  color: #d97706;
}
@media (max-width: 576px) {
  /* target your footer company name */
  .brand-name {
    white-space: nowrap;    /* prevents wrapping to next line */
    overflow-x: auto;       /* if it’s too long, lets it scroll horizontally */
    font-size:19px; 
    color: #d97706;     /* optional: shrink slightly to fit */
  }
}
.footer-mantra {
  font-size: 16px;
  margin-top: 10px;
  color: #9b5722;
  font-style: italic;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #c65f00;
}

.footer-middle a {
  color: #9b5722;
  text-decoration: none;
}

.footer-middle .social-icon {
  font-size: 24px;
  color: #d35400;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-middle .social-icon:hover {
  color: #a84300;
}

.footer-symbol {
  width: 40px;
  margin: 15px 0;
  opacity: 0.8;
}

.footer-copy {
  font-size: 14px;
  color: #7b4f1d;
}

/* .ud-footer {
  background: var(--heading-color);
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.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-widget {
  margin-bottom: 50px;
}

.ud-widget .ud-footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}

.ud-widget .ud-footer-logo img {
  width: 100%;
}

.ud-widget .ud-widget-desc {
  font-size: 15px;
  line-height: 24px;
  color: #f3f4fe;
  margin-bottom: 30px;
  max-width: 260px;
}

.ud-widget .ud-widget-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-widget .ud-widget-socials a {
  font-size: 16px;
  color: #dddddd;
  margin-right: 20px;
}

.ud-widget .ud-widget-socials a:hover {
  color: orange;
}

.ud-widget .ud-widget-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--white);
}

.ud-widget .ud-widget-links a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 30px;
  color: #f3f4fe;
}

.ud-widget .ud-widget-links a:hover {
  color: orange;
  padding-left: 10px;
}

.ud-widget .ud-widget-brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.ud-widget .ud-widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .ud-widget .ud-widget-brands a {
    max-width: 100px;
  }
}

.ud-footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
  margin-right: 30px;
  display: inline-block;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: orange;
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: orange;
}

.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;
  }
} */

/* ====== Banner CSS ======= */
.ud-page-banner {
  padding-top: 130px;
  padding-bottom: 80px;
  background: orange;
  background-image: url("../images/banner/banner-bg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ud-banner-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.ud-banner-content h1 {
  color: var(--white);
  font-size: 38px;
  font-weight: 600;
}

/* ====== Login CSS ====== */
.ud-login {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ud-login-wrapper {
  max-width: 500px;
  margin: auto;
  background: var(--white);
  text-align: center;
  padding: 60px;
  -webkit-box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
}

.ud-login-wrapper .ud-login-logo {
  margin-bottom: 30px;
}

.ud-login-form .ud-form-group {
  margin-bottom: 25px;
}

.ud-login-form .ud-form-group input {
  width: 100%;
  border: 2px solid #dddddd;
  border-radius: 4px;
  padding: 12px 24px;
  background: #fcfdfe;
  color: var(--body-color);
}

.ud-login-form .ud-form-group input:focus {
  border-color: orange;
}

.ud-socials-connect {
  padding-top: 10px;
  padding-bottom: 30px;
}

.ud-socials-connect p {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 10px;
}

.ud-socials-connect ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -10px;
  margin-right: -10px;
}

.ud-socials-connect ul li {
  width: 100%;
}

.ud-socials-connect ul li a {
  height: 45px;
  background: orange;
  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;
  margin: 10px;
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
}

.ud-socials-connect ul li a.facebook {
  background: #4064ac;
}

.ud-socials-connect ul li a.facebook:hover {
  background: #315294;
}

.ud-socials-connect ul li a.twitter {
  background: #1c9cea;
}

.ud-socials-connect ul li a.twitter:hover {
  background: #0f8bd8;
}

.ud-socials-connect ul li a.google {
  background: #d64937;
}

.ud-socials-connect ul li a.google:hover {
  background: #c53b29;
}

.forget-pass {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.signup-option {
  color: var(--body-color);
  font-size: 16px;
}

.signup-option a {
  color: orange;
}

/* ====== Blog CSS ====== */
.ud-blog-grids {
  padding-top: 120px;
  padding-bottom: 80px;
}

.ud-blog-grids .container{
  max-width: 1500px;
  padding-left: 14px;
}

.blog-heading{
  color: black;
  font-size: 42px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ud-blog-grids.ud-related-articles {
  padding-top: 100px;
}

@media (max-width: 412px) {
  .ud-blog-grids {
    margin-top: 120px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ud-blog-grids .container{
    max-width: 1200px;
    padding-left: 40px;
  }

  .blog-heading{
    font-size: 32px;
    margin-top: 0px;
  margin-bottom: 10px;
  }
}

.ud-single-blog {
  margin-bottom: 40px;
}

.ud-single-blog:hover .ud-blog-image img {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

.ud-single-blog .ud-blog-image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}

.ud-single-blog .ud-blog-image a {
  display: block;
}

.ud-single-blog .ud-blog-image img {
  width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ud-single-blog .ud-blog-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: orange;
  color: var(--white);
  border-radius: 5px;
  margin-bottom: 20px;
}

.ud-single-blog .ud-blog-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-single-blog .ud-blog-title {
    font-size: 20px;
    line-height: 28px;
  }
}

.ud-single-blog .ud-blog-title a {
  color: inherit;
}

.ud-single-blog .ud-blog-title a:hover {
  color: orange;
}

.ud-single-blog .ud-blog-desc {
  font-size: 16px;
  line-height: 28px;
}

.ud-related-articles-title {
  font-weight: 800;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 50px;
}

.ud-related-articles-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: orange;
  left: 0;
  bottom: 0;
}


.ud-newsletter-box {
  background: orange;
  padding: 60px 45px;
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-newsletter-box {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-newsletter-box {
    padding: 60px 45px;
  }
}

.ud-newsletter-box .shape {
  position: absolute;
  z-index: -1;
}

.ud-newsletter-box .shape.shape-1 {
  top: 0;
  right: 0;
}

.ud-newsletter-box .shape.shape-2 {
  left: 0;
  bottom: 0;
}

.ud-newsletter-box .ud-newsletter-title {
  font-weight: 600;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-newsletter-box .ud-newsletter-title {
    font-size: 23px;
  }
}

.ud-newsletter-box p {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form {
  margin-top: 30px;
}

.ud-newsletter-box .ud-newsletter-form input {
  width: 100%;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  text-align: center;
  margin-bottom: 15px;
  border: 2px solid transparent;
  padding: 12px 20px;
}

.ud-newsletter-box .ud-newsletter-form input::-webkit-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input::placeholder {
  color: var(--white);
  opacity: 1;
}

.ud-newsletter-box .ud-newsletter-form input:focus {
  border-color: var(--white);
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn {
  background: #13c296;
  -webkit-box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 4px 42px rgba(0, 0, 0, 0.01);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}

.ud-newsletter-box .ud-newsletter-form .ud-main-btn:hover {
  background: var(--heading-color);
}

.ud-newsletter-box .ud-newsletter-form .ud-newsletter-note {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.ud-articles-box {
  margin-bottom: 50px;
}

.ud-articles-box .ud-articles-box-title {
  font-weight: 600;
  font-size: 28px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 20px;
}

.ud-articles-box .ud-articles-box-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background: orange;
  left: 0;
  bottom: 0;
}

.ud-articles-box .ud-articles-list li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ud-articles-box .ud-articles-list li:last-child {
  padding-bottom: 0px;
  border-bottom: 0px;
}

.ud-articles-box .ud-articles-list .ud-article-image {
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 65px;
    height: 65px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ud-articles-box .ud-articles-list .ud-article-image {
    max-width: 80px;
    height: 80px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-image img {
  width: 100%;
}

.ud-articles-box .ud-articles-list .ud-article-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ud-articles-box .ud-articles-list .ud-article-title {
    font-size: 16px;
  }
}

.ud-articles-box .ud-articles-list .ud-article-title a {
  color: inherit;
}

.ud-articles-box .ud-articles-list .ud-article-title a:hover {
  color: orange;
}

.ud-articles-box .ud-articles-list .ud-article-author {
  font-size: 14px;
}

.ud-banner-ad {
  border-radius: 5px;
  overflow: hidden;
}

.ud-banner-ad a {
  display: block;
}

.ud-banner-ad img {
  width: 100%;
}

/* ====== Error 404 CSS ======= */
.ud-404 {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .ud-404 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ud-404-wrapper {
  text-align: center;
  max-width: 850px;
  margin: 0px auto;
  background: var(--white);
  padding: 100px 60px;
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .ud-404-wrapper {
    padding: 50px 30px;
  }
}

.ud-404-wrapper .shape {
  position: absolute;
  z-index: -1;
}

.ud-404-wrapper .shape.shape-1 {
  top: 0;
  left: 0;
}

.ud-404-wrapper .shape.shape-2 {
  right: 0;
  bottom: 0;
}

.ud-404-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-title {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .ud-404-title {
    font-size: 30px;
  }
}

.ud-404-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ud-404-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .ud-404-subtitle {
    font-size: 18px;
  }
}

.ud-404-links {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.ud-404-links a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  color: var(--heading-color);
  background: rgba(48, 86, 211, 0.06);
  border-radius: 5px;
  margin: 5px 10px;
}

.ud-404-links a:hover {
  background: var(--heading-color);
  color: var(--white);
}

@media (max-width: 767px) {
  .ud-404-links a {
    margin: 5px 10px;
    font-size: 14px;
    padding: 10px 20px;
  }
}
.word-cloud {
  max-width: 100%;
  padding: 20px;
  padding-top: 0px;
  text-align: center;
}
.word {
  display: inline-block;
  margin: 15px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
}
.word:hover {
  transform: scale(1.2);
  z-index: 10;
}
.size1 { font-size: clamp(14px, 5vw, 2.5rem); color: #23a455; }
.size2 { font-size: clamp(12px, 4.5vw, 2rem); color: #1d8a44; }
.size3 { font-size: clamp(10px, 4vw, 1.8rem); color: #156c35; }
.size4 { font-size: clamp(8px, 3.5vw, 1.6rem); color: #0e4f27; }
.size5 { font-size: clamp(6px, 3vw, 1.4rem); color: #092f19; }

@media (max-width: 412px) {
  .word-cloud{
    text-align: start;
    list-style-type: disclosure-closed;
  }
  .word {
    display: list-item;
    transition: none;
    font-weight: 400;
    margin: 0px;
    padding-left: 10px;
  }
  .word:hover {
    transform: none;
    z-index: 0;
  }
  .size1, .size2, .size3, .size4, .size5{
    font-size: 16px;
    color: var(--body-color);
  }
}

.ud-about{
  .card{
    width: 18rem;
    height: 10rem;
    margin: 10px;
    margin-right: 60px;
  }
}

#about .container{
  max-width: 1500px;
}

.about-desc{
  margin-bottom: 40px;
}

.about-heading{
  color: black;
  font-size: 42px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.about-img{
  border-radius: 42px;
}

.about-card{
  padding: 0;
}

.about-vision{
  margin-top: 0px;
}

@media (max-width: 412px) {
  .ud-about{
    margin-top: 40px;
    margin-bottom: 40px;
    .card{
      width: 20rem;
      height: 10rem;
    }
  }
  .about-img{
    border-radius: 0;
  }
  .about-heading{
    font-size: 32px;
  }
}

.pooja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 20px;
  justify-items: center;
}

.pooja-item {
  text-align: center;
}

.pooja-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border: 3px solid black;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pooja-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.7); /* Orange glow */
}

.pooja-item p {
  margin-top: 10px;
  font-weight: 500;
  color: #333;
}
/*.orange-tint {
  filter: sepia(1) saturate(6) hue-rotate(-20deg) brightness(1.2);
  opacity: 0.6; /* adjust to blend with background */

.ud-pricing {
  padding: 60px 0;
  background-color: white; /* light background to match theme */
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.ud-pricing .card {
  max-width: 20rem;
  height: 24rem;
  padding: 20px;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3); /* orange glow */
  background-color: #fff7e0; /* subtle highlight */
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  text-align: center;
  padding: 20px;
}

.card-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-text {
  font-size: 0.95rem;
  color: #333;
}

.ud-section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.ud-section-title span {
  font-size: 2rem;
  color: #ff8c00;
  font-weight: 500;
  display: block;
  margin-bottom: 30px;
  font-weight: bold;
}

.ud-single-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ud-testimonial-video {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 aspect ratio */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.ud-testimonial-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover; /* You can use "contain" if you want full video in frame */
  border-radius: 12px;
  aspect-ratio: 9 / 16;
}
/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  padding: 14px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
}

/* Side tooltip for Book Pandit */
.whatsapp-tooltip {
  position: fixed;
  bottom: 28px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  z-index: 9998;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  animation: blinkText 1s infinite;
}

/* Show tooltip on scroll */
.whatsapp-tooltip.show {
  opacity: 1;
  transform: translateX(0);
}

/* Blinking animation */
@keyframes blinkText {
  0%   { opacity: 1; }
  50%  { opacity: 0.3; }
  100% { opacity: 1; }
}




.mySlides {
  display: none;
  position: relative;
  height: auto;
}

.slide-bg {
  background: url("assets/images/Testimonials/background.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  inset: 0;
  opacity: 1;
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  color: #3e2604;
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #cc4e14;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.slide-header h2 {
  margin: 0;
  font-size: 26px;
}

.lang-tag {
  background: #fff;
  color: #cc4e14;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
}

.slide-section {
  margin-bottom: 25px;
}

.slide-section h4 {
  color: #cc4e14;
  margin-bottom: 10px;
}

.divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid #cc4e14;
  margin: 0 10px;
}

.divider img {
  width: 35px;
  height: auto;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #cc4e14;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

/* make the pills big & friendly */
#langTabs .nav-link {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  color: #4b2e19;
  background-color: #fff;
  transition: background 0.2s, color 0.2s;
}
#langTabs .nav-link.active {
  background-color: #b01111;
  color: #fff;
}
#langTabs .nav-link:hover {
  background-color: #9b5722;
  color: #fff;
}

/* content card */
.tab-pane .bg-white {
  line-height: 1.6;
  color: #333;
}
.tab-pane hr {
  border-top: 2px dashed #ffcc99;
}
@media (max-width: 576px) {
  .tab-pane .bg-white {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

/*# sourceMappingURL=ud-styles.css.map */