:root {
  --primary-color: #25708c;
  --secondary-color: #E2DCB7;
  --text-color: #000000BF;
  --light-bg: #f7f7f7;
  --white: #ffffff;
  --gray: #edf2f7;
  --dark-gray: #000000BF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
div.wp-spacer{
    height: 0px!important;
}
body {
  background-color: var(--light-bg);
}
.hamburger{
    display: none;
}
.capsule-content .wp-block-list{
    margin: 0px!important;
}    
.remove-p-margin{
    margin-bottom: 0px!important;
}
.top-space-48{
 margin-top:48px!important;   
}
.content-block a{
    text-decoration: none;
    font-size: 1.25rem;
    font-family: 'Proxima Nova Lt';
    color: #000000BF;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
}

.divider {
  border: 1.5px solid #7e7e7e4d;
  border-style: solid;
  border-color: #7e7e7e4d;
  margin: 80px auto;
}

.divider-secondary {
  border: 1.5px solid #ffffff40;
  border-style: solid;
  border-color: #ffffff40;
  margin: 20px auto;
}
.current-menu-ancestor a , .is-active a{
    color:  #25708c!important;
    background-color:  #F7F7F7!important;
}
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.wp-block-buttons .wp-block-button__link , .wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link{
    border-radius: 0px!important;
    background-color: #E2DCB7!important;
    color: #000!important;
    font-family: 'Proxima Nova Lt';
}
.is-blueish{
    color: #2B7594!important;
}
/* Contain and center header content */
.header-top {
  max-width: 1360px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  gap: 30px;
}

/* Group logo + nav on the left */
.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color);
}

/* Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  width: 100%;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text-color);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav-dropdown a:hover {
  background-color: var(--gray);
  color: var(--primary-color);
}

/* Right side: search + buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-btn {
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn img {
  width: 18px;
  height: 18px;
}

/* Dropdown arrow styling (like accordion arrow) */
.nav-dropdown-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-color);
  border-bottom: 2px solid var(--text-color);
  transform: rotate(45deg);
  margin-left: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* On hover or active dropdown — rotate the arrow */
.nav-item:hover>.nav-link .nav-dropdown-arrow {
  transform: rotate(-135deg);
  border-color: var(--primary-color);
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  /* border-radius: 4px; */
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background-size: auto 100% !important;
  /* keep full height, auto width to avoid cutting */
  background-repeat: no-repeat !important;
  color: var(--white);
  padding: 60px 40px;
  text-align: left;
  margin: 48px 100px;
}

