/*
Theme Name: Jamil
Theme URI: http://yourwebsite.com/jamil
Author: Your Name
Author URI: http://yourwebsite.com
Description: Custom WordPress theme "Jamil"
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jamil
Tags: custom, responsive, blog, clean
*/


* {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', sans-serif;
}



/* Header part start */

#etharStickyHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFE;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

#etharStickyHeader .ethar-header-inner {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Main flex container */
.ethar-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 12px; /* small spacing between items */
}

/* Logo */
.ethar-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.ethar-logo img {
  height: 42px;
}

/* ===== MOBILE/TABLET SEARCH (middle area) ===== */

.ethar-header-search {
  display: none; /* hidden on desktop by default */
}

.ethar-header-search-input {
  width: 70%;
  height: 36px;
  border-radius: 9px;        /* pill shape */
  border: 1px solid #d0d7de;
  background-color: #f5f8fa;
  padding: 0 12px;
  font-size: 14px;
  color: #111827;
  outline: none;
  margin: 0px auto;
}

.ethar-header-search-input::placeholder {
  color: #9ca3af;
}

/* Desktop Menu */
.ethar-menu ul {
  display: flex;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ethar-menu li {
  position: relative;
}

.ethar-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
}

.ethar-menu a:hover {
  color: #007bff;
}

.ethar-menu a .arrow {
  margin-left: 6px;
  transition: transform .3s ease;
}

/* Submenu (desktop) - hidden by default */
.ethar-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  margin-top: 8px;
  padding: 8px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  display: none;
  z-index: 1001;
}

.sub-menu li {
  list-style: none;
}

.sub-menu li a {
  padding: 10px 18px;
  display: block;
  color: #444;
  font-weight: 400;
}

.sub-menu li a:hover {
  background: #f5f5f5;
}

/* Show submenu when JS adds .open */
.ethar-menu li.open > .sub-menu {
  display: block;
}

/* Rotate arrow when open */
.ethar-menu li.open > a .arrow {
  transform: rotate(90deg);
}

/* Desktop language select */
.ethar-lang select {
  border-radius: 6px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  background: #fff;
}

/* Mobile toggle button */
.ethar-mobile-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* Mobile menu (off‑canvas from left) */
.ethar-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: #f9f9f9;
  padding: 10px 16px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease;
  z-index: 1100;
  display: none; /* enabled for small screens below */
}

.ethar-mobile-menu.is-open {
  transform: translateX(0);
}

.ethar-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ethar-mobile-menu li {
  list-style: none;
}

.ethar-mobile-menu a {
  font-weight: 500;
  padding: 12px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
  text-decoration: none;
}

.ethar-mobile-menu a:hover {
  background: #ececec;
}

.ethar-mobile-menu .sub-menu {
  display: none;
  background: #ffffff;
  margin-left: 10px;
  border-left: 3px solid #ddd;
}

.ethar-mobile-menu .sub-menu a {
  font-weight: 400;
  color: #555;
}

/* Mobile language block */
.ethar-mobile-lang {
  padding: 14px 10px;
  border-top: 1px solid #e5e5e5;
  margin-top: 8px;
}

.ethar-mobile-lang span {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.ethar-mobile-lang select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
}

/* Overlay behind mobile menu */
.ethar-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  z-index: 900;
}

.ethar-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Prevent background scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Header part end */




/*header search autocomplete design start*/
.ethar-ac-menu {
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: #fff;
    overflow: hidden;
    z-index: 9999;
    font-family: sans-serif;
}

/* Autocomplete items */
.ethar-ac-item {
    display: block;
    padding: 10px 15px;
    color: #0bceee;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s, color 0.2s;
}

/* Hover effect */
.ethar-ac-item:hover {
    background-color: #0bceee;
    color: #fff;
}

/* Remove border from last item */
.ethar-ac-menu li:last-child .ethar-ac-item {
    border-bottom: none;
}
/*header search autocomplete design end*/





/*Homepage slider part start*/
/* ===== Hero Slider (Scoped) ===== */
.hs5-hero-section{
  /* section-level variables (no :root) */
  --hs5-hero-h: 76vh;
  --hs5-hero-min-h: 520px;
  --hs5-overlay: rgba(11, 24, 35, .55);
  --hs5-accent2: #7cf0ff;

  position: relative;
}

