body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
  }
  
  a {
    color: #47b2e4;
    text-decoration: none;
  }
  
  a:hover {
    color: #73c5eb;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Jost", sans-serif;
  }
  
/* ***************** navbar section started here ********************* */
#nav-bar{
    position: static;
    top: 0;
    z-index: 10;
    padding: 0;
}

.brand-text h5 {
    font-weight: bold;
    margin: 0;
 }
 
 .brand-text small {
    font-size: 0.85rem;
    color: #555;
 }
 



/* Navbar Custom Styling */
.navbar {
    background-color: #fff;
    padding: 0;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); Adds a subtle shadow to the navbar */
}

.navbar-brand img {
    width: 90%;
    display: flex;
    justify-content: flex-end;
}

.navbar-nav li {
    padding: 0 10px;
}

.navbar-nav li a {
    color: #000;
    font-weight: 600;
    float: right;
    text-align: left;
    font-size: 16px; /* Set font size for the navbar items */
    padding: 10px 15px;
    transition: color 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for menu items */
.navbar-nav li a:hover {
    color: solid rgb(236 85 72);
}

/* Navbar toggler button */
.navbar-toggler:focus {
    box-shadow: none !important;
}

.fa-bars {
    color: #fff;
    font-size: 30px;
}

.navbar-toggler {
    outline: none;
}

/* Custom Styling for Nested Dropdowns */
.dropdown-submenu {
    position: relative;
}

/* Style for nested dropdown menu */
.dropdown-submenu .dropdown-menu {
    display: none; 
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    transition: all 0.3s ease-in-out; 
}

/* Show the nested dropdown when hovering (for desktop) */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
    animation: slideIn 0.2s ease-out; 
}

/* Add a slide-in effect */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Arrow icon for nested dropdowns */
.dropdown-submenu > a::after {
    /* content: "▸"; Use an arrow to indicate the submenu */
    float: right;
    margin-left: 10px;
    color: #007bff; 
}




/* Hover effect for nested dropdown items */
.dropdown-submenu .dropdown-item:hover {
    background-color: #007bff;
    color: white;
    transition: background-color 0.3s ease;
}

/* Hover effect for top-level menu items */
.nav-item.dropdown:hover > a {
    background-color: #f1f1f1;
    color: #007bff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Adjust the dropdown menu items */
.dropdown-menu > .dropdown-item {
    color: #37517e; /* Dark color for the menu items */
    padding: 10px 20px;
    font-size: 14px; /* Set font size for the items */
}

/* Hover effect for normal dropdown items */
.dropdown-menu > .dropdown-item:hover {
    background-color: #007bff;
    color: white;
}

/* Adjust for mobile view */
.navbar-toggler {
    border: none;
    /* background-color: #007bff; */
}

/* Adjust the look of the hamburger icon */
.navbar-toggler-icon {
    background-color: white;
}

/* For mobile view, force the dropdowns to be clickable */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
    }

    .dropdown-submenu .dropdown-menu {
        left: 0;
        margin-top: 0;
    }
}





/* ***************** navbar section ended here ********************* */
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
    /* padding: 1px 0; */
  }
  
  #header.header-scrolled,
  #header.header-inner-pages {
    background: rgba(40, 58, 90, 0.9);
  }
  
  #header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  #header .logo a {
    color: #fff;
  }
  
  #header .logo img {
    max-height: 70px;
  }
  


  
/*   index page */

.acu-head {
    color: rgb(236 85 72);
    font-size: 50px;
}

.acu-small {
    padding: 14px 0px;
    font-size: 18px;
    color: #444444;
}

.acu-para {
    text-align: left;
    line-height: 1.55em;
    font-size: 16px;
    color: #444444;
}

