/*top bar*/
.pc_topbar_wrapper {
    font-size: 14px;
    text-align: center;
    color: #333;
}
.pc_topbar_wrapper a {
    color: #333;
    text-decoration: none;
}
.pc_topbar_wrapper a:hover {
    color: #007bff; /* hover effect */
}
.pc_topbar_wrapper i {
    margin-right: 15px;
    color: #2e6415;
}

.pc_logo img{
	height: 100px;
    width: 100px;
}

/*navbar*/
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    white-space: nowrap; /* prevent breaking */
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: #1b5e20; /* dark green */
    margin: 0;
    white-space: nowrap; /* keep text in one line */
}

.company-slogan {
    font-size: 17px;
    color: #555;
    margin: 0;
    text-align: center;
}
/* Mobile view styles */
@media (max-width: 991px) {
    .pc_main_header_box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo left */
    .pc_logo {
        flex: 1;
    }

    /* Menu button right */
    .mobile-menu-toggle {
        margin-left: auto;
        font-size: 26px;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* Mobile dropdown menu */
    .mobile-nav {
        display: none;
        background: #fff;
        padding: 10px 0;
    }

    .mobile-nav.active {
        display: block;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav ul li {
        border-bottom: 1px solid #eee;
    }

    .mobile-nav ul li a {
        display: block;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
    }

    .mobile-nav ul li a:hover {
        background: #f8f8f8;
    }
}

/*search button*/
.language{
  float:right;
}
#google_translate_element span{
  display:none;
}

/* Hide "Powered by" */
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

/* Hide the inline text as well */
.goog-te-gadget {
    font-size: 0 !important;
}

/* Style the dropdown only */
.goog-te-gadget .goog-te-combo {
	margin: -3px !important;
	margin-bottom: 5px !important;
}
.goog-te-combo {
    padding: 0px;
    border: 1px solid #4CAF50;   /* green border */
    border-radius: 6px;
    background: #ffffff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.goog-te-combo:hover {
    border-color: #2e7d32;
    background: #f1f8f4;
}

/* Focus effect */
.goog-te-combo:focus {
    box-shadow: 0 0 5px rgba(46,125,50,0.5);
    border-color: #2e7d32;
}

/*about us */
.breadcrumb-area {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #fff;
}

.breadcrumb-area::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 60, 40, 0.2); /* dark green overlay */
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
}

.breadcrumb-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: #fff !important;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: #ffd700; /* gold hover */
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #fff;
  padding: 0 8px;
}

/*vision and mission*/
.vision-mission-area {
  background: linear-gradient(rgba(0,50,40,0.7), rgba(0,50,40,0.7)), url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.section-title span {
  color: #1b5e20;
}
.section-subtitle {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.vision-box, .mission-box {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.vision-box:hover, .mission-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.icon-circle {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #6c8d3c;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: #fff;
  transition: all 0.4s ease;
}
.icon-circle.mission {
  background: #6c8d3c;
  color: #fff;
}
.vision-box:hover .icon-circle,
.mission-box:hover .icon-circle {
  transform: rotate(360deg);
}

.vision-box h3, .mission-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #fff;
}
.vision-box p, .mission-box p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 15px;
}
.vision-box ul, .mission-box ul {
  list-style: none;
  padding: 0;
}
.vision-box ul li, .mission-box ul li {
  position: relative;
  padding-left: 25px;
  text-align: left;
  margin-bottom: 10px;
}
.vision-box ul li::before, .mission-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffd700;
}

/*why choose us*/
.why-choose-us {
  background: url('../img/blog7.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* overlay for readability */
  z-index: -1;
}
.why-choose-us .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-choose-us .section-title h2 span {
  color: #fff; /* Green Ayurveda color */
}
.why-choose-us .section-title .section-color {
  color: #fff !important; /* Green Ayurveda color */
}
.why-choose-us .section-title p {
  color: #fff;
  font-size: 16px;
}
.choose-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.choose-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #6c8d3c;
}
.choose-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #6c8d3c;
}
.choose-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/*difference*/
.pc_our_services_heading {
    width: 100%;
}