.hs5-hero-section .hs5-hero-wrap{
  position: relative;
  height: var(--hs5-hero-h);
  min-height: var(--hs5-hero-min-h);
  overflow: hidden;
  border-radius: 14px;
}

/* Owl full height */
.hs5-hero-section .hs5-owl,
.hs5-hero-section .hs5-owl .owl-stage-outer,
.hs5-hero-section .hs5-owl .owl-stage,
.hs5-hero-section .hs5-owl .owl-item{
  height: 100%;
}

.hs5-hero-section .hs5-slide{
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}

/* overlay */
.hs5-hero-section .hs5-slide::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.55) 100%),
    radial-gradient(1200px 600px at 50% 40%, rgba(0,0,0,.10), rgba(0,0,0,.55));
  z-index: 1;
}

/* reveal effect (append/reveal feel) */
.hs5-hero-section .hs5-slide::after{
  content:"";
  position:absolute; inset:0;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  opacity: .95;
  background: rgba(255,255,255,.03);
}

.hs5-hero-section .owl-item.active .hs5-slide.hs5-reveal::after{
  animation: hs5RevealIn 900ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes hs5RevealIn{
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* center content */
.hs5-hero-section .hs5-content{
  position:absolute;
  inset:0;
  z-index: 2;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 18px;
}

.hs5-hero-section .hs5-inner{
  max-width: 860px;
}

.hs5-hero-section .hs5-kicker{
  color: rgba(255,255,255,.85);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(14px);
}

.hs5-hero-section .hs5-title{
  color: #fff;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2.1rem, 3.6vw, 4.1rem);
  margin: 0 0 14px;
  opacity: 0;
  transform: translateY(18px);
}

.hs5-hero-section .hs5-sub{
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin: 0 0 22px;
  opacity: 0;
  transform: translateY(18px);
}

.hs5-hero-section .hs5-cta{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  opacity: 0;
  transform: translateY(18px);
}

.hs5-hero-section .hs5-btn-book{
  border: 1px solid rgba(255,255,255,.75);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  text-decoration: none;
  transition: .25s ease;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .85rem;
  display: inline-block;
}

.hs5-hero-section .hs5-btn-book:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(124,240,255,.9);
  color:#fff;
  box-shadow: 0 10px 35px rgba(124,240,255,.18);
  transform: translateY(-1px);
}

.hs5-hero-section .hs5-tag{
  display:inline-flex;
  align-items:center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0b121a;
  background: linear-gradient(90deg, #7cf0ff, #b9ffdd);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* text animation on active */
.hs5-hero-section .owl-item.active .hs5-kicker,
.hs5-hero-section .owl-item.active .hs5-title,
.hs5-hero-section .owl-item.active .hs5-sub,
.hs5-hero-section .owl-item.active .hs5-cta{
  animation: hs5TextIn 780ms cubic-bezier(.2,.8,.2,1) both;
}

.hs5-hero-section .owl-item.active .hs5-title{ animation-delay: 90ms; }
.hs5-hero-section .owl-item.active .hs5-sub{ animation-delay: 170ms; }
.hs5-hero-section .owl-item.active .hs5-cta{ animation-delay: 260ms; }

@keyframes hs5TextIn{
  from { opacity:0; transform: translateY(18px); filter: blur(2px); }
  to   { opacity:1; transform: translateY(0); filter: blur(0); }
}

/* bottom-right controls */
.hs5-hero-section .hs5-controls{
  position:absolute;
  right: 22px;
  bottom: 18px;
  z-index: 3;
  display:flex;
  align-items:center;
  gap: 12px;
}

.hs5-hero-section .hs5-nav-btn{
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: .22s ease;
  position: relative;
  overflow: hidden;
}

.hs5-hero-section .hs5-nav-btn i{
  font-size: 22px;
  line-height: 1;
}

.hs5-hero-section .hs5-nav-btn:hover{
  border-color: rgba(124,240,255,.95);
  box-shadow: 0 12px 35px rgba(124,240,255,.18);
  transform: translateY(-1px);
}

/* pulse ring */
.hs5-hero-section .hs5-nav-btn::after{
  content:"";
  position:absolute; inset:-10px;
  border-radius: 50%;
  border: 1px solid rgba(124,240,255,.35);
  opacity: 0;
  transform: scale(.85);
}

.hs5-hero-section .hs5-nav-btn.hs5-pulsing::after{
  animation: hs5Pulse 1200ms ease-out infinite;
}

@keyframes hs5Pulse{
  0%   { opacity:0; transform: scale(.85); }
  30%  { opacity:.55; }
  100% { opacity:0; transform: scale(1.18); }
}

/* progress bar */
.hs5-hero-section .hs5-progress{
  width: 140px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
}

.hs5-hero-section .hs5-progress > span{
  display:block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #7cf0ff, #b9ffdd);
  border-radius: 999px;
  transition: width linear;
}

@media (max-width: 576px){
  .hs5-hero-section .hs5-controls{ right: 14px; bottom: 14px; }
  .hs5-hero-section .hs5-progress{ width: 110px; }
}
/*Homepage slider part end*/





/* ===== Search Section (Scoped), homepage ===== */
.hs5-simple-search{
  position: relative;
  padding: 38px 0;
}

.hs5-simple-search .hs5-ss-wrap{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 18px 16px;
}

.hs5-simple-search .hs5-ss-title{
  font-weight: 800;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  margin-bottom: 14px;
  color: inherit; /* global color থাকলে সেটাই নেবে */
}

/* input shell */
.hs5-simple-search .hs5-ss-input{
  position: relative;
  border-radius: 999px;
  padding: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
}

.hs5-simple-search .hs5-ss-ic{
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .75;
  font-size: 18px;
  pointer-events: none;
}

/* the input */
.hs5-simple-search #hs5ServiceSearch{
  width: 100%;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  outline: none;

  padding: 0 18px 0 54px;
  font-weight: 700;
  letter-spacing: .01em;
  color: inherit;
}

.hs5-simple-search #hs5ServiceSearch::placeholder{
  opacity: .65;
}

/* focus glow */
.hs5-simple-search #hs5ServiceSearch:focus{
  border-color: rgba(124,240,255,.55);
  box-shadow: 0 0 0 5px rgba(124,240,255,.12);
}