.btn-orange {
    background-color: rgb(236 85 72);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 18px;
    transition: background-color 0.3s ease;
 }
 
 .btn-orange:hover {
    background-color: rgb(175, 104, 17);
    color: #fff;
 }
 

 @media (max-width: 767px) {
    /* Adjust text and images for mobile view */
    .acu-head {
        font-size: 30px;
        text-align: center;
    }
    .acu-para {
        font-size: 14px;
    }
    .img-fluid {
        max-width: 100%;
        height: auto;
    }
    .navbar-brand img {
        height: 60px;
    }
    .navbar-nav .nav-link {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    /* Medium and large screens */
    .acu-head {
        font-size: 50px;
        text-align: left;
    }
    .acu-para {
        font-size: 18px;
    }
}

.text-center {
    text-align: center;
}

.bg-orange {
    background-color: rgb(236, 85, 72);
}

.bg-grey {
    background-color: rgb(240, 240, 240);
}

 
 .abt-acu {
    font-size: 28px;
    color: #fff;
 }

 .abt-acu1 {
    font-size: 18px;
    color: #fff;
 
 }

 .abt-para {
    font-size: 17px;
    font-family: "Jost", sans-serif;
    color: #fff;
 }

 .about-acu h2, 
 .about-acu h6, 
 .about-abt p {
    color: #fff; /* optional: white text for contrast */
    margin-bottom: 1rem;
 }
 
 .healing-head {
        color: rgb(236 85 72);
       font-size: 37px;

 }
 .heal-para {
    font-size: 16px;
    font-family: "Jost", sans-serif;
    color: #000;
 }
.heal-contact {
    color: rgb(236 85 72);
    text-align: center;
    margin-top: 20px;
}

.index-blog{
    border: 1px solid #0c0303;
    padding: 160px 0px;
}


.contact-form {
    width: 100%;
    border-top: 3px solid rgb(236 85 72);;
    border-bottom: 3px solid rgb(236 85 72);;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  
  .contact-form .form-group {
    padding-bottom: 2px;
  }
  
  .contact-form .form-select {
    border-radius: 10px !important;
    box-shadow: #0c3c53;
    margin-top: 3px;
    height: 42px;
  }
  
  .contact-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .contact-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .ccontact-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    padding-bottom: 2px;
  }
  
  .contact-form input,
  .contact-form textarea {
    border-radius: 0;
    box-shadow: #0c3c53;
    font-size: 14px;
    border-radius: 10px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #47b2e4;
  }
  
  .contact-form input {
    height: 44px;
  }
  
  .contact-form textarea {
    padding: 10px 10px;
  }
  
  .contact-form button[type=submit] {
    background: rgb(236 85 72);;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
  }
  
   .contact-form button[type=submit]:hover {
    background: #209dd8;
  }
  
  .error {
    color: #f02849;
    font-family: "Jost", sans-serif;
    font-size: 13px;
  }


  /* about us page */

  .about-banner {
    background-image: url('assests/images/about-img.jpg');
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner .overlay {
    
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-info {
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 40px;
    color: #333;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive text adjustments */
.about-head {
    margin-bottom: 10px;
    font-size: 28px;
    font-family: "Jost", sans-serif;
}

.about-para {
    line-height: 1.6;
    font-size: 17px;
    font-family: "Jost", sans-serif;
    padding: 20px 0;

}

/* Responsive tweaks for smaller screens */
@media (max-width: 768px) {
    .about-info {
        padding: 30px 20px;
    }

    .about-head {
        font-size: 1.8rem;
    }

    .about-para {
        font-size: 0.95rem;
    }

    .about-banner {
        height: auto;
        padding: 60px 0;
    }

    .about-banner .overlay {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .about-head {
        font-size: 1.6rem;
    }

    .about-para {
        font-size: 0.9rem;
    }
}


.certificate-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.acupresure-img {
    background-image: url(assests/images/acupresure-img.jpg);
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .acupresure-img {
        height: 400px;
    }
}

.acupresure-head {
    color: rgb(236, 85, 72);
    font-size: 40px;
    font-family: "Jost", sans-serif;
}

.acupresure-head1 {
    font-size: 21px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
}

.acupresure-para {
    line-height: 1.6;
    font-size: 17px;
    font-family: "Jost", sans-serif;
    padding: 10px 0;
}

.blog-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}


.btn-log {
    border: 1px solid #000;
    padding: 7px;
    border-radius: 10px;
    font-size: 14px;
    font-family: "Jost", sans-serif;
}

.blog {
    border: 1px solid #000;
    padding: 150px  0px;
}


/* work page */
.work {
    padding: 90px 0px;
}

.work-head {
    text-align: center;
    padding-bottom: 10px;
    font-size: 33px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
}

.work-para {
    
    font-size: 16px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
}

.hero-slider img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
  }
  

  
  .carousel-item {
    transition: opacity 1s ease-in-out;
    opacity: 0;
    position: absolute;
    display: block !important;
}
.carousel-item.active {
    opacity: 1;
    position: relative;
}


  /* Footer Styling */
#footer {
    background-color: white;
    color: #333;
    font-family: Arial, sans-serif;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-head-text {
    margin: 10px 0;
    font-size: 26px;
    font-weight: 400;
    color: #333;
}

.footer-text {
    margin: 10px 0;
    font-size: 16px;
}

.footer-text a {
    color: #000;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.social-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    font-size: 18px;
    color: #333;
    text-decoration: none;
}

.social-icon:hover {
    color: #007BFF;
}


 
    /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #37517e;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid rgb(236, 85, 72);;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: rgb(236, 85, 72);;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: rgb(156, 32, 20);;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

  .nav-item .dropdown-menu .dropdown-item{
    color: #000;
  }

  @media(max-width: 768px){
    #footer .footer-top .footer-links{
      justify-content: unset;
    }
  }

  @media(max-width: 992px){
    .navbar-nav li a{
      float: unset;
    }
  }
  .shadow{
    margin: 10px;
  }



  