.hero-block {
  background-size: auto 100% !important;
  /* keep full height, auto width to avoid cutting */
  background-repeat: no-repeat !important;
  color: var(--white);
  padding: 60px 40px;
  text-align: left;
  margin: 50px auto;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-block h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.hero-content p{
    font-size: 1rem;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.hero-logos {
  display: flex;
  justify-content: start;
  margin-top: 40px;
  flex-wrap: wrap;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-item img {
  aspect-ratio: 1/4!important;
  object-fit: contain;
  width: 160px;
  height: 100px!important;
}

/* Info Tabs */
/* .info-tabs {
            padding: 20px 0;
        } */

.tabs-container {
  background-color: #ececec;
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px;
}

.tab-item {
  height: 100%;
  padding: 15px 15px;
  background-color: #ececec;
  text-align: center;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.tab-item a {
  text-decoration: inherit !important;
  color: inherit !important;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600 !important;
}

.tab-item a:hover {
  color: #d4c5a8;
  text-decoration: underline !important;
}

/* Services Section */
.services-section {
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 4px;
  color: var(--text-color);
}

.section-subtitle {
  font-size: 1.25rem;
  margin-bottom: 24px;
  margin-top: -20px;
  color: var(--text-color);
}

.services-content {
  display: flex;
  flex-direction: column;
}

.section-subtitle a,
.services-content a {
  color: #000 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.section-subtitle a:hover,
.services-content a:hover {
  color: #000 !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
}

.service-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background-color: #fff;
  padding: 30px;
  /* border-radius: 8px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-text {
  flex: 1;
}

.service-text h3 {
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 1.25rem !important;
  min-height: 48px;
}

.service-text p {
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-size: 16px !important;
}

/* Immigration Services Section */
.immigration-services-section {
  margin: 60px 0 20px 0;
}

.immigration-services-section .services-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 25px;
  align-items: stretch;
  /* makes all cards equal height */
}

/* Base Card with Flex Column Layout */
.immigration-services-section .service-card {
  background-color: var(--white);
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  height: 100%;
  /* Ensure full height */
}

/* Corporate Card (with image) */
.immigration-services-section .corporate {
  display: flex;
  flex-direction: row;
  padding: 0;
  align-items: stretch;
  height: 100%;
  /* Ensure full height */
}

.immigration-services-section .corporate .service-image {
  flex: 1;
  display: flex;
  overflow: hidden;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.immigration-services-section .corporate .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.immigration-services-section .corporate .service-text {
  flex: 1;
  padding: 30px 25px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* pushes Read More to bottom */
  height: 100%;
 font-size: 1rem;
  /* Ensure full height */
}

/* Regular Cards (Individuals, Refusals) */
.immigration-services-section .individuals,
.immigration-services-section .refusals {
  background-color: #ceb235;
  padding: 25px 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* ensures Read More at bottom */
  height: 100%;
  /* Ensure full height */
}

/* Text Content Area - Takes available space */
.immigration-services-section .service-text,
.immigration-services-section .individuals .service-text,
.immigration-services-section .refusals .service-text {
  flex: 1;
  /* Take remaining space */
  display: flex;
  flex-direction: column;
}

/* Read More Button - Always at bottom */
.immigration-services-section .read-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Proxima Nova Lt';
  color: #000000;
  text-decoration: none;
  margin-top: auto;
  /* push to bottom */
  padding-top: 15px;
  gap: 10px;
  position: relative;
}

/* Replace pseudo-element with SVG background */
.immigration-services-section .read-more::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Corporate card arrow: blue arrow */
.immigration-services-section .service-card.corporate .read-more::after {
  background-color: #25708c;
  background-image: url("/wp-content/themes/ethos-migration/assets/dist/images/blue-arrow.svg");
}

/* Individuals & Refusals arrow: black arrow */
.immigration-services-section .individuals .read-more::after,
.immigration-services-section .refusals .read-more::after {
  background-color: #000;
  background-image: url("/wp-content/themes/ethos-migration/assets/dist/images/black-arrow.svg");
}

/* Testimonials */
.ti-footer {
  margin-top: 45px !important;
}

.testimonials-section {
  background-color: #ececec;
  padding: 48px 20px;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.testimonials-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 0;
  scroll-behavior: smooth;
}

.testimonial-card {
  background-color: var(--white);
  padding: 25px;
  /* border-radius: 8px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-width: 300px;
  position: relative;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: #ffd700;
  font-size: 20px;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: rgba(0, 0, 0, 0.1);
  transform: rotate(180deg);
}

.testimonial-text {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
  background-color: #e53e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.author-date {
  font-size: 14px;
  color: var(--dark-gray);
}

.google-logo {
  width: 20px;
  height: 20px;
}

.rating-summary {
  text-align: center;
  margin-top: 30px;
  font-weight: 500;
}

.rating-stars {
  color: #ffd700;
  font-size: 20px;
  margin-right: 5px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.carousel-btn:hover {
  transform: scale(1.2);
}

/* Spacer */
.top-space-100 {
  margin-top: 100px !important;
}

.bottom-space-100 {
  margin-bottom: 100px !important;
}

.top-space-60 {
  margin-top: 60px !important;
}

.bottom-space-20 {
  margin-bottom: 20px !important;
}
.top-space-52{
    margin-top: 52px!important;
}

/* Call to Action */
.cta-section {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0px 24px;
  text-align: center;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  height: 100%;
  width: 100%;
}

.cta-text {
  flex: 1;
  max-width: 65%;
  text-align: start;
}
.cta-text h4{
    margin-bottom: 24px!important;
}
.cta-text p {
  margin-bottom: 0px;
  font-size: 1.25rem;
}
.capsule-content p{
    margin-bottom: 0px!important;
}
.cta-text a {
  text-decoration: none !important;
  font-weight: 600 !important;
  color: white !important;
}

.cta-text a:hover {
  text-decoration: underline !important;
}

.cta-text.full-width {
  width: 100%;
  /* text-align: center; */
  max-width: 100% !important;
}

.cta-button {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 10px 20px;
  text-decoration: none;
  font-family: 'Proxima Nova Lt';
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #d4c5a8;
  transform: translateY(-2px);
}

/* Updates Section */
/* Updates Section */
.updates-grid, .posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 30px;
  /*margin-top: 20px;*/
}

.update-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 16px;
  min-height: 400px;
}

.update-image {
  min-width: 100%;
  max-height: 300px;
  min-height: 300px;
  overflow: hidden;
  background: #e9f1f4;
}

.update-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top!important;
  /* keep image fully visible */
}

.update-date {
  display: flex;
  min-width: 100%;
  align-items: center;
  gap: 5px;
  padding: 10px 24px 10px 24px;
  color: #000000bf;
  font-size: 14px;
  background: #e9f1f4;
  margin-bottom: 24px;
}

.update-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.update-title {
  /*margin-bottom: 15px;*/
  color: var(--text-color);
}

.update-title a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  line-height: 1;
}

.update-title a:hover {
  text-decoration: underline;
}

.update-excerpt {
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-size: 16px !important;
}
.contact-button{
    color: white!important;
}
.update-readmore {
  display: inline-block;
  width: max-content;
  align-self: flex-start;
  background-color: var(--secondary-color);
  color: #000000;
  padding: 8px 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: auto;
  font-family: 'Proxima Nova Lt';
  font-weight: 600;
  font-size: 1rem;
}
.page-content h3{
    font-size:2rem;
    margin-bottom: 24px!important;
}
.page-content a{
    font-family: 'Proxima Nova Lt';
    font-size: 1.25rem !important;
    color: #000000BF;
}
.page-content a:hover{
    text-decoration: underline!important;
}
.update-readmore:hover {
  background-color: #d4c5a8;
}

/* Assistance Section */
.assistance-section {
  /*background-color: #fff;*/
  margin: 80px auto;
}

.assistance-bg {
  /*padding: 32px;*/
  /* border-radius: 4px; */
  /*background-color: #fff;*/
}

.assistance-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.assistance-card {
  flex: 1 1 calc(50% - 15px);
  display: flex;
  background-color: #fff;
  overflow: hidden;
  min-width: 300px;
  height: 250px;
  margin-bottom: 48px;
  border: 12px solid #25708C;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-right-width: 0px;
}

.is-style-line-left {
  border-left: 4px solid #25708C;
  padding-left: 0.75em;
  color: #25708C;
}

/* Left content inside card */
.assistance-card .card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.assistance-text p {
  font-size: 1rem;
  margin: auto 0 !important;
}

/* Keep icon on top-left */
/*.assistance-card .card-content>div:first-child {*/
/*  align-self: flex-start;*/
/*  margin-bottom: auto;*/
  /* pushes rest to bottom */
/*}*/

/* Right image */
.assistance-image {
  flex: 0 0 30%;
  height: auto;
  /* adjust height automatically */
}

.assistance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Icon styling */
/*.assistance-icon {*/
/*  width: 60px;*/
/*  height: 60px;*/
/*  background-color: var(--white);*/
  /* border-radius: 50%; */
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-size: 30px;*/
/*  color: var(--primary-color);*/
/*  flex-shrink: 0;*/
  /* prevent shrinking */
/*}*/
.card-content h3{
    font-size: 1.5rem!important;
}
/* Title and text */
.assistance-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  max-width: 600px;
  margin-bottom:24px;
}
.assistance-icon img{
    height: 48px;
    width: 48px;
    object-fit: contain;
    margin-bottom: 24px;
}
.assistance-text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  font-size: 1rem;
}