/* hint */
.hs5-simple-search .hs5-ss-hint{
  margin-top: 10px;
  font-size: .92rem;
  opacity: .75;
}

/* ===== Autocomplete menu (appendTo section for scoping) ===== */
.hs5-simple-search .hs5-ac-menu{
  margin-top: 10px !important;
  padding: 10px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(0,0,0,.62) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
  max-height: 280px;
  overflow: auto;
  z-index: 9999;
}

/* remove default li spacing */
.hs5-simple-search .hs5-ac-menu .ui-menu-item{
  margin: 0;
  padding: 0;
}

/* clickable tag-like item */
.hs5-simple-search .hs5-ac-item{
  display: block;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 12px;
  color: #fff;
}

.hs5-simple-search .hs5-ac-tag{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 800;
  letter-spacing: .02em;
}

/* hover/active */
.hs5-simple-search .hs5-ac-item:hover .hs5-ac-tag,
.hs5-simple-search .hs5-ac-menu .ui-state-active .hs5-ac-tag{
  border-color: rgba(124,240,255,.55);
  background: rgba(124,240,255,.14);
}










/* WHO WE ARE SECTION */
#who-we-are-section {
    padding: 50px 0;
    background-color: #f5f8fa;
}

.who-image-wrapper {
    height: 100%;
    max-height: 520px;          /* keeps image tall but not too huge */
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.who-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* tall portrait look */
    display: block;
}

/* Right content */
.who-content {
    padding-left: 10px;
}

.who-eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #00818B;
    margin-bottom: 8px;
}

.who-title {
    font-size: 2rem;
    font-weight: 700;
    color: #001517;
    margin-bottom: 15px;
}

.who-text {
    font-size: 1rem;
    color: #124143;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Nice CTA button */
.who-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 34px;
    border-radius: 999px;
    background-color: #00818B;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: none;
    box-shadow: 0 12px 30px rgba(0,129,139,0.35);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.who-btn:hover {
    background-color: #005f66;
    box-shadow: 0 18px 40px rgba(0,95,102,0.45);
    transform: translateY(-2px);
}






/*FAQ AND MAP PART HOMEPAGE*/
#faq-map-section {
    padding: 0px 0;
    background-color: #f5f8fa; /* section background */
}

.faq-item {
    background-color: #fff; /* FAQ background */
    color: #124143;         /* FAQ text color */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.faq-item .accordion-button {
    color: #124143;
    background-color: #fff;
    font-weight: 500;
}

.faq-item .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #124143;
    box-shadow: none;
}

.faq-item .accordion-body {
    color: #124143;
}

/* Video container (previously map) */
.map-container .ratio {
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}