.pc_our_services_heading h2 {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.pc_our_services_wrapper .container {
    max-width: 100%;
}

/*service*/
.enquiry-btn {
    display: inline-block;
    background: #6c8d3c;
    color: #fff !important;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.enquiry-btn:hover {
    background: #2e6415;
    color: #fff;
}

/*service*/
.treatment{
  color: #493534 !important;
}
.text-success{
  color: rgb(108 141 60) !important;
}

/*Treatment*/
.process-box .icon img {
  width: 100%;
  max-width: 225px; /* keeps the desktop layout neat */
  height: auto;
}

@media (max-width: 768px) {
  .process-box .icon img {
    max-width: 100%; /* makes it fully responsive on mobile */
  }
}

/*contact*/
.info-box p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: center; /* keeps it neat in mobile */
}
/*gallery*/
.filters{
      margin: 20px;
}
.filter-tabs li {
  cursor: pointer;
  padding: 8px 20px;
  margin: 5px;
  border-radius: 25px;
  background: #f5f5f5;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
}

.filter-tabs li.active,
.filter-tabs li:hover {
  background: #28a745; /* green highlight */
  color: #fff;
  border-color: #28a745;
}

.filter-list .default-portfolio-item .image-box img {
  width: 100%;
  height: 250px;   /* fix uniform height */
  object-fit: cover; /* crop fit */
  border-radius: 10px; /* smooth corners */
}

.filter-list .default-portfolio-item {
  margin-bottom: 46px;
}

@media (max-width: 992px) {
  .filter-list .default-portfolio-item {
    width: 50%;  /* 2 per row */
    padding: 10px;
  }
}

@media (max-width: 576px) {
	.list-inline-item {
		margin-top: 5px;
	}
	
  .filter-list .default-portfolio-item {
    width: 100%; /* 1 per row */
    padding: 5px;
  }
}

.default-portfolio-item .inner-box {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.default-portfolio-item .inner-box:hover {
  transform: translateY(-5px);
}

/*footer*/
/* Footer Background with Overlay */
.cs_footer_wrapper {
    background: url("../img/footer-bg.jpg") no-repeat center center/cover; /* un background image path va podu */
    position: relative;
    color: #fff; /* text white clear ah theriyum */
    z-index: 1;
}

.cs_footer_wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);  /* dark overlay to make content visible */
    z-index: -1;
}

/* Footer links design - hover la left point/remove underline issue fix */
.cs_footer_wrapper a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.cs_footer_wrapper a:hover {
    color: #f9c74f; /* hover color (yellow shade) */
}

/* remove unwanted hover effect (left point / underline pseudo element) */
.cs_footer_wrapper a::before {
    display: none !important;
}

/* Remove hover bullet/point from footer links */
.cs_footer_wrapper ul li a::before {
    display: none !important;
    content: none !important;
}
/* Contact box icons center align */
.pc_contact_box {
    text-align: center !important;   /* icons + text center align */
}

.pc_contact_box img {
    display: block;
    margin: 0 auto;       /* image/icon center align */
}


/*Mobile Responsive*/
/* General Responsive Defaults */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pc_banner_wrapper {
  position: relative;
  overflow: hidden;
}

.d_bannner_title, 
.d_bannner_mtitle {
  word-break: break-word;
}

.pc_banner_left_content {
  text-align: left;
}

.banner_img {
  text-align: center;
}
.banner_img img {
  width: 100%;
  border-radius: 10px;
}

