
/*
Theme Name: InHeritage
Theme URI: www.inheritage.co.za
Description: Custom template for InHeritage
Author: Frontend Visuals
Author URI: www.frontend-visuals.co.za
Author Email: info@frontend-visuals.co.za
Version: 1
Tags: 
*/
@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

input:state(placeholder) {
  color: var(--placeholder-color);
  font-weight: 500;
}

:focus {
  outline: none;
}

:root {
  --primary-color: #519C93;
  --secondary-color: #85B4B1;
  --light-color: #D5DFDE;
  --dark-color: #343D3D;
  --darker-color: #2A3131;
  --primary-font: "Open Sans", sans-serif;
  --light-bg-color: #F9F9F9;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--dark-color);
  font-family: var(--primary-font);
  background-color: #f9f9f9;
  font-weight: 400;
  font-size: 17px;
}

p {
  font-size: 17px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
}

.h2, h2 {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--primary-color);
}
h4 {
  font-weight: 400;
}
.page-title {
  color: var(--primary-color);
}
.primary-background-color {
  background-color: var(--secondary-color);
}
.secondary-background-color {
  background-color: var(--darker-color);
}
.light-background-color {
  background-color: var(--light-bg-color);
}
.primary-content-color {
  color: var(--primary-color);
}
.card-body {
  padding: 50px 30px;
}
.card-title {
  color: #2A3131;
}
.card-text {
  color: #B0B0B0;
}
.card {
  border-radius: 15px;
  overflow: hidden;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--dark-color);
  background-color: #fff;
  padding: 0;
  transition: all 0.5s;
  z-index: 1000;
  margin-top: 0px;
}

.header .header-container {
  padding: 4px 16px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  width: calc(100% - 0px);
  border-radius: 0px;
  margin-top: 0px;
  border-bottom: 1px solid #D6D6D6;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 60px;
  margin-right: 0px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--dark-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--dark-color);
  background: #fff;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 0px;
  }

  .header .header-container {
    margin-left: 0px;
    margin-right: 0px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--color-dark);
    padding: 18px 14px;
    font-size: 15px;
    font-family: var(--primary-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: transparent;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: none;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--primary-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--dark-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    transition: 0.3s;
    top: 80px;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}
/* Desktop */
@media (min-width: 1200px) {
  .desktop-menu { display: flex; }
  .mobile-menu { display: none; }
}

/* Mobile */
@media (max-width: 1199px) {
  .desktop-menu { display: block; }
}
@media (min-width: 1200px) {
  #MainNavbar.collapse {
    display: block !important;
    height: auto !important;
    visibility: visible !important;
  }
}
/* Active / Current Menu Item Styling */
.navmenu ul li.current-menu-item > a,
.navmenu ul li.current_page_item > a {
  font-weight: 700;            /* bolder */
  color: var(--primary-color) !important;   /* dark green (customize if needed) */
  position: relative;
}

/* Default Chevron */
#navmenu ul li a::after {
  font-family: "Material Symbols Rounded";
  content: "expand_more"; 
  font-size: 15px;
  margin-left: 6px;
  vertical-align: middle;
  color: inherit; /* follows text color by default */
  transition: all 0.3s ease;
  max-width: 15px!important;
}

/* Active Chevron → White icon inside green circle */
.navmenu ul li.current-menu-item > a::after,
.navmenu ul li.current_page_item > a::after {
  color: #fff !important;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 0px;
  font-size: 14px;
  line-height: 1;
}
.main-header-navigation-container {
  padding: 0 3vw;
}
/*--------------------------------------------------------------
# Footer Layout
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  margin-top: 0rem;
}
.footer-social svg {
  width: 100%;
  max-width: 30px;
}
.footer-left {
  background-color: #2e3433;
  color: #ccc;
  padding: 0 0 0 3vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-right {
  background-color: #519C93;
  color: #fff;
  padding: 0 3vw 0 3vw;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer .container-fluid {
  max-width: 100%;
}

/* Logo styling */
.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 40px;
}