/*Our services section, homepage*/
#services-section {
    padding: 30px 0;
    background-color: #f5f8fa;
}

#services-section h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    color: #001517;
}

.service-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* hover transition (kept) */
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box img {
    width: 100%;
    max-height: 250px; /* taller image */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1rem;
    color: #001517;
    flex-grow: 1;
    text-align: left;
    margin-bottom: 15px;
}

.service-box .btn-group {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.service-box .btn-outline-primary {
    border-color: #00818B;
    color: #00818B;
}

.service-box .btn-primary {
    background-color: #00818B;
    border-color: #00818B;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

#browse-all-services {
    display: inline-block;
    margin: 50px auto 0;
    padding: 12px 48px; /* wider */
    font-weight: 600;
    border-radius: 30px;
    background-color: #00818B;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

#browse-all-services:hover {
    background-color: #005f66;
}

/* ========== SCROLL ANIMATION FOR SERVICE BOXES ========== */

/* start hidden */
.service-box.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.8s ease-out,
                box-shadow 0.3s ease;
}

/* directions */
.service-box.scroll-animate.from-left {
    transform: translateX(-40px);
}

.service-box.scroll-animate.from-right {
    transform: translateX(40px);
}

.service-box.scroll-animate.from-bottom {
    transform: translateY(40px);
}

/* when in view */
.service-box.scroll-animate.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0); /* back to normal */
}










/* Before footer section start **** */
.wellness-dashboard {
    min-height: 320px;
}

/* --- Left main hero card --- */
.wellness-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    /*background-image: url("https://images.pexels.com/photos/269263/pexels-photo-269263.jpeg?auto=compress&cs=tinysrgb&w=1200");*/
    background-size: cover;
    background-position: center;
}

/* Dark gradient overlay for readability */
.wellness-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.75), rgba(0,0,0,0.25));
}

.wellness-card .card-body {
    position: relative;
    z-index: 1;
    padding: 2rem 2.5rem;
}

.wellness-card h1 {
    line-height: 1.1;
}

/* Stats under main title */
.wellness-stats .stat-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.wellness-stats .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* --- Right, Air quality card --- */
.air-quality-card {
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.air-quality-card .card-body {
    padding: 1.5rem 1.5rem 1.75rem;
}

/* Simple AQI radial meter */
.aqi-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: conic-gradient(#f4c95d 0 240deg, #e5e7f2 240deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.aqi-circle::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background-color: #ffffff;
}

.aqi-inner {
    position: relative;
    text-align: center;
}

.aqi-value {
    font-weight: 700;
    font-size: 1.4rem;
}

.aqi-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aqi-status {
    color: #f59e0b;
}

/* Round small icon button */
.btn.shadow-0 {
    box-shadow: none !important;
}

/* --- Trees card --- */
.trees-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /*background-image: url("https://images.pexels.com/photos/7657695/pexels-photo-7657695.jpeg?auto=compress&cs=tinysrgb&w=1200");*/
    background-size: cover;
    background-position: center;
    min-height: 170px;
}

.trees-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
}

.trees-card .card-body {
    position: relative;
    z-index: 1;
    padding: 1.3rem 1.5rem;
}

.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.tracking-wide {
    letter-spacing: 0.08em;
}
/* Before footer section end**** */













/* ===== Footer (white background) ===== */
.site-footer {
    background-color: #02498F; /*#ffffff*/
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 24px rgba(15,23,42,0.04);
    color: #111827;
}

.footer-logo {
    text-decoration: none;
    color: #0f172a;
}
.footer-logo:hover {
    color: #111827;
}

.logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 12px;
    background: linear-gradient(135deg, #34d399, #22c55e);
    box-shadow: 0 0 14px rgba(34,197,94,0.4);
}

/* Typography */
.footer-title {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF; /*#6b7280*/
    margin-bottom: 0.85rem;
    font-weight: bold;
}

.text-footer-muted {
    color: #FDFDFE; /*#6b7280*/
}

/* Links */
.footer-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #FDFDFE; /*#4b5563*/
    text-decoration: none;
    padding: 2px 0;
    transition: color .18s ease, transform .18s ease;
}
.footer-link::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: transparent;
    margin-right: 6px;
    transition: background-color .18s ease, transform .18s ease;
}
.footer-link:hover {
    color: #111827;
    transform: translateX(2px);
}
.footer-link:hover::before {
    background-color: #38bdf8;
    transform: scale(1.2);
}