/* Feature Boxes */
.dm-feature-box {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

/* Choose Us Boxes */
.choose-box {
  padding: 25px;
  border-radius: 12px;
  background: #f8f9fa;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.choose-box:hover {
  transform: translateY(-5px);
}

/* Testimonial */
.pc_testimonial_section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ===================== */
/* RESPONSIVE QUERIES    */
/* ===================== */

/* Small Mobiles */
@media (max-width: 575.98px) {
  .pc_banner_left_content {
    text-align: center;
    margin-bottom: 20px;
  }
  .d_bannner_title {
    font-size: 20px;
  }
  .d_bannner_mtitle {
    font-size: 24px;
    line-height: 1.3;
  }
  .pc_about_heading {
    font-size: 22px;
  }
  .pc_about_text2 {
    font-size: 15px;
    line-height: 1.5;
  }
  .pc_service_box {
    margin: 10px auto;
  }
  .choose-box {
    margin-bottom: 20px;
  }
  .pc_service_type_box {
    text-align: center;
    margin-bottom: 20px;
  }
  .pc_service_types .row > div {
    margin-bottom: 15px;
  }
  .pc_testimonial_section {
    padding: 15px;
  }
}

@media (max-width: 768px) {
    .d_banner_text {
        text-align: center;
    }

    .d_banner_text h2,
    .d_banner_text h3 {
        font-size: 22px; /* smaller size for mobile */
        line-height: 1.4;
    }

    .pc_banner_left_content {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/* Tablets */
@media (min-width: 576px) and (max-width: 991.98px) {
  .d_bannner_title {
    font-size: 24px;
  }
  .d_bannner_mtitle {
    font-size: 28px;
  }
  .pc_about_heading {
    font-size: 26px;
  }
  .pc_service_box {
    padding: 15px;
  }
}

/* Large Desktops */
@media (min-width: 1200px) {
  .pc_banner_left_content {
    padding-right: 40px;
  }
  .pc_about_heading {
    font-size: 32px;
  }
  .d_bannner_title {
    font-size: 28px;
    text-align: center;
  }
  .d_bannner_mtitle {
    font-size: 36px;
  }
}
/* Mobile view adjustments (≤576px) */
@media (max-width: 575.98px) {
  /* Top contact section icons center */
  .pc_contact_box {
    text-align: center;
  }
  .pc_contact_box img {
    margin: 0 auto 10px;
    display: block;
  }

  /* Footer Follow Us icons center */
  .cs_footer_icon ul {
    justify-content: center;
  }

  /* Footer text center */
  .cs_footer_section1,
  .cs_footer_section2,
  .cs_footer_section3,
  .cs_footer_section4 {
    text-align: center;
    margin-bottom: 20px;
  }
} 
@media (max-width: 575.98px) {
  .cs_footer_section1 {
    text-align: center;
    position: relative;
  }

  @media (max-width: 575.98px) {
    .cs_footer_section1 img {
        display: block;
        margin: 98px;
        margin-bottom: 160px;
        transform: translateY(184px);
}

@media (max-width: 768px) {
    .company-name {
        font-size: 15px;
        white-space: normal; /* allow wrapping on small screens */
    }
    .company-slogan {
        font-size: 12px;
    }
}
/* Banner bottom spacing fix for mobile */
@media (max-width: 768px) {
  .pc_banner_wrapper {
    margin-bottom: 0px !important; /* reduce unwanted space */
    padding-bottom: 0px !important;
  }

  .pc_banner_form_margin {
    margin-top: -68px !important; /* space reduced */
  }
}

/* Banner Wrapper */
.pc_banner_wrapper {
  position: relative;
  width: 100%;
}

/* Banner Image Responsive Fix */
.banner_img img {
  width: 100%;
  height: 400px;  /* Default desktop height */
  object-fit: cover; /* Keeps ratio, crops excess */
  border-radius: 10px; /* Optional smooth look */
}

/* Tablet Responsive */
@media (max-width: 992px) {
  .banner_img img {
    height: 300px;
  }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .banner_img img {
    height: 220px;
  }
}
/* Tablet View (768px - 991px) */
@media (max-width: 991px) {
    .d_bannner_title {
        font-size: 32px;
    }
    .d_bannner_mtitle {
        font-size: 22px;
    }
}

/* Mobile View (up to 767px) */
@media (max-width: 767px) {
    .d_bannner_title {
        font-size: 24px;
        line-height: 1.2;
    }
    .d_bannner_mtitle {
        font-size: 18px;
        line-height: 1.3;
    }
}

/* Small Mobile View (up to 480px) */
@media (max-width: 480px) {
    .d_bannner_title {
        font-size: 20px;
    }
    .d_bannner_mtitle {
        font-size: 16px;
    }
}

/*service*/
/* Mobile Responsive Service Section */
@media (max-width: 768px) {
  .pc_service_box {
    text-align: center;          /* text center */
    display: flex;
    flex-direction: column;      /* image, text, button vertical */
    align-items: center;         /* horizontal center */
    justify-content: center;     /* vertical center */
  }

  .pc_service_icon img {
    max-width: 80%;              /* image small-a scale pannum */
    height: auto;
    margin: 0 auto 15px auto;    /* bottom gap + center align */
    display: block;
  }

  .pc_service_box_body {
    text-align: center;
    width: 100%;
  }

  .pc_service_box_body h2,
  .pc_service_box_body p {
    text-align: center;
  }

  .pc_service_box_btn {
    margin-top: 10px;
    display: flex;
    justify-content: center;     /* button center */
  }
}

/* Difference section image center fix */
@media (max-width: 767px) {
  .pc_service_type_box {
    text-align: center; /* whole box content center */
  }

  .pc_service_type_box img {
    display: block;
    margin: 0 auto 15px auto; /* center image */
    max-width: 80%;  /* fit neatly on mobile */
    height: auto;
  }

  .pc_service_type_box h5,
  .pc_service_type_box p {
    text-align: center; /* text also center */
  }
}

/*about us*/
/* ===========================
   ABOUT US PAGE MOBILE STYLE
   =========================== */
@media (max-width: 768px) {

  /* Breadcrumb */
  .breadcrumb-area {
    background-size: cover;
    background-position: center;
    padding: 60px 15px;
  }
  .breadcrumb-content h1 {
    font-size: 24px;
  }
  .breadcrumb .breadcrumb-item a,
  .breadcrumb .breadcrumb-item.active {
    font-size: 14px;
  }

  /* About Section */
  .pc_about_img img {
    max-width: 90%;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 10px;
  }
  .ps_about_body {
    text-align: center;
  }
  .ps_about_heading {
    font-size: 22px;
    line-height: 1.4;
  }
  .ps_about_text1 p {
    font-size: 16px;
  }
  .ps_about_text2 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .ps_about_list ul {
    text-align: left;
    margin: 0 auto;
    display: inline-block;
  }

  /* Vision & Mission */
  .vision-mission-area {
    padding: 40px 15px;
  }
  .vision-box,
  .mission-box {
    text-align: center;
    padding: 20px;
  }
  .vision-box ul,
  .mission-box ul {
    text-align: left;
    display: inline-block;
    margin-top: 10px;
  }

  /* Counter Section */
  .pc_counter_wrapper .row > div {
    margin-bottom: 20px;
  }
  .pc_counter_text h2 {
    font-size: 22px;
  }
  .pc_counter_text p {
    font-size: 14px;
  }

  /* Testimonial */
  .pc_testimonial_section {
    text-align: center;
    padding: 20px;
  }
  .pc_temnl_flex {
    flex-direction: column;
    align-items: center;
  }
  .pc_client_img {
    margin-bottom: 15px;
  }
  .pc_client_img img {
    max-width: 120px;
    border-radius: 50%;
  }
  .pc_client_quote p {
    font-size: 14px;
    line-height: 1.5;
  }
  .pc_client_quote h4 {
    font-size: 16px;
    margin-top: 10px;
  }

  /* Swiper navigation buttons center */
  .pc_testimonial_button {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

/*topbar*/
/* Default: Desktop/Laptop - Social + Select in one line */
.language {
  display: inline-block;
  margin-left: 10px;
}

/* Mobile View */
@media (max-width: 768px) {
  .pc_topbar_wrapper .col-md-6.col-12.d-flex.justify-content-center.justify-content-md-end {
    flex-direction: column;
    align-items: center;
  }

  .pc_topbar_wrapper .col-md-6 ul.list-inline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Google translate select goes below icons */
  .pc_topbar_wrapper .language {
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }
}

/* Difference section image center fix */
@media (max-width: 767px) {
  .pc_service_type_box {
    text-align: center; /* whole box content center */
  }

  .pc_service_type_box img {
    display: block;
    margin: 0 auto 15px auto; /* center image */
    max-width: 80%;  /* fit neatly on mobile */
    height: auto;
  }

  .pc_service_type_box h5,
  .pc_service_type_box p {
    text-align: center; /* text also center */
  }
}

.pc_service_slider {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.pc_service_slider .swiper-slide {
  box-sizing: border-box;
}