/* Button */
.assistance-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  /* border-radius: 5px; */
  text-decoration: none;
  width: fit-content;
  margin-top: 24px;
}

/* Right image */
.assistance-image {
  flex: 0 0 30%;
  height: 100%;
}

.assistance-image img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* For the assistance buttons */
.assistance-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Proxima Nova Lt';
}

.assistance-button:hover {
  background-color: #1a5a70;
  transform: translateY(-2px);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--text-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 30px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff80;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #ffffff80;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  font-size: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  /* padding-top: 20px; */
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Additional Styles for the specific layout */
.call-now-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  /* border-radius: 4px; */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-now-btn:hover {
  background-color: #1a5a70;
  transform: translateY(-2px);
}

.phone-icon {
  width: 22px;
  height: 22px;
}

.review-count {
  font-weight: bold;
}

.view-map {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  margin-left: 10px;
  font-size: 14px;
}

.view-map:hover {
  color: var(--white);
}

/* Custom Icons */
.icon-users {
  font-size: 30px;
}

.icon-checklist {
  font-size: 30px;
}

.icon-location {
  font-size: 20px;
}

.icon-phone {
  font-size: 20px;
}

.icon-email {
  font-size: 20px;
}

/* Placeholder styles for icons */
.fa {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1;
  font-family: FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.fa-search::before {
  content: "";
}

.fa-chevron-left::before {
  content: "";
}

.fa-chevron-right::before {
  content: "";
}

.fa-quote-right::before {
  content: "";
}

.fa-star::before {
  content: "";
}

.fa-calendar::before {
  content: "";
}

.fa-user::before {
  content: "";
}

.fa-phone::before {
  content: "";
}

.fa-envelope::before {
  content: "";
}

.fa-facebook::before {
  content: "";
}

.fa-linkedin::before {
  content: "";
}

.fa-youtube::before {
  content: "";
}

.fa-map-marker::before {
  content: "";
}

.fa-arrow-right::before {
  content: "";
}

/* Custom CSS for Google logo */
.google-logo {
  width: 20px;
  height: 20px;
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
  mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDMuMmMwLTEuOC0xLjUtMy4yLTMuMi0zLjJIMTNjMS44IDAgMy4yIDEuNCAzLjIgMy4ydjE3LjZjMCAxLjgtMS40IDMuMi0zLjIgMy4yaC0xYy0xLjcgMC0zLjItMS40LTMuMi0zLjJWMzJ6IiAvPjwvc3ZnPg==") no-repeat 50% 50%;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDMuMmMwLTEuOC0xLjUtMy4yLTMuMi0zLjJIMTNjMS44IDAgMy4yIDEuNCAzLjIgMy4ydjE3LjZjMCAxLjgtMS40IDMuMi0zLjIgMy4yaC0xYy0xLjcgMC0zLjItMS40LTMuMi0zLjJWMzJ6IiAvPjwvc3ZnPg==") no-repeat 50% 50%;
}

/* For the review stars */
.star-rating {
  display: flex;
  gap: 2px;
}

.star-rating .star {
  color: #ffd700;
  font-size: 16px;
}

/* For the service cards with different backgrounds */
.service-card.corporate {
  background-color: #f7fafc;
}

.service-card.individuals {
  background-color: #e2dcb7;
}

.service-card.refusals {
  background-color: #e2dcb7;
}

/* For the assistance section */
/* .assistance-card.employers {
            background-color: #f7fafc;
        }

        .assistance-card.individuals {
            background-color: #f7fafc;
        } */

/* For the footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--white);
}

.footer-logo-text span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}
/* For the call to action button in footer */
.footer-cta {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 10px 20px;
  /* border-radius: 4px; */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.footer-cta:hover {
  background-color: #d4c5a8;
  transform: translateY(-2px);
}

/* For the navigation dropdown arrows */
.nav-dropdown-arrow {
  margin-left: 5px;
  font-size: 12px;
}

/* For the service card arrows */
.service-arrow {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* For the testimonials quote icon */
.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: rgba(0, 0, 0, 0.1);
  transform: rotate(180deg);
}

/* For the rating summary */
.rating-summary {
  text-align: center;
  margin-top: 30px;
  font-weight: 500;
}

.rating-stars {
  color: #ffd700;
  font-size: 20px;
  margin-right: 5px;
}

.review-count {
  font-weight: bold;
}

/* For the contact information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  font-size: 20px;
}

/* For the social icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* For the legal disclaimer */
.legal-disclaimer {
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
  color: #00000099;
}

/* For the footer bottom links */
.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* For the service card titles */
.service-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-color);
}