/* Social icons (10 icons) */
.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 0.85rem;
    transition: background-color .18s ease, border-color .18s ease,
                color .18s ease, transform .18s ease;
}
.footer-social-link:hover {
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Newsletter */
.newsletter-form .form-control {
    border-radius: 999px 0 0 999px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    color: #111827;
    font-size: 0.85rem;
}
.newsletter-form .form-control::placeholder {
    color: #9ca3af;
}
.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 1px #38bdf8;
    border-color: #38bdf8;
    background-color: #ffffff;
}

.btn-accent {
    border-radius: 0 999px 999px 0;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    border: none;
    color: #ffffff;
}
.btn-accent:hover {
    filter: brightness(1.05);
    color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
    font-size: 0.8rem;
    border-top: 1px solid #e5e7eb;
    color: #FDFDFE; /*#6b7280*/
}





/*mobile/tab section*/
/* Wrapper: fixed at bottom */
.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    padding: 0 10px env(safe-area-inset-bottom);
    /* Transparent around the bar for a “floating” feel */
    background: transparent;
}

/* Inner bar */
.mobile-bottom-nav-inner {
    max-width: 600px;
    margin: 0 auto 8px;
    background: #ffffff;
    border-radius: 16px 16px 12px 12px;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.10);
    padding: 6px 4px 4px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* Each item */
.mobile-nav-item {
    flex: 1 1 0;
    text-align: center;
    text-decoration: none;
    color: #6c757d; /* muted text */
    font-size: 11px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* Icon circle */
.mobile-nav-item .icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.2s ease;
}

/* FA icon */
.mobile-nav-item i {
    font-size: 16px;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Label */
.mobile-nav-item .nav-label {
    line-height: 1;
}

/* Hover / active style */
.mobile-nav-item:hover,
.mobile-nav-item:focus {
    color: #0d6efd;
}

.mobile-nav-item:hover .icon-wrap,
.mobile-nav-item:focus .icon-wrap {
    background: rgba(13, 110, 253, 0.08);
}

.mobile-nav-item:hover i,
.mobile-nav-item:focus i {
    color: #0d6efd;
    transform: translateY(-1px);
}

/* Active tab */
.mobile-nav-item.active {
    color: #0d6efd;
}

.mobile-nav-item.active .icon-wrap {
    background: rgba(13, 110, 253, 0.12);
}

.mobile-nav-item.active i {
    color: #0d6efd;
}









/*Floating social icons*/
/* ==== Floating Contact Icons (Call & WhatsApp) ==== */
.floating-contact-icon {
    position: fixed;
    bottom: 90px;               /* above mobile bottom nav; on desktop it's just above bottom */
    z-index: 1040;
    cursor: move;
}

/* Left & right default positions */
.floating-call {
    left: 12px;
}

.floating-whatsapp {
    right: 12px;
}

.floating-contact-icon .floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255,255,255,0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    animation: pulseScale 1.6s ease-in-out infinite; /* attention effect */
}

/* Icon size */
.floating-contact-icon i {
    font-size: 22px;
}

/* Call button style (premium blue gradient) */
.floating-call .floating-btn {
    background: linear-gradient(135deg, #0d6efd, #0046c8);
}

/* WhatsApp button style (official green tone) */
.floating-whatsapp .floating-btn {
    background: linear-gradient(135deg, #25D366, #1DA955);
}

/* Hover / click feedback */
.floating-contact-icon .floating-btn:hover,
.floating-contact-icon .floating-btn:active {
    transform: scale(1.07);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    filter: brightness(1.05);
}

/* Pulse animation */
@keyframes pulseScale {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    }
}











/*Single page start*/

/* Main section background */
/*#service-hero {
    background: radial-gradient(circle at top left, #eef2ff 0, #e0f7fa 40%, #f9fafb 100%);
}*/

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.service-subtitle {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 520px;
}

/* Book Now button (color: #00818B) */
.btn-book-now {
    background-color: #00818B;
    border-color: #00818B;
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 129, 139, 0.35);
}

.btn-book-now:hover,
.btn-book-now:focus {
    background-color: #006971;
    border-color: #006971;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 129, 139, 0.45);
}

/* WhatsApp CTA block */
.whatsapp-cta {
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e0fdf5, #c7f9e9);
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.28);
    color: #065f46;
}