.tagline {
  font-style: italic;
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-menu {
  width: 100%;
  max-width: 50%;
}
/* Footer menu */
.footer-menu ul {
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-menu li {
  list-style: none;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: #fff;
}

/* Copyright */
.copyright {
  font-size: 0.85rem;
  color: #fff;
}

/* Form styling */
.get-in-touch h5 {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-right .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 0;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-right .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-right .form-control:focus {
  background: transparent;
  border-bottom: 1px solid #fff;
  box-shadow: none;
  color: #fff;
}

.btn-submit {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  background: #fff;
  color: #4a8f7e;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-submit:hover {
  background: #f0f0f0;
/*  transform: translateY(-2px);*/
}

/* Social icons */
.footer-social a {
  font-size: 1.4rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #f0f0f0;
}

.footer-left .container {
  flex: 1; /* Allow inner content to stretch */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-left .footer-brand,
.footer-left .footer-menu,
.footer-left .copyright {
  margin-bottom: 0; /* Remove extra default margins for even spacing */
}
@media (max-width: 576px) {
  .footer-menu ul {
    flex-direction: column;
    gap: 0.8rem;
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
/*
section,
.section {
  color: var(--dark-color);
  background-color: transparent;
  padding: 8rem 0;
  scroll-margin-top: 90px;
  overflow: clip;
}
*/

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}
.main {
  min-height: 44vh;
}
.pages-top-section-container {
  padding-top: 80px;
}
/*--------------------------------------------------------------
# Home Slider Section
--------------------------------------------------------------*/
.hero-slider-link {
  width: 100%;
  text-align: center;
  padding: 6px 15px;
  color: #fff;
  background-color: var(--primary-color);
  max-width: 220px;
  display: block;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  height: 40px;
  border-radius: 20px;
}

.hero-slider-link:hover {
  background-color: var(--secondary-color);
  color: var(--dark-color);
  transition: all 0.4s ease-in-out;
}

.hero-slider-main-outer-container {
  padding: 0;
  height: 710px; /* fixed slider height */
  margin-top: 69px;
}

.hero-slider-slide {
  height: 100vh;
  max-height: 710px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-slider-content-container {
  top: auto;
  transform: none;
  padding: 0 15px;
  max-width: 60%;
  width: 100%;
}

.hero-slider-header {
  font-weight: 700;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 30px;
}

.hero-slider-tag {
  background: var(--background-color-gold-red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  font-size: 20px;
}

.hero-slider-excerpt {
  margin-bottom: 15px;
}

.hero-slider-link-container {
  margin-top: 0;
}

/* Slick Slider Buttons */
.slick-slide {
  float: left;
/*  height: 100%;*/
  margin: 0;
  min-height: 1px;
  position: relative;
}

.slick-prev-btn,
.slick-next-btn {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0 solid #000;
  border-radius: 0;
  height: 35px;
  padding: 1px 0 0 3px;
  top: 50%;
  width: 35px;
  z-index: 99;
  position: absolute;
  max-width: 35px;
  max-height: 35px;
  min-width: 35px;
  overflow: hidden;
}

.slick-prev-btn {
  background-image: url("imgs/chevronleft.svg");
  left: -5%;
}

.slick-next-btn {
  background-image: url("imgs/chevronright.svg");
  right: -5%;
}

/* Optional: Responsive header scaling */
@media (max-width: 992px) {
  .hero-slider-header {
    font-size: 3.5rem;
  }
}

/*
@media (max-width: 576px) {
  .hero-slider-header {
    font-size: 2.5rem;
  }
  .hero-slider-link {
    width: 100px;
    height: 36px;
    line-height: 36px;
  }
}
*/

.home-our-distinctive-services-heading {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 1.3rem;
}
.home-our-distinctive-services-card {
  background-color: #fff;
  border: 0;
}
.home-our-distinctive-services-content {
  color: #b0b0b0;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Container/section setup */
.contact-address-us {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.about-contact-address-us-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 260px;
  z-index: 0;
}

@media (min-width: 768px) {
  .about-contact-address-us-image {
    width: 58.333333%;
  }

  .about-contact-address-us-content-container {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 767.98px) {
  .about-contact-address-us-image {
    position: relative;
    width: 100%;
    height: 220px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-join-us-img-container {
  background-position: center;
  background-size: cover;
  min-height: 600px;
  background-repeat: no-repeat;
}
.about-join-us-content-container {
  padding: 0 12vw;
}
/*--------------------------------------------------------------
# Specialise in Section
--------------------------------------------------------------*/
.speciality-card .icon img {
  width: auto;
  max-width: 70px;
  height: 40px;
}
.speciality-card {
  padding: 15px;
}
/*--------------------------------------------------------------
# Forms Section
--------------------------------------------------------------*/
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
.form-step .hero-slider-link {
  max-width: 100px;
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
.faq-title {
	text-align: center;
	font-size: 45px;
	font-weight: normal;
}

.faq-group {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
}

.faq-group .faq-left {
	width: 38%;
}

/*
.faq-group .faq-right {
	width: 58%;
	border-left: #ccc 1px solid;
	padding-left: 30px;
	margin-left: 4%;
}
*/

.faq-group h3 {
	font-size: 24px;
	font-weight: normal;
	margin: 35px 0 15px 0;
}

.faq-group h3:first-child {
	margin-top: 0px;
}
.faq-btns {
 margin-bottom: 40px;
}
.faq-btn {
	width: 100%;
	display: inline-block;
	border: #000 1px solid;
	border-radius: 4px;
	text-align: center;
	margin: 10px 0;
	background-color: #fff;
	padding: 14px;
	text-decoration: none;
	color: #000;
	transition: 0.5s all;
}

.faq-btn:hover {
	background-color: #000;
	color: #fff;
}

.faq-item {
	width: 100%;
  margin: 7px 0px;
  border-bottom: #ebebeb 1px solid;
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 10px;
}

.faq-item .faq-label {
	position: relative;
	width: 100%;
	padding: 12px 26px 12px 0px;
	cursor: pointer;
	font-size: 16px;
	color: var(--dark-color);
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
}

.faq-item .faq-label i {
	width: 18px;
	height: 100%;
	position: absolute;
	right: 3px;
	top: 15px;
}

.faq-item .faq-label i {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  background: url("assets/img/faqarrow.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}

/* When FAQ is active/open */
.faq-item.faq-item-show .faq-label i {
  transform: rotate(180deg); /* flips arrow up */
}


/*
.faq-item .faq-label i:before {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 18px;
	height: 2px;
	background-color: #000;
}

.faq-item .faq-label i:after {
	content: '';
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	width: 2px;
	height: 18px;
	background-color: #000;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
}
*/

.faq-item.faq-item-show .faq-label i:after {
	opacity: 0;
}

.faq-item-show .faq-label {
  font-weight: 600;
}

.faq-label {
  color: var(--primary-color)!important;
}

.faq-cont {
	transition: 0.3s all;
	overflow: hidden;
	height: 0px;
}

.faq-cont p {
	color: #6B6B6B;
}

.faq-item.faq-item-show .faq-cont {
	display: block;
	padding-top: 0px;
	padding-bottom: 0px;
	overflow: auto;
	height: auto;
}

.faq-cont p {
	margin: 0px 0 20px 0;
}

.faq-cont p:last-child {
	margin-bottom: 0px;
}

@media(max-width:992px) {
 .faq-group .faq-left{
   width: 100%;
 }
 .faq-group .faq-right {
   width: 100%;
   border-left: none;
   padding-left: 0;
   margin-left: 0;
 }
}	

/* ===== Custom Bootstrap Datepicker Styles ===== */
.datepicker {
  padding: 6px!important;
  border-radius: var(--bs-border-radius)!important;
  border: 1px solid #ddd!important;
/*  box-shadow: 0 4px 12px rgba(0,0,0,0.08)!important;*/
  background: #fff!important;
}
.datepicker td, .datepicker th {
  text-align: center;
  width: 50px;
  height: 40px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: none;
}
/* Header (Month / Year) */
.datepicker .datepicker-switch {
  font-size: 1rem!important;
  font-weight: 600!important;
  padding: 8px 0!important;
  color: #333!important;
}

.datepicker .prev, 
.datepicker .next {
  font-size: 1.2rem!important;
  color: #666!important;
  transition: color 0.2s ease!important;
}
.datepicker .prev:hover, 
.datepicker .next:hover {
  color: #000!important;
}

/* Weekdays row */
.datepicker thead th {
  font-size: 0.8rem!important;
  font-weight: 500!important;
  text-transform: uppercase!important;
  color: #888!important;
  padding: 8px 4px!important;
}

/* Day cells */
.datepicker td, 
.datepicker th {
  width: 42px!important;
  height: 42px!important;
  text-align: center!important;
  vertical-align: middle!important;
  border-radius: 8px!important;
  transition: all 0.2s ease!important;
  font-size: 0.95rem!important;
}

/* Hover effect */
.datepicker td.day:hover {
  background: #f0f4f8!important;
  color: #000!important;
  cursor: pointer!important;
}

/* Today highlight */
.datepicker td.today {
  background: #e3f2fd !important;
  color: var(--primary-color) !important;
  border-radius: 8px!important;
  font-weight: bold!important;
}

/* Active (selected date) */
.datepicker td.active {
  background: var(--primary-color) !important;
  color: #fff !important;
  border-radius: 8px!important;
  font-weight: 600!important;
}

/* Disabled dates */
.datepicker td.disabled, 
.datepicker td.disabled:hover {
  background: none !important;
  color: #ccc !important;
  cursor: not-allowed!important;
}

/* Month/Year picker styles */
.datepicker-months td span, 
.datepicker-years td span, 
.datepicker-decades td span {
  display: inline-block!important;
  width: 60px!important;
  height: 40px!important;
  line-height: 40px!important;
  margin: 4px!important;
  border-radius: 8px!important;
  font-size: 0.9rem!important;
}
.datepicker-months td span:hover, 
.datepicker-years td span:hover, 
.datepicker-decades td span:hover {
  background: #f0f4f8!important;
  cursor: pointer!important;
}
.datepicker-months td span.active, 
.datepicker-years td span.active, 
.datepicker-decades td span.active {
  background: var(--primary-color)!important;
  color: #fff!important;
}

.wpcf7-submit {
  width: 100%!important;
  text-align: center!important;
  padding: 6px 15px!important;
  color: #fff!important;
  background-color: var(--primary-color)!important;
  max-width: 120px!important;
  display: block!important;
  text-decoration: none!important;
  transition: all 0.4s ease-in-out!important;
  height: 40px!important;
  border-radius: 20px!important;
}

.wpcf7-submit:hover {
  background-color: var(--secondary-color)!important;
  color: var(--dark-color)!important;
  transition: all 0.4s ease-in-out!important;
}

.wpcf7-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: 15px;
  overflow: hidden;
}
/* Inputs full width */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  font-size: 16px;
  background: transparent;
  outline: none;
  box-sizing: border-box;
}

/* Adjust placeholder color (lighter, like in your screenshot) */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #bbb;
}

/* Radio buttons inline and spaced */
.wpcf7-list-item {
  margin-right: 20px;
  display: inline-block;
}

/* Fix radio label alignment */
.wpcf7-list-item-label {
  margin-left: 6px;
  vertical-align: middle;
  font-size: 15px;
}

/* Compact textarea */
.wpcf7 textarea {
  resize: none;
  min-height: 80px;   /* much smaller than default */
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 12px;
  background: #f7f7f7;
  max-height: 120px;
}
.wpcf7-list-item {
  margin: 0!important;
}
.wpcf7-list-item br {
  display: none!important;
}
.wpcf7-list-item.first {
  margin: 0!important;
}
.contact-form-first-radio-selection .wpcf7-list-item {
  width: 100%!important;
}
.contact-form-second-radio-selection .wpcf7-list-item:not(:first-child) {
  margin-left: 20px!important; /* adjust as needed */
}
/* Remove default look */
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #E4E1E1; /* default border */
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 8px; /* spacing between circle and label */
  vertical-align: middle;
}

/* When checked */
input[type="radio"]:checked {
  border-color: #E4E1E1; /* keep same border */
  background-color: transparent; /* background stays white */
}

/* Dot inside when checked */
input[type="radio"]:checked::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000; /* black dot */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Submit button */
.btn-submit {
  background: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.btn-submit:hover {
  background: #3c8f87;
}


.home-our-distinctive-services-icon {
  width: auto;
  height: 100%;
  max-height: 40px;
}

@media (max-width:1366px) {
  .hero-slider-header {
    font-size: 3.5rem;
  }
  .about-join-us-content-container {
    padding: 0 9vw;
  }
  .contact-form-second-radio-selection .wpcf7-list-item:not(:first-child) {
    margin-left: 0px !important;
    width: 100%;
  }
}
@media (max-width:1024px) {
  .about-join-us-content-container {
    padding: 0 4vw;
  }
}
@media (max-width:991px) {
  .container, .container-md, .container-sm {
    max-width: 930px;
  }
}
@media (max-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
  .hero-slider-content-container {
    max-width: 100%;
  }
  .home-our-distinctive-services-col {
    width: 100%;
  }
  .col-md-3 {
    width: 50%;
  }
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-8 {
    width: 100%;
  }
  .footer-menu {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .container, .container-md, .container-sm {
    max-width: 430px;
  }
  .why-choose {
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-join-us-img-container {
    min-height: 280px;
  }
  .about-join-us-content-container {
    padding: 0 26px;
  }
  .form-check-label {
    width: calc(100% - 22px);
  }
  .form-step .hero-slider-link {
    max-width: 100px;
  }
  .about-contact-address-us-content-container {
    padding-left: 28px;
    padding-right: 28px;
  }
  .contact-address-us {
    padding-bottom: 0px!important;
  }
  .wpcf7-form {
    padding: 1rem;
  }
  .speciality-card {
    padding: 10px;
  }
  .speciality-card div {
    padding: 0px!important;
  }
}


.thank-you-modal {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 70%;
  position: relative;
  margin: 0 auto;
}

.thank-you-modal h2 {
  color: #3a8c88;
  font-size: 28px;
  margin-bottom: 10px;
}

.thank-you-modal p {
  color: #3a8c88;
  font-size: 18px;
  margin: 0;
}

.thank-you-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f2f2f2;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
}
.btn.disabled, 
.btn:disabled, 
fieldset:disabled .btn {
  background-color: #ccc;
}

/* Chrome, Safari, Edge, Opera */
/*
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
*/

/* Firefox */
/*
input[type=number] {
  -moz-appearance: textfield;
}*/