/* For the service card descriptions */
.service-description {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* For the update card titles */
.update-title {
  /*margin-bottom: 15px;*/
  color: var(--text-color);
}

/* For the update card excerpts */
.update-excerpt {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* For the testimonial author names */
.author-name {
  font-weight: bold;
  margin-bottom: 5px;
}

/* For the testimonial author dates */
.author-date {
  font-size: 14px;
  color: var(--dark-gray);
}

/* For the testimonial text */
.testimonial-text {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* For the testimonial stars */
.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: #ffd700;
  font-size: 20px;
}

/* For the testimonial avatar */
.avatar {
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
  background-color: #e53e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

/* For the testimonial google logo */
.google-logo {
  width: 20px;
  height: 20px;
}

/* For the testimonial quote icon */
.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: rgba(0, 0, 0, 0.1);
  transform: rotate(180deg);
}

/* For the carousel controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.carousel-btn:hover {
  transform: scale(1.2);
}

/* For the call now button */
.call-now-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  /* border-radius: 4px; */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-now-btn:hover {
  background-color: #1a5a70;
  transform: translateY(-2px);
}

.phone-icon {
  font-size: 18px;
}

/* For the schedule consultation button */
.schedule-consultation {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 15px 30px;
  /* border-radius: 4px; */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.schedule-consultation:hover {
  background-color: #d4c5a8;
  transform: translateY(-2px);
}

/* For the footer contact info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  font-size: 20px;
}

/* For the footer social icons */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* For the footer legal disclaimer */
.footer-legal {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* For the footer bottom links */
.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 14px;
}

.footer-bottom-link:hover {
  color: var(--white);
}

/* For the footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--white);
}

.footer-logo-text span {
  display: block;
  font-size: 12px;
  font-weight: normal;
}

/* For the footer cta button */
.footer-cta {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 10px 20px;
  /* border-radius: 4px; */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.footer-cta:hover {
  background-color: #d4c5a8;
  transform: translateY(-2px);
}

/* For the service card arrows */
.service-arrow {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  color: white;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* For the service card titles */
.service-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-color);
}

/* For the service card descriptions */
.service-description {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* For the update card titles */
.update-title {
  /*margin-bottom: 15px;*/
  color: var(--text-color);
  min-height: 58px;
}

/* For the update card excerpts */
.update-excerpt {
  margin-bottom: 20px;
  color: var(--dark-gray);
  font-size: 1rem!important;
}

/* For the testimonial author names */
.author-name {
  font-weight: bold;
  margin-bottom: 5px;
}

/* For the testimonial author dates */
.author-date {
  font-size: 14px;
  color: var(--dark-gray);
}

/* For the testimonial text */
.testimonial-text {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* For the testimonial stars */
.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: #ffd700;
  font-size: 20px;
}

/* For the testimonial avatar */
.avatar {
  width: 50px;
  height: 50px;
  /* border-radius: 50%; */
  background-color: #e53e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

/* For the testimonial google logo */
.google-logo {
  width: 20px;
  height: 20px;
}

/* For the testimonial quote icon */
.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: rgba(0, 0, 0, 0.1);
  transform: rotate(180deg);
}

/* For the carousel controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.carousel-btn:hover {
  transform: scale(1.2);
}

/* For the call now button */
.call-now-btn {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  /* border-radius: 4px; */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.call-now-btn:hover {
  background-color: #1a5a70;
  transform: translateY(-2px);
}

.phone-icon {
  font-size: 18px;
}

/* For the schedule consultation button */
.schedule-consultation {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 15px 30px;
  /* border-radius: 4px; */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.schedule-consultation:hover {
  background-color: #1C5872;
  transform: translateY(-2px);
}
.schedule-consultation:hover a{
  text-decoration: none!important;
}
/* For the footer contact info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-icon {
  font-size: 20px;
}

/* For the footer social icons */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer-social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* For the footer legal disclaimer */
.footer-legal {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
}

/* For the footer bottom links */
.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  font-size: 14px;
}

.footer-bottom-link:hover {
  color: var(--white);
}

.count p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin: 30px 0;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

.breadcrumb a {
  color: var(--text);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #999;
  font-weight: bold;
  margin: 0 8px;
}

/* Content Cards +*/
.cards-grid {
  display: grid;
  gap: 32px;
  width: 100%;
}

/* Dynamically control columns based on card count */
.cards-grid.cards-count-1 {
  grid-template-columns: 1fr;
}

.cards-grid.cards-count-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid.cards-count-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-grid.cards-count-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Card base style */
.card-inset-image {
  position: relative;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* Typography */
.card-inset-image h3 {
    display: flex;
    align-items: center;
  margin-top: 0;
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 15px;
  min-height: max-content;
}

.card-inset-image p {
  margin: 0 0 15px 0;
  line-height: 1.6;
  color: #000000BF;
}

/* List styles */
.card-inset-image ul {
  padding-left: 20px;
  margin: 10px 0;
}

.card-inset-image li {
  margin-bottom: 8px;
}

/* Inset image */
.inset-image {
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  /* width: 100px; */
  pointer-events: none;
  opacity: 0.7;
}

/* Color Variants */
.cards-grid.variant-golden .card-inset-image {
  background-color: #E2DCB7;
}

.cards-grid.variant-grey .card-inset-image {
  background-color: #ECECEC;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(even){
    background-color: #fff!important;
}
.wp-block-table.is-style-stripes th{
    background-color: #E2DCB7;
}
.extra-height{
    min-height: 136px!important;
    max-height: 100%!important;
    padding: 32px 0px!important;
    display: flex;
    align-items: center;
}
:where(.wp-block-columns){
    margin-bottom: 0px!important;
}
.link-h4 a{
    font-size: 1.5rem!important;    
}