.whatsapp-cta:hover {
    background: linear-gradient(135deg, #ccfbf1, #a7f3d0);
    color: #065f46;
    transform: translateY(-1px);
    transition: all 0.15s ease-in-out;
}

.whatsapp-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #22c55e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.5);
    flex-shrink: 0;
}

.whatsapp-icon-wrap i {
    font-size: 1.3rem;
}

.whatsapp-text {
    line-height: 1.2;
}

.whatsapp-label {
    font-size: 0.78rem;
    color: #047857;
}

.whatsapp-number {
    font-size: 0.95rem;
    color: #065f46;
}

/* Right card (video + pricing) */
.service-media {
    background: #ffffff;
}

.service-pricing .regular-price {
    font-size: 0.9rem;
}

.service-pricing .offer-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.discount-badge {
    border-radius: 999px;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
}

/* If you don't have Bootstrap 5's "bg-success-subtle / text-success-emphasis" classes,
   uncomment this and remove those two utility classes from HTML:
.discount-badge {
    background-color: #dcfce7;
    color: #166534;
}
*/

@media (max-width: 767.98px) {
    .service-title {
        font-size: 1.6rem;
    }
    .service-media {
        margin-top: 0.75rem;
    }
}









/* ===== Service Details Section start ===== */
#service-details {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

/* Left sidebar */
.service-sidebar {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 18px 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.service-feature-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sidebar-heading {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
}

.service-links li + li {
    margin-top: 0.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: #111827;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.15s ease, transform 0.15s ease;
}

.service-link i {
    font-size: 0.85rem;
    color: #9ca3af;
}

.service-link:hover {
    color: #0d6efd;
    transform: translateX(2px);
}

.sidebar-text {
    color: #6b7280;
}

/* Right side description */
.service-description {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    font-size: 0.96rem;
    color: #4b5563;
    line-height: 1.7;
}

.service-description h1,
.service-description h2,
.service-description h3,
.service-description h4,
.service-description h5,
.service-description h6 {
    color: #111827;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-description ul,
.service-description ol {
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}

/* FAQ styles (Bootstrap 5 Accordion) */
.service-faq {
    margin-top: 1.5rem;
}

.faq-heading {
    color: #111827;
    font-weight: 600;
}

#service-details .accordion-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    margin-bottom: 0.6rem;
}

#service-details .accordion-button {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111827;
    background-color: #ffffff;
    box-shadow: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

#service-details .accordion-button::after {
    /* Smaller chevron icon */
    background-size: 0.9rem;
}

#service-details .accordion-button:not(.collapsed) {
    background-color: #eff6ff;
    color: #0f172a;
}

#service-details .accordion-body {
    font-size: 0.9rem;
    color: #4b5563;
    padding-top: 0.75rem;
    padding-bottom: 0.9rem;
}

@media (max-width: 767.98px) {
    .service-sidebar {
        border-radius: 16px;
    }
    .service-description {
        border-radius: 16px;
        padding: 16px 16px;
    }
}
/*Service Details Section end*/








 /*Category page part start*/
#category-hero {
    position: relative;
    overflow: hidden;
    color: #f9fafb;
    min-height: 380px;
    /*background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Soft dark overlay to make text readable */
#category-hero .category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            120deg,
            rgba(15, 23, 42, 0.92) 0%,
            rgba(15, 23, 42, 0.80) 35%,
            rgba(15, 23, 42, 0.65) 65%,
            rgba(15, 23, 42, 0.4) 100%
    );
    pointer-events: none;
    z-index: 0;
}

#category-hero .container {
    position: relative;
    z-index: 1;
}

.category-hero-content {
    padding: 18px 18px 18px 0;
    backdrop-filter: blur(4px);
}

.category-title {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #293a4a;
}

.category-subtitle {
    font-size: 0.98rem;
    max-width: 520px;
    color: #e5e7eb;
}

/* Book Now button (#00818B like before) */
.btn-book-now {
    background-color: #00818B;
    border-color: #00818B;
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 129, 139, 0.45);
}

.btn-book-now:hover,
.btn-book-now:focus {
    background-color: #006971;
    border-color: #006971;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 129, 139, 0.6);
}

/* Right side video block */
.category-hero-video-wrapper {
    max-width: 560px;
    margin-left: auto;
}

.category-hero-video {
    background: radial-gradient(circle at top left, #1f2937 0, #020617 55%);
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.8),
        0 0 0 1px rgba(148, 163, 184, 0.3);
}

.category-hero-video iframe {
    border: 0;
}

@media (max-width: 991.98px) {
    #category-hero {
        text-align: center;
    }
    .category-hero-content {
        padding-right: 0;
    }
    .category-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .category-hero-video-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .category-title {
        font-size: 1.7rem;
    }
}









/* ===== CATEGORY SERVICES SECTION ===== */
#category-services {
    background-color: #f3f4f6;
    border-top: 1px solid #e5e7eb;
}

.category-services-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
}

.category-services-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 520px;
}

/* Service card */
.service-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.service-image-wrap {
    position: relative;
    overflow: hidden;
    max-height: 210px;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-wrap img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 16px 18px 18px;
}

.service-meta {
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.service-category,
.service-subcategory {
    font-weight: 600;
    font-size: 0.7rem;
}

.meta-separator {
    margin: 0 4px;
}

.service-name {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.service-name-link {
    color: inherit;
    text-decoration: none;
}

.service-name-link:hover {
    color: #0d6efd;
    text-decoration: none;
}

.service-snippet {
    font-size: 0.9rem;
    color: #6b7280;
}

/* WhatsApp button (Book Now) */
.btn-whatsapp {
    border-radius: 999px;
    background: linear-gradient(135deg, #00818B, #22c55e);
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.92rem;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.45);
}

.btn-whatsapp i {
    font-size: 1.1rem;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #ffffff;
    background: linear-gradient(135deg, #006971, #16a34a);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.6);
}

@media (max-width: 767.98px) {
    .category-services-title {
        font-size: 1.4rem;
    }
    .service-card-body {
        padding: 14px 14px 16px;
    }
}






/*Contact us page start*/
#contact-page {
    background: radial-gradient(circle at top left, #eef2ff 0, #f9fafb 40%, #e0f7fa 100%);
}

.contact-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.contact-page-subtitle {
    font-size: 0.98rem;
    color: #6b7280;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-card,
.contact-info-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px 22px 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.contact-form-card h2,
.contact-info-card h2 {
    color: #111827;
    font-weight: 600;
}

.contact-form-card .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.contact-form-card .form-control {
    border-radius: 12px;
    border-color: #e5e7eb;
    font-size: 0.9rem;
    box-shadow: none;
}

.contact-form-card .form-control:focus {
    border-color: #00818B;
    box-shadow: 0 0 0 0.12rem rgba(0, 129, 139, 0.25);
}

/* Submit button (same primary color #00818B) */
.btn-contact-submit {
    background-color: #00818B;
    border-color: #00818B;
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.55rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 10px 24px rgba(0, 129, 139, 0.4);
}

.btn-contact-submit:hover,
.btn-contact-submit:focus {
    background-color: #006971;
    border-color: #006971;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 129, 139, 0.55);
}

/* Contact info blocks */
.contact-info-block + .contact-info-block {
    border-top: 1px dashed #e5e7eb;
    padding-top: 0.75rem;
}

.contact-info-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    display: flex;
    align-items: center;
    margin-bottom: 0.2rem;
}

.contact-info-label i {
    font-size: 1rem;
    margin-right: 0.4rem;
    color: #9ca3af;
}

.contact-info-content {
    font-size: 0.92rem;
}

.contact-link {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: #0d6efd;
    text-decoration: none;
}

/* Social links */
.contact-social-links .social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.contact-social-links .social-link.facebook {
    background: #1877f2;
}

.contact-social-links .social-link.twitter {
    background: #1da1f2;
}

.contact-social-links .social-link.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497 0, #ff4b2b 45%, #c13584 70%, #5851db 100%);
}

.contact-social-links .social-link.whatsapp {
    background: #22c55e;
}

.contact-social-links .social-link.youtube {
    background: #ff0000;
}

.contact-social-links .social-link.telegram {
    background: #0088cc;
}

.contact-social-links .social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.4);
    opacity: 0.95;
}

@media (max-width: 767.98px) {
    .contact-page-title {
        font-size: 1.7rem;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 16px 16px 18px;
        border-radius: 16px;
    }
}



/*map part*/
/* ===== Contact Map Section start ===== */
#contact-map {
    width: 100%;
}

#contact-map .map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;          /* change height if you want */
    overflow: hidden;
}

#contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Optional: taller map on large screens */
@media (min-width: 992px) {
    #contact-map .map-wrapper {
        height: 500px;
    }
}
/* ===== Contact Map Section end ===== */










