/*
Theme Name: finpracto
Author: finpracto
Description: We specialize in helping small businesses thrive by providing expert guidance in business planning and growth strategy.
Version: 1.0.0
*/
* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

body {
  font-family: var(--theme-font);
  overflow-x: hidden;
}

html, body {
  overflow-x: clip !important; /* This fixes both mobile overflow AND keeps sidebar sticky */
}

:root {
  --btn-color: #14426b;
  --btn-hover-color: #92cb73;
  --theme-color: #21303d;
  --heading-colo: #14426b;
  --theme-font: "DM Sans", sans-serif;
  --nav-font: "DM Sans", sans-serif;
  --heading-font: "DM Sans", sans-serif;
  --text-color: #000000;
}

/* Re-usable SCSS variables */
.theme-color {
  color: var(--theme-color);
}

.common-heading {
  font-size: 50px;
  line-height: 1.22em;
  font-weight: 700;
  color: #000;
  font-family: var(--heading-font);
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: #212121;
  line-height: 1.8;
  font-size: 16px;
}

.title-des {
  font-size: 16px;
  color: #ff6015;
}

.common-btn {
  background-color: var(--btn-color);
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  padding: 13px 18px;
  border-radius: 0px;
  transition: 0.3s;
}
.common-btn i {
  margin-left: 10px;
}
.common-btn:hover {
  background-color: var(--btn-hover-color);
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

ul li {
  list-style: none;
}

.common-space {
  padding: 4.5rem 0;
}

/* Header Styles */
header {
  width: 96%;
  border-radius: 10px;
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.93);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.52) 100%);
  transition: all 0.4s ease-in-out;
  /* Sticky Header Styles */
}
header .navbar.navbar-expand-lg {
  padding: 10px 29px;
  transition: padding 0.4s ease-in-out;
}
header .navbar-brand {
  max-width: 205px;
  transition: all 0.3s;
}
header nav .navbar-nav .nav-item {
  position: relative;
  /* --- Dropdown Styles --- */
  /* --- Desktop Hover Logic (> 992px) --- */
  /* --- Mobile Logic (< 992px) --- */
}
header nav .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  color: #000000;
  padding: 15px 20px;
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.3s;
  font-family: var(--nav-font);
  position: relative;
  text-transform: uppercase;
}
header nav .navbar-nav .nav-item .nav-link.active, header nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}
header nav .navbar-nav .nav-item .nav-link .nav-link {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1411764706);
}
header nav .navbar-nav .nav-item .dropdown-menu {
  display: none;
  padding: 0;
  border: none;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 260px;
}
header nav .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
}
header nav .navbar-nav .nav-item .dropdown-menu li a.dropdown-item {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 15px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #eee;
  white-space: normal;
  transition: 0.3s;
}
header nav .navbar-nav .nav-item .dropdown-menu li a.dropdown-item:hover {
  background: var(--theme-color);
  color: white;
  padding-left: 20px;
}
header nav .navbar-nav .nav-item .dropdown-menu li:last-child > a.dropdown-item {
  border-bottom: none;
}
@media (min-width: 992px) {
  header nav .navbar-nav .nav-item:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease;
  }
  header nav .navbar-nav .nav-item .dropdown-submenu {
    position: relative;
  }
  header nav .navbar-nav .nav-item .dropdown-submenu > .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transform: rotate(-90deg);
  }
  header nav .navbar-nav .nav-item .dropdown-submenu:hover > .dropdown-menu {
    display: block;
    top: 0;
    left: 100%;
    margin-top: -1px;
    max-height: 350px;
    overflow-y: scroll;
  }
}
@media (max-width: 991px) {
  header nav .navbar-nav .nav-item .dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: #f9f9f9;
    padding-left: 15px;
    width: 100%;
  }
  header nav .navbar-nav .nav-item .dropdown-menu li a.dropdown-item {
    font-size: 14px;
    padding: 10px;
  }
  header nav .navbar-nav .nav-item .dropdown-submenu > .dropdown-menu {
    padding-left: 15px;
    background-color: #f0f0f0;
  }
}
header nav ul#menu-header-menu .menu-item-has-children .dropdown-menu li .nav-link {
  padding: 8px 40px 8px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2588235294);
  text-transform: capitalize;
}
header nav ul#menu-header-menu .menu-item-has-children .dropdown-menu li .nav-link:hover {
  background: var(--btn-color);
  color: #fff;
}
header.sticky {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  border-radius: 0;
  top: 0;
}
header.sticky .navbar.navbar-expand-lg {
  padding: 10px 29px;
}
header.sticky .s-logo {
  display: block;
}
header.sticky .h-logo {
  display: none;
}
header.sticky nav .navbar-nav .nav-item .nav-link {
  color: #000000;
}
header.sticky nav .navbar-nav .nav-item .nav-link.active, header.sticky nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-color);
}
header.sticky nav ul#menu-header-menu .menu-item-has-children .dropdown-menu li .nav-link {
  padding: 8px 40px 8px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2588235294);
  text-transform: capitalize;
}
header .s-logo {
  display: none;
}
header .search-btn .common-btn i {
  margin-left: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-bannerss {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.home-bannerss .owl-carousel .item {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.home-bannerss .bnt-imgss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home-bannerss .bnt-imgss img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-bannerss .bnt-imgss::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(2deg, rgba(20, 66, 107, 0.8901960784) -5% 0%, rgba(19, 74, 71, 0) 95%);
  z-index: 1;
}
.home-bannerss .bnt-main-conts {
  position: absolute;
  z-index: 3;
  width: 100%;
  top: 55%;
  transform: translateY(-50%);
}
.home-bannerss .bnt-main-conts .banner-inner-boxx h2, .home-bannerss .bnt-main-conts .banner-inner-boxx h3 {
  font-size: 54px;
  font-weight: 700;
  max-width: 650px;
  font-family: var(--heading-font);
  line-height: 1.3;
  color: #fff;
}
.home-bannerss .bnt-main-conts .banner-inner-boxx h3 {
  max-width: 100%;
  font-size: 31px;
}
.home-bannerss .bnt-main-conts .banner-inner-boxx p {
  display: none;
}
.home-bannerss .banner-cta-group {
  margin-top: 30px;
}
.home-bannerss .banner-cta-group .common-btn {
  background-color: var(--btn-color);
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  padding: 18px 35px;
  border-radius: 0px;
}
.home-bannerss .banner-cta-group .common-btn:hover {
  background-color: var(--btn-hover-color);
  color: #ffffff;
}
.home-bannerss .banner-stats-boxes {
  display: flex;
  gap: 0px;
  margin-top: 20px;
  justify-content: flex-end;
  /* margin-top: auto; */
  /* margin-bottom: auto; */
  height: 100%;
}
.home-bannerss .banner-stats-boxes img {
  width: 100%;
  height: auto;
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 50%;
  margin-top: auto;
  margin-bottom: auto;
}
.home-bannerss .banner-stats-boxes .stat-box {
  padding: 20px;
  border-radius: 0px;
  width: 180px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #fff;
  text-align: left;
}
.home-bannerss .banner-stats-boxes .stat-box h3 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  font-family: var(--theme-font);
}
.home-bannerss .banner-stats-boxes .stat-box .sub-text {
  font-size: 14px;
  color: inherit;
  opacity: 0.9;
  margin-bottom: 25px;
}
.home-bannerss .banner-stats-boxes .stat-box .main-text {
  font-size: 16px;
  color: inherit;
  font-weight: 500;
  line-height: 1.4;
}
.home-bannerss .banner-stats-boxes .stat-box.stat-box-highlight {
  background-color: var(--btn-color);
  color: #ffffff;
}
@media (max-width: 992px) {
  .home-bannerss .bnt-main-conts .banner-inner-boxx h2 {
    font-size: 45px;
    max-width: 100%;
  }
  .home-bannerss .banner-stats-boxes {
    margin-top: 40px;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .home-bannerss .owl-carousel .item {
    justify-content: center;
  }
  .home-bannerss .bnt-main-conts {
    padding: 0 15px;
  }
  .home-bannerss .bnt-main-conts .banner-inner-boxx {
    text-align: center;
  }
  .home-bannerss .bnt-main-conts .banner-inner-boxx h2 {
    font-size: 36px;
  }
  .home-bannerss .banner-cta-group {
    justify-content: center;
  }
  .home-bannerss .banner-stats-boxes {
    justify-content: center;
    gap: 15px;
  }
  .home-bannerss .banner-stats-boxes .stat-box {
    width: 150px;
    padding: 15px;
  }
  .home-bannerss .banner-stats-boxes .stat-box h3 {
    font-size: 38px;
  }
}

.common-btn {
  background-color: var(--btn-color);
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  padding: 13px 18px;
  border-radius: 0px;
  transition: 0.3s;
}
.common-btn i {
  margin-left: 10px;
}
.common-btn:hover {
  background-color: var(--btn-hover-color);
  color: #ffffff;
}

.vision-section {
  background-color: #ffffff;
}
.vision-section .section-title {
  margin-bottom: 4rem;
}
.vision-section .section-title .sub-title {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.vision-section .vision-card {
  border: 1px solid #e9e9e9;
  padding: 40px 30px;
  border-radius: 0px;
  height: 100%;
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.vision-section .vision-card .card-icon {
  margin-bottom: 25px;
}
.vision-section .vision-card .card-icon img {
  max-width: 60px;
  height: auto;
}
.vision-section .vision-card .card-title {
  font-family: var(--theme-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 15px;
}
.vision-section .vision-card p {
  color: var(--text-color);
  line-height: 1.7;
}
.vision-section .vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

@media (max-width: 991px) {
  .vision-section .vision-card {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .vision-section .section-title .common-heading {
    font-size: 38px;
  }
}
.services-section {
  background-color: #f8f9f7;
}
.services-section .section-title .sub-title {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f0f0f0;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.services-section .section-title .common-heading {
  color: var(--theme-color);
}
.services-section .section-description {
  color: var(--text-color);
  line-height: 1.8;
  max-width: 480px;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card .card-image {
  height: 250px;
  overflow: hidden;
}
.service-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card .card-content {
  padding: 25px;
  background-color: #f8f9f7;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card .card-content h3 {
  font-family: var(--theme-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 20px;
}
.service-card .card-content .learn-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s ease;
}
.service-card .card-content .learn-more i {
  transition: transform 0.3s ease;
}
.service-card .card-content .learn-more:hover {
  color: var(--btn-color);
}
.service-card .card-content .learn-more:hover i {
  transform: translateX(5px);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.service-card:hover .card-image img {
  transform: scale(1.05);
}

/*-- Responsive Styles for Services Section --*/
@media (max-width: 991px) {
  .services-section .section-title,
  .services-section .section-description {
    text-align: center;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .service-card {
    margin-bottom: 30px;
  }
}
/*-- Business Impact Section --*/
.business-impact-section {
  padding: 6rem 0;
  background-color: var(--btn-color);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  margin-top: -20px;
}
.business-impact-section .impact-title {
  color: #ffffff;
}
.business-impact-section .impact-title .icon {
  margin-bottom: 10px;
}
.business-impact-section .impact-title .icon img {
  max-width: 60px;
}
.business-impact-section .impact-title h3 {
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: 400;
}
.business-impact-section .impact-stat {
  color: #ffffff;
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.business-impact-section .impact-stat h2 {
  font-family: var(--theme-font);
  font-size: 60px;
  font-weight: 600;
  color: #c4f39b;
  margin-bottom: 15px;
}
.business-impact-section .impact-stat p {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 220px;
}
.business-impact-section .impact-graph {
  margin-top: 4rem;
  text-align: center;
}
.business-impact-section .impact-graph img {
  max-width: 100%;
  height: auto;
}

/*-- Responsive Styles for Business Impact Section --*/
@media (max-width: 991px) {
  .business-impact-section .impact-title {
    margin-bottom: 40px;
    text-align: center;
  }
  .business-impact-section .impact-stat {
    border-left: none;
    text-align: center;
    margin-bottom: 40px;
  }
  .business-impact-section .impact-stat p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .business-impact-section .impact-stat h2 {
    font-size: 50px;
  }
}
.testimonials-section {
  overflow-x: hidden;
  width: 100%;
}
.testimonials-section .section-title .common-heading {
  color: var(--theme-color);
}
.testimonials-section .testimonial-header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.testimonials-section .google-reviews {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f8f9f7;
  padding: 10px 15px;
  border-radius: 8px;
}
.testimonials-section .google-reviews img {
  max-width: 30px;
}
.testimonials-section .google-reviews .review-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.testimonials-section .google-reviews .review-text strong {
  font-size: 18px;
  color: var(--theme-color);
}
.testimonials-section .google-reviews .review-text span {
  font-size: 14px;
  color: var(--text-color);
}
.testimonials-section .testimonial-card {
  background-color: #f8f9f7;
  padding: 40px 35px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials-section .testimonial-card .quote-icon {
  font-family: var(--heading-font);
  font-size: 70px;
  color: var(--theme-color);
  line-height: 0.5;
}
.testimonials-section .testimonial-card p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 0px;
  flex-grow: 1;
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}
.testimonials-section .testimonial-card .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-section .testimonial-card .testimonial-author .author-info {
  display: flex;
  flex-direction: column;
}
.testimonials-section .testimonial-card .testimonial-author .author-info strong {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 18px;
}
.testimonials-section .testimonial-card .testimonial-author .author-info span {
  background-color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: var(--text-color);
  margin-top: 5px;
  display: inline-block;
}
.testimonials-section .owl-theme .owl-dots {
  margin-top: 40px !important;
}
.testimonials-section .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #d8d8d8;
  transition: all 0.3s ease;
}
.testimonials-section .owl-theme .owl-dots .owl-dot.active span, .testimonials-section .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--theme-color);
  width: 25px;
}
.testimonials-section .trust-bar {
  text-align: center;
  margin-top: 3rem;
}
.testimonials-section .trust-bar hr {
  border-color: #e0e0e0;
  margin-bottom: 25px;
}
.testimonials-section .trust-bar span {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 14px;
}

/*-- Responsive Styles for Testimonials Section --*/
@media (max-width: 991px) {
  .testimonials-section .testimonial-header-right {
    margin-top: 25px;
    justify-content: center;
  }
  .testimonials-section .section-title {
    text-align: center;
  }
}
.leaders-section {
  background-color: #f8f9f7;
}
.leaders-section .section-title {
  margin-bottom: 1.5rem;
}
.leaders-section .section-title .sub-title {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f0f0f0;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.leaders-section .section-title .common-heading {
  color: var(--theme-color);
}
.leaders-section .section-description {
  color: var(--text-color);
  line-height: 1.8;
  max-width: 450px;
  margin-bottom: 2.5rem;
}
.leaders-section .leader-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.leaders-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

.leader-card {
  text-align: center;
}
.leader-card .leader-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 300;
  background: white;
  PADDING: 10px;
}
.leader-card .leader-image img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-left: auto;
    margin-right: auto;
}
.leader-card .leader-info h3 {
  font-family: var(--heading-font);
  font-size: 22px;
  color: var(--theme-color);
  margin-bottom: 5px;
}
.leader-card .leader-info span {
  color: var(--text-color);
  font-size: 15px;
}

.btn-outline {
  background-color: transparent;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.btn-outline:hover {
  background-color: var(--btn-color);
  color: #ffffff;
  border-color: var(--btn-color);
}

/*-- Responsive Styles for Leaders Section --*/
@media (max-width: 991px) {
  .leaders-section {
    text-align: center;
  }
  .leaders-section .section-description {
    margin-left: auto;
    margin-right: auto;
  }
  .leaders-section .leader-cta-group {
    justify-content: center;
  }
  .leaders-section .leaders-images {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .leaders-images {
    flex-direction: column;
    align-items: center;
  }
  .leader-card {
    max-width: 300px;
  }
}
/*-- Client Logos Section (Carousel Version) --*/
.client-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}

.client-logo-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.client-logo-carousel .client-logo {
  max-height: 90px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.client-logo-carousel .client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.client-logo-carousel .owl-dots {
  margin-top: 30px !important;
}
.client-logo-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #d8d8d8;
  transition: all 0.3s ease;
}
.client-logo-carousel .owl-dots .owl-dot.active span, .client-logo-carousel .owl-dots .owl-dot:hover span {
  background: var(--theme-color);
}

/*-- Blog Section --*/
.blog-section {
  background-color: #f8f9f7;
}
.blog-section .section-title {
  margin-bottom: 4rem;
}
.blog-section .section-title .sub-title {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f0f0f0;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.blog-section .section-title .common-heading {
  color: var(--theme-color);
}

.blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card .card-image {
  /*height: 220px;*/
  overflow: hidden;
}
.blog-card .card-image img {
  width: 100%;
  height: 100%;
  /*-o-object-fit: cover;*/
     /*object-fit: cover;*/
  transition: transform 0.4s ease;
}
.blog-card .card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card .card-content .card-meta {
  margin-bottom: 15px;
}
.blog-card .card-content .card-meta .category {
  background-color: #e9f5ff;
  color: var(--btn-color);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.blog-card .card-content h3 {
  font-family: var(--heading-font);
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 15px;
  flex-grow: 1;
}
.blog-card .card-content h3 a {
  color: var(--theme-color);
  transition: color 0.3s ease;
}
.blog-card .card-content h3 a:hover {
  color: var(--btn-color);
}
.blog-card .card-content p {
  color: var(--text-color);
  margin-bottom: 20px;
}
.blog-card .card-content .read-more {
  color: var(--btn-color);
  font-weight: 600;
}
.blog-card .card-content .read-more i {
  transition: transform 0.3s ease;
}
.blog-card .card-content .read-more:hover i {
  transform: translateX(5px);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
/*.blog-card:hover .card-image img {*/
/*  transform: scale(1.05);*/
/*}*/

/*-- Responsive Styles for Blog Section --*/
@media (max-width: 991px) {
  .blog-card {
    margin-bottom: 30px;
  }
}
/*-- CTA Section --*/
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(189deg, rgba(33, 48, 61, 0.9490196078), rgba(33, 48, 61, 0.831372549), #21303d), url(img/cta-bg.jpg);
}
.cta-section .section-title .sub-title {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f0f0f0;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.cta-section .section-title .common-heading {
  color: white;
}
.cta-section .section-title p {
  color: white;
  max-width: 600px;
  margin: 20px auto 30px;
}

/*-- Footer --*/
.site-footer {
  background-color: var(--theme-color);
  color: #a9b3bb;
  padding: 5rem 0 0;
}
.site-footer .footer-widget {
  margin-bottom: 40px;
}
.site-footer .footer-logo {
  display: block;
  margin-bottom: 20px;
}
.site-footer .footer-logo img {
  max-width: 50px;
}
.site-footer .widget-title {
  font-family: var(--heading-font);
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 25px;
}
.site-footer p {
  color: #a9b3bb;
  line-height: 1.8;
}
.site-footer .footer-links {
  padding: 0;
  list-style: none;
}
.site-footer .footer-links li {
  margin-bottom: 12px;
}
.site-footer .footer-links li a {
  color: #a9b3bb;
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
}
.site-footer .footer-links li a:hover {
  color: #ffffff;
  padding-left: 5px;
}
.site-footer .contact-info {
  padding: 0;
  list-style: none;
}
.site-footer .contact-info li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
.site-footer .contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #c4f39b;
}
.site-footer .social-icons {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}
.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.site-footer .social-icons a:hover {
  background-color: var(--btn-color);
  transform: translateY(-3px);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 2rem;
}
.site-footer .footer-bottom p {
  margin: 0;
  font-size: 14px;
}

/*-- Responsive Footer Styles --*/
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }
  .site-footer .social-icons {
    justify-content: center;
  }
  .site-footer .contact-info li {
    padding-left: 0;
    text-align: center;
  }
  .site-footer .contact-info li i {
    display: none;
  }
}
/*-- Floating Action Buttons --*/
.floating-action-buttons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fab-whatsapp, .fab-call {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.fab-whatsapp:hover, .fab-call:hover {
  transform: translateY(-5px);
}

.fab-whatsapp {
  background-color: #25D366;
}

.fab-call {
  background-color: var(--btn-color);
}

/*-- Radiating Animation --*/
.fab-whatsapp::before, .fab-call::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: inherit;
  z-index: -1;
  animation: radiate 2.2s ease-out infinite;
}

@keyframes radiate {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.6);
    opacity: 0.2;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/*-- Responsive Adjustments for Floating Buttons --*/
@media (max-width: 768px) {
  .floating-action-buttons {
    bottom: 20px;
    left: 20px;
  }
  .fab-whatsapp, .fab-call {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}
/*-- Scroll to Top Button --*/
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--btn-color);
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollToTopBtn:hover {
  background-color: var(--btn-hover-color);
}

/*-- Responsive Adjustments for Scroll to Top Button --*/
@media (max-width: 768px) {
  #scrollToTopBtn {
    bottom: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
/*-- Feature Strip Section --*/
.feature-strip {
  padding: 2rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #bababa;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.feature-item img {
  max-height: 35px;
  width: auto;
}
.feature-item span {
  color: #333;
  font-weight: 600;
  font-size: 18px;
}

/*-- Responsive Styles for Feature Strip --*/
@media (max-width: 991px) {
  .feature-item {
    justify-content: center;
    margin-bottom: 30px;
  }
  .feature-strip .row .col-md-6:last-child .feature-item,
  .feature-strip .row .col-md-6:nth-last-child(2) .feature-item {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .feature-strip .row .col-md-6:nth-last-child(2) .feature-item {
    margin-bottom: 30px;
  }
}
/*-- About Us Section (Replaces Vision Section) --*/
.about-us-section .about-images {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  justify-content: center;
}
.about-us-section .about-image-1, .about-us-section .about-image-2 {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.about-us-section .about-image-1 {
  width: 30%;
  margin-right: 0;
  z-index: 1;
}
.about-us-section .about-image-2 {
  width: 60%;
  margin-left: 15px;
}
.about-us-section .customer-badge {
  position: absolute;
  bottom: 20%;
  left: 10%;
  z-index: 2;
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-us-section .customer-badge .avatars {
  display: flex;
}
.about-us-section .customer-badge .avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}
.about-us-section .customer-badge .avatars img:first-child {
  margin-left: 0;
}
.about-us-section .customer-badge .avatars .plus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: #fff;
  border: 2px solid #fff;
  margin-left: -10px;
  font-weight: bold;
}
.about-us-section .customer-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color);
}
.about-us-section .about-content .section-title .sub-title {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f0f0f0;
  border-radius: 5px;
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.about-us-section .about-content .section-title .common-heading {
  color: var(--theme-color);
}
.about-us-section .about-content .section-description {
  color: var(--text-color);
  line-height: 1.8;
  max-width: 480px;
  margin-top: 1rem;
}
.about-us-section .about-content hr {
  margin: 2rem 0;
  border-color: #e0e0e0;
}
.about-us-section .experience-counter {
  text-align: center;
}
.about-us-section .experience-counter h2 {
  font-family: var(--theme-font);
  font-size: 80px;
  font-weight: 700;
  color: #f5b025;
  line-height: 1;
}
.about-us-section .experience-counter p {
  color: var(--text-color);
  font-weight: 500;
  margin-top: 10px;
}
.about-us-section .about-cta {
  padding-left: 25px;
  border-left: 1px solid #e0e0e0;
}
.about-us-section .about-cta p {
  color: var(--text-color);
  margin-bottom: 20px;
}

/*-- Responsive Styles for About Us Section --*/
@media (max-width: 991px) {
  .about-us-section .about-images {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .about-us-section .about-cta {
    border-left: none;
    padding-left: 0;
    margin-top: 30px;
  }
  .about-us-section .experience-counter h2 {
    font-size: 60px;
  }
}
/*-- Services Marquee Section (Corrected) --*/
.services-marquee-section {
  padding: 2rem 0;
  background-color: var(--heading-colo);
  overflow: hidden;
  color: white;
}

.marquee-wrapper {
  width: 100%;
}

.marquee-content {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: marquee-scroll-text 30s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-shrink: 0;
  min-width: 100vw;
}
.marquee-group span {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 20px;
}
.marquee-group .separator {
  color: #ffffff;
  font-size: 24px;
}

@keyframes marquee-scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*-- Responsive Styles for Services Marquee --*/
@media (max-width: 768px) {
  .marquee-group span {
    font-size: 16px;
    padding: 0 15px;
  }
  .marquee-content {
    animation-duration: 25s;
  }
}
.inner-banner {
  position: relative;
  padding: 200px 0 100px 0;
  color: #ffffff;
  overflow: hidden;
}
.inner-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
}
.inner-banner .banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 19, 33, 0.548);
}
.inner-banner .banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-banner .container {
  position: relative;
  z-index: 1;
}
.inner-banner .breadcrumb-nav {
  font-size: 16px;
  margin-bottom: 10px;
}
.inner-banner .breadcrumb-nav a {
  color: #92cb73;
}
.inner-banner .breadcrumb-nav a:hover {
  text-decoration: underline;
}
.inner-banner .breadcrumb-nav span {
  color: #e0e0e0;
}
.inner-banner h1 {
  font-family: var(--heading-font);
  font-size: 50px;
  font-weight: bold;
}
.inner-banner .banner-description {
  font-size: 18px;
  line-height: 1.7;
  max-width: 480px;
  border-left: 3px solid #92cb73;
  padding-left: 25px;
  color: #fff;
}

/* =========================================
   MODERN ABOUT US DESIGN (Exact Content)
   ========================================= */
/* --- 1. Intro Section --- */
.about-modern-intro {
  position: relative;
  /* Image Layout */
  /* Pillars Grid */
}
.about-modern-intro .common-heading {
  font-size: 38px;
}
.about-modern-intro .sub-heading-modern {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--btn-hover-color);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.about-modern-intro .lead-text {
  font-size: 20px;
  color: var(--btn-color);
  font-family: var(--heading-font);
  line-height: 1.5;
  margin-bottom: 20px;
  border-left: 3px solid var(--btn-hover-color);
  padding-left: 20px;
}
.about-modern-intro .body-text {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.8;
}
.about-modern-intro .modern-img-wrapper {
  position: relative;
  padding-bottom: 40px;
  padding-right: 40px;
}
.about-modern-intro .modern-img-wrapper .main-img {
  width: 100%;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.about-modern-intro .modern-img-wrapper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  right: 0;
  bottom: 0;
  background-color: #f4f4f4;
  z-index: 1;
  border: 1px solid var(--btn-color);
}
.about-modern-intro .modern-img-wrapper .floating-exp-box {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--btn-color);
  color: #fff;
  padding: 25px 30px;
  z-index: 3;
  box-shadow: 10px 10px 0px var(--btn-hover-color);
}
.about-modern-intro .modern-img-wrapper .floating-exp-box .big-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 28px;
  line-height: 1;
}
.about-modern-intro .modern-img-wrapper .floating-exp-box .small-text {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.8;
}
.about-modern-intro .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.about-modern-intro .pillars-grid .pillar-card {
  text-align: center;
  padding: 20px 10px;
  border: 1px solid #eee;
  background: #fff;
  transition: 0.3s;
  height: 100%; /* Ensure equal height */
}
.about-modern-intro .pillars-grid .pillar-card .icon {
  font-size: 24px;
  color: var(--btn-hover-color);
  margin-bottom: 10px;
}
.about-modern-intro .pillars-grid .pillar-card h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-color);
  margin: 0;
  line-height: 1.4;
}
.about-modern-intro .pillars-grid .pillar-card:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
.about-modern-intro .pillars-grid .pillar-card:hover .icon {
  color: #fff;
}
.about-modern-intro .pillars-grid .pillar-card:hover h5 {
  color: #fff;
}

/* --- 2. Vision & Mission (Dark Contrast) --- */
.modern-vm-section {
  background-color: var(--theme-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.modern-vm-section .vm-heading {
  font-family: var(--heading-font);
  font-size: 45px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.modern-vm-section .vm-heading .accent-text {
  color: var(--btn-hover-color);
  font-style: italic;
}
.modern-vm-section .vm-desc {
  color: #aab6bf;
  font-size: 18px;
  margin-bottom: 20px;
}
.modern-vm-section .vm-values {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.modern-vm-section .vm-values span {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--btn-hover-color);
  padding-bottom: 5px;
}
.modern-vm-section .vm-cards-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .modern-vm-section .vm-cards-wrapper {
    margin-top: 20px;
    padding-left: 30px;
  }
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card {
  background: #fff;
  padding: 50px 40px;
  width: 100%;
  position: relative;
  transition: 0.3s;
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--btn-hover-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card .card-icon {
  font-size: 32px;
  color: var(--btn-color);
  margin-bottom: 25px;
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card h3 {
  font-family: var(--heading-font);
  font-size: 28px;
  color: var(--theme-color);
  margin-bottom: 20px;
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card .mission-modern-list {
  list-style: none;
  padding: 0;
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card .mission-modern-list li {
  font-size: 16px;
  color: var(--theme-color);
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card .mission-modern-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--btn-hover-color);
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card:hover {
  transform: translateY(-10px);
}
.modern-vm-section .vm-cards-wrapper .vm-modern-card:hover::after {
  transform: scaleX(1);
}

/* --- 3. Trust & Services Grid --- */
.modern-trust-section {
  /* Tag Cloud */
  /* Trust Grid (Borders only, no gap) */
}
.modern-trust-section .sub-heading-modern {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--btn-hover-color);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.modern-trust-section .service-summary-text {
  margin: 0 auto;
  font-size: 16px;
  color: var(--text-color);
}
.modern-trust-section .service-tags-container {
  display: grid;
  grid-template-columns: repeat(4, 5fr);
  justify-content: center;
  gap: 12px;
}
.modern-trust-section .service-tags-container .s-tag {
  background: #fff;
  border: 1px solid #ddd;
  padding: 12px 25px;
  font-size: 15px;
  color: var(--theme-color);
  transition: 0.3s;
  font-weight: 500;
}
.modern-trust-section .service-tags-container .s-tag:hover {
  background: var(--btn-color);
  color: #fff;
  border-color: var(--btn-color);
}
.modern-trust-section .trust-modern-grid {
  border: 1px solid #eee;
}
.modern-trust-section .trust-modern-grid .trust-box {
  padding: 40px;
  text-align: center;
  height: 100%;
  background: #fff;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modern-trust-section .trust-modern-grid .trust-box i {
  font-size: 30px;
  color: var(--btn-color);
  margin-bottom: 20px;
  transition: 0.3s;
}
.modern-trust-section .trust-modern-grid .trust-box p {
  font-family: var(--heading-font);
  font-size: 18px;
  color: var(--theme-color);
  margin: 0;
  line-height: 1.4;
}
.modern-trust-section .trust-modern-grid .trust-box:hover {
  background: #fafafa;
}
.modern-trust-section .trust-modern-grid .trust-box:hover i {
  color: var(--btn-hover-color);
  transform: scale(1.1);
}
.modern-trust-section .trust-modern-grid .border-right {
  border-right: 1px solid #eee;
}
.modern-trust-section .trust-modern-grid .border-bottom {
  border-bottom: 1px solid #eee;
}

/* --- 4. Leadership & Promise Section --- */
.modern-promise-section {
  background: var(--btn-color);
  background-image: linear-gradient(135deg, var(--btn-color) 0%, #1a2c3a 100%);
  position: relative;
}
.modern-promise-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-top: 4px solid var(--btn-hover-color);
  border-left: 4px solid var(--btn-hover-color);
}
.modern-promise-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid var(--btn-hover-color);
  border-right: 4px solid var(--btn-hover-color);
}
.modern-promise-section .promise-banner {
  color: #fff;
}
.modern-promise-section .promise-banner .label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  color: var(--btn-hover-color);
  margin-bottom: 20px;
  display: block;
}
.modern-promise-section .promise-banner .leadership-intro {
  font-size: 18px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #fff;
}
.modern-promise-section .promise-banner .expertise-pills {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 10px;
}
.modern-promise-section .promise-banner .expertise-pills span {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.modern-promise-section .promise-banner .divider-light {
  opacity: 0.2;
  margin: 40px auto;
  width: 100%;
}
.modern-promise-section .promise-banner .heading {
  font-family: var(--heading-font);
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
}
.modern-promise-section .promise-banner .promise-text {
  color: #e0e0e0;
  font-size: 20px;
  font-style: italic;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-modern-intro .pillars-grid {
    grid-template-columns: 1fr;
  }
  .about-modern-intro .modern-img-wrapper {
    padding-right: 0;
  }
  .about-modern-intro .modern-img-wrapper .floating-exp-box {
    left: 0;
    bottom: -20px;
  }
  .modern-trust-section .trust-modern-grid .border-right {
    border-right: none;
  }
  .modern-trust-section .trust-modern-grid .trust-box {
    border-bottom: 1px solid #eee;
  }
}
/* =========================================
   CONTACT PAGE STYLES (Split Map Design)
   ========================================= */
.global-offices-section {
  background-color: #f8f9f7;
  /* General Info Centered */
  /* Office Card */
}
.global-offices-section .general-contact-box .sub-title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--btn-hover-color);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.global-offices-section .office-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  /* Map Box */
  /* Hover Effect */
}
.global-offices-section .office-card .office-details {
  padding: 35px;
  flex-grow: 1;
}
.global-offices-section .office-card .office-details .flag-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--btn-hover-color);
}
.global-offices-section .office-card .office-details .flag-header .flag-icon {
  width: 35px;
  height: auto;
}
.global-offices-section .office-card .office-details .flag-header h3 {
  font-family: var(--heading-font);
  font-size: 26px;
  color: var(--theme-color);
  margin: 0;
}
.global-offices-section .office-card .office-details .contact-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.global-offices-section .office-card .office-details .contact-row:last-child {
  margin-bottom: 0;
}
.global-offices-section .office-card .office-details .contact-row .icon {
  width: 45px;
  height: 45px;
  background: rgba(20, 66, 107, 0.05);
  color: var(--btn-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.global-offices-section .office-card .office-details .contact-row .info strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.global-offices-section .office-card .office-details .contact-row .info p {
  font-size: 16px;
  color: var(--theme-color);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}
.global-offices-section .office-card .office-details .contact-row .info p a {
  color: var(--theme-color);
  transition: 0.3s;
}
.global-offices-section .office-card .office-details .contact-row .info p a:hover {
  color: var(--btn-hover-color);
}
.global-offices-section .office-card .office-details .contact-row .info p .sep {
  color: #ccc;
  margin: 0 5px;
}
.global-offices-section .office-card .office-map {
  height: 300px;
  width: 100%;
  border-top: 1px solid #e0e0e0;
}
.global-offices-section .office-card .office-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.global-offices-section .office-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: var(--btn-color);
}
.global-offices-section .office-card:hover .icon {
  background: var(--btn-color);
  color: #fff;
}
.global-offices-section .office-card:hover .office-map iframe {
  filter: grayscale(0%);
}

/* --- Contact Form Section (Re-used styles) --- */
.contact-form-section {
  padding: 6rem 0;
  background-color: #fff;
}
.contact-form-section .section-title {
  margin-bottom: 1.5rem;
}
.contact-form-section .section-title .sub-title {
  display: inline-block;
  padding: 8px 20px;
  background-color: #f0f0f0;
  border-radius: 0;
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 1rem;
}
.contact-form-section .contact-highlight {
  background-color: var(--theme-color);
  padding: 30px;
  border-radius: 0;
  color: #fff;
  border-left: 5px solid var(--btn-hover-color);
}
.contact-form-section .contact-highlight h4 {
  font-family: var(--heading-font);
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}
.contact-form-section .contact-highlight ul {
  padding: 0;
  list-style: none;
}
.contact-form-section .contact-highlight ul li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.9;
}
.contact-form-section .contact-highlight ul li span {
  font-weight: 600;
  color: var(--btn-hover-color);
}
.contact-form-section .main-form {
  padding: 40px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}
.contact-form-section .main-form .form-control {
  height: 55px;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background-color: #f9f9f9;
  color: var(--theme-color);
}
.contact-form-section .main-form .form-control:focus {
  border-color: var(--btn-hover-color);
  background-color: #fff;
  box-shadow: none;
}
.contact-form-section .main-form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

/* --- Services Grid Section --- */
.service-listing-section {
  background-color: #f8f9f7;
}
.service-listing-section .service-box-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #eeeeee;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.service-listing-section .service-box-item .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background-color: rgba(245, 176, 37, 0.1);
  border-radius: 50%;
  font-size: 28px;
  color: #f5b025;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.service-listing-section .service-box-item h3 {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 15px;
}
.service-listing-section .service-box-item p {
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.6;
}
.service-listing-section .service-box-item .read-more-btn {
  color: var(--theme-color);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.service-listing-section .service-box-item .read-more-btn i {
  transition: margin-left 0.3s;
}
.service-listing-section .service-box-item .read-more-btn:hover {
  color: #f5b025;
}
.service-listing-section .service-box-item .read-more-btn:hover i {
  margin-left: 5px;
}
.service-listing-section .service-box-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.service-listing-section .service-box-item:hover .icon {
  background-color: var(--theme-color);
  color: #ffffff;
}

/* --- Why Choose Us Section --- */
.why-choose-section {
  padding: 6rem 0;
  background-color: #ffffff;
}
.why-choose-section .why-image {
  position: relative;
  padding-right: 30px;
}
.why-choose-section .why-image img {
  width: 100%;
  border-radius: 12px;
}
.why-choose-section .why-image .exp-badge {
  position: absolute;
  bottom: 30px;
  right: 0;
  background-color: var(--theme-color);
  padding: 25px 30px;
  border-radius: 10px;
  text-align: center;
  border: 4px solid #fff;
}
.why-choose-section .why-image .exp-badge h3 {
  color: #f5b025;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}
.why-choose-section .why-image .exp-badge span {
  color: #fff;
  font-size: 14px;
}
.why-choose-section .why-content {
  padding-left: 30px;
}
.why-choose-section .why-content .sub-title {
  color: #f5b025;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.why-choose-section .why-content .common-heading {
  margin-bottom: 20px;
}
.why-choose-section .why-content .feature-list {
  margin-top: 30px;
}
.why-choose-section .why-content .feature-list .feature-single {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.why-choose-section .why-content .feature-list .feature-single .f-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(20, 66, 107, 0.1);
  color: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.why-choose-section .why-content .feature-list .feature-single .f-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 5px;
}
.why-choose-section .why-content .feature-list .feature-single .f-text p {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

/* --- Specialized NRI Services Section --- */
.nri-focus-section {
  background-color: var(--heading-colo);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.nri-focus-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-image: url("../img/world-map-pattern.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.nri-focus-section .section-title .sub-title {
  background-color: rgba(245, 176, 37, 0.2);
  color: #f5b025;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 13px;
  margin-bottom: 15px;
  display: inline-block;
}
.nri-focus-section .section-title .common-heading {
  color: #fff;
}
.nri-focus-section .nri-desc {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.nri-focus-section .nri-benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.nri-focus-section .nri-benefits-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #fff;
}
.nri-focus-section .nri-benefits-list li i {
  color: #f5b025;
  font-size: 18px;
}
.nri-focus-section .nri-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}
.nri-focus-section .nri-card .icon-wrapper {
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--theme-color);
  transition: all 0.3s ease;
}
.nri-focus-section .nri-card h4 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.nri-focus-section .nri-card p {
  color: #a9b3bb;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.nri-focus-section .nri-card:hover {
  background: #fff;
  transform: translateY(-5px);
}
.nri-focus-section .nri-card:hover .icon-wrapper {
  background-color: #f5b025;
  color: #fff;
}
.nri-focus-section .nri-card:hover h4 {
  color: var(--theme-color);
}
.nri-focus-section .nri-card:hover p {
  color: #555;
}
.nri-focus-section .common-btn {
  background: var(--btn-hover-color);
  border: 1px solid var(--btn-color);
}
.nri-focus-section .common-btn:hover {
  background: transparent;
  border: 1px solid var(--btn-hover-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .nri-focus-section {
    padding: 5rem 0;
  }
  .nri-focus-section .nri-card {
    text-align: left;
  }
}
/* --- Service Details Page Layout --- */
.service-details-section {
  background-color: #fff;
  position: relative;
  overflow: visible;
  /* LEFT SIDEBAR STYLES */
  /* RIGHT MAIN CONTENT STYLES */
}
.service-details-section .service-sidebar {
  position: sticky;
  top: 120px;
  margin-bottom: 40px;
  /* Category List */
  /* Help Widget */
  /* Download Widget */
}
.service-details-section .service-sidebar .sidebar-widget {
  background: #f8f9f7;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
.service-details-section .service-sidebar .sidebar-widget .widget-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.service-details-section .service-sidebar .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-details-section .service-sidebar .service-list li {
  margin-bottom: 10px;
}
.service-details-section .service-sidebar .service-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  color: var(--theme-color);
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s;
  border: 1px solid #eee;
}
.service-details-section .service-sidebar .service-list li a.active, .service-details-section .service-sidebar .service-list li a:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
  padding-left: 25px;
}
.service-details-section .service-sidebar .help-widget {
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
}
.service-details-section .service-sidebar .help-widget .widget-title {
  color: #fff;
}
.service-details-section .service-sidebar .help-widget .icon-box {
  font-size: 40px;
  color: #f5b025;
  margin-bottom: 15px;
}
.service-details-section .service-sidebar .help-widget p {
  color: #ccc;
  margin-bottom: 20px;
}
.service-details-section .service-sidebar .help-widget .phone-link {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-details-section .service-sidebar .help-widget .phone-link:hover {
  color: #f5b025;
}
.service-details-section .service-sidebar .download-btn {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  color: var(--theme-color);
  transition: all 0.3s;
  border: 1px solid #eee;
}
.service-details-section .service-sidebar .download-btn .icon {
  font-size: 24px;
  color: #ff0000;
  margin-right: 15px;
}
.service-details-section .service-sidebar .download-btn .text {
  flex-grow: 1;
  font-weight: 600;
}
.service-details-section .service-sidebar .download-btn .dl-icon {
  color: #999;
}
.service-details-section .service-sidebar .download-btn:hover {
  background: #f5b025;
  color: #fff;
  border-color: #f5b025;
}
.service-details-section .service-sidebar .download-btn:hover .icon, .service-details-section .service-sidebar .download-btn:hover .dl-icon {
  color: #fff;
}
.service-details-section .service-details-content {
  /* Sub-Service Cards */
  /* Custom Accordion */
}
.service-details-section .service-details-content .service-main-image {
  margin-bottom: 30px;
}
.service-details-section .service-details-content .service-main-image img {
  width: 100%;
  border-radius: 10px;
}
.service-details-section .service-details-content .service-intro ul {
  padding-left: 0;
}
.service-details-section .service-details-content .service-intro p {
  margin-bottom: 8px;
}
.service-details-section .service-details-content .content-heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.service-details-section .service-details-content .sub-heading {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 15px;
}
.service-details-section .service-details-content p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 15px;
}
.service-details-section .service-details-content .sub-service-card {
  background: #f8f9f7;
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.3s;
}
.service-details-section .service-details-content .sub-service-card .icon {
  font-size: 30px;
  color: #f5b025;
  margin-bottom: 15px;
}
.service-details-section .service-details-content .sub-service-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 10px;
}
.service-details-section .service-details-content .sub-service-card p {
  font-size: 14px;
  margin: 0;
}
.service-details-section .service-details-content .sub-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: #fff;
  border-color: #f5b025;
}
.service-details-section .service-details-content .custom-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  background: transparent;
}
.service-details-section .service-details-content .custom-accordion .accordion-button {
  background-color: #f8f9f7;
  color: var(--theme-color);
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid #eee;
  box-shadow: none;
}
.service-details-section .service-details-content .custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--theme-color);
  color: #fff;
}
.service-details-section .service-details-content .custom-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.service-details-section .service-details-content .custom-accordion .accordion-button:focus {
  box-shadow: none;
}
.service-details-section .service-details-content .custom-accordion .accordion-body {
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 5px 5px;
  color: var(--text-color);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
  .service-details-section .service-sidebar {
    position: static;
    margin-top: 50px;
  }
}
/* --- Consultation Page Styles --- */
.consultation-section {
  background-color: #f8f9f7;
  /* Left Side: Info & Benefits */
  /* Right Side: The Form Wrapper */
}
.consultation-section .consult-info {
  padding-right: 30px;
}
.consultation-section .consult-info .sub-title {
  display: inline-block;
  padding: 6px 15px;
  background-color: #e5a127;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}
.consultation-section .consult-info .description {
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.7;
}
.consultation-section .consult-info .benefit-list {
  list-style: none;
  padding: 0;
}
.consultation-section .consult-info .benefit-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.consultation-section .consult-info .benefit-list li .icon {
  width: 50px;
  height: 50px;
  background-color: var(--theme-color);
  color: #f5b025;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.consultation-section .consult-info .benefit-list li .text strong {
  display: block;
  color: var(--theme-color);
  font-size: 18px;
  margin-bottom: 5px;
}
.consultation-section .consult-info .benefit-list li .text p {
  font-size: 14px;
  margin: 0;
  color: var(--text-color);
}
.consultation-section .consult-info .direct-contact {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #f5b025;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.consultation-section .consult-info .direct-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.consultation-section .consult-info .direct-contact .phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 5px;
}
.consultation-section .consult-info .direct-contact .phone:hover {
  color: #f5b025;
}
.consultation-section .consult-info .direct-contact .email {
  color: var(--text-color);
  margin: 0;
}
.consultation-section .consult-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--theme-color);
}
.consultation-section .consult-form-wrapper .form-title {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--theme-color);
  text-align: center;
}
.consultation-section .consult-form-wrapper .section-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin: 10px 0 15px 0;
  font-weight: 700;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.consultation-section .consult-form-wrapper .form-group {
  margin-bottom: 20px;
}
.consultation-section .consult-form-wrapper .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 8px;
  display: block;
}
.consultation-section .consult-form-wrapper .form-group .form-control, .consultation-section .consult-form-wrapper .form-group .form-select {
  height: 50px;
  border: 1px solid #e0e0e0;
  background-color: #fcfcfc;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 15px;
  color: #333;
  transition: all 0.3s;
}
.consultation-section .consult-form-wrapper .form-group .form-control:focus, .consultation-section .consult-form-wrapper .form-group .form-select:focus {
  border-color: #f5b025;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(245, 176, 37, 0.1);
}
.consultation-section .consult-form-wrapper .form-group textarea.form-control {
  height: auto;
  padding-top: 15px;
}
.consultation-section .consult-form-wrapper .privacy-text {
  font-size: 13px;
  color: #888;
}
.consultation-section .consult-form-wrapper .privacy-text i {
  color: #28a745;
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .consultation-section .consult-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .consultation-section .consult-form-wrapper {
    padding: 25px;
  }
}
/* --- Blog Page Styles --- */
.blog-page-section {
  background-color: #f8f9f7;
  padding-bottom: 105px;
  /* Blog Card Styles */
  /* Custom Pagination */
  /* --- Sidebar Styles --- */
}
.blog-page-section .blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  /* Featured Card Specifics */
}

.blog-page-section .blog-card  ul{
      padding:0px ;
    
  }
   .blog-page-section .blog-card  li{
          padding-left: 20px;
          position: relative;
        
      }
   .blog-page-section .blog-card   ul   li:before{
              content: "\f00c";
              font-family: fontawesome;
              position:absolute ;
              left: 0;
              color: var(--btn-color);
              
          }

.blog-page-section .blog-card .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.blog-page-section .blog-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-page-section .blog-card .card-image .date-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #f5b025;
  color: var(--theme-color);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-page-section .blog-card .card-content {
  padding: 25px;
}
.blog-page-section .blog-card .card-content .card-meta {
  margin-bottom: 12px;
}
.blog-page-section .blog-card .card-content .card-meta span {
  font-size: 13px;
  color: #888;
  margin-right: 15px;
}
.blog-page-section .blog-card .card-content .card-meta span i {
  color: #f5b025;
  margin-right: 5px;
}
.blog-page-section .blog-card .card-content h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}
.blog-page-section .blog-card .card-content h3 a {
  color: var(--theme-color);
  transition: color 0.3s;
}
.blog-page-section .blog-card .card-content h3 a:hover {
  color: #f5b025;
}
.blog-page-section .blog-card .card-content p {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-page-section .blog-card .card-content .read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-page-section .blog-card .card-content .read-more i {
  transition: margin-left 0.3s;
}
.blog-page-section .blog-card .card-content .read-more:hover {
  color: #f5b025;
}
.blog-page-section .blog-card .card-content .read-more:hover i {
  margin-left: 5px;
}
.blog-page-section .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/*.blog-page-section .blog-card:hover .card-image img {*/
/*  transform: scale(1.05);*/
/*}*/
.blog-page-section .blog-card.featured-card .card-image {
  height: 400px;
}
.blog-page-section .blog-card.featured-card .card-content {
  padding: 35px;
}
.blog-page-section .blog-card.featured-card .card-content h3 {
  font-size: 28px;
}
.blog-page-section .custom-pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.blog-page-section .custom-pagination li a {
  width: 100%;
  padding: 10px 13px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #eee;
  color: var(--theme-color);
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
}
.blog-page-section .custom-pagination li a:hover, .blog-page-section .custom-pagination li a.active {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}
.blog-page-section .blog-sidebar {
  padding-left: 20px;
  /* Search Widget */
  /* Category Widget */
  /* Recent Posts Widget */
  /* Tags Widget */
}
.blog-page-section .blog-sidebar .sidebar-widget {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
.blog-page-section .blog-sidebar .sidebar-widget .widget-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.blog-page-section .blog-sidebar .sidebar-widget .widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: #f5b025;
}
.blog-page-section .blog-sidebar .search-widget form {
  position: relative;
}
.blog-page-section .blog-sidebar .search-widget form input {
  width: 100%;
  height: 50px;
  border: 1px solid #eee;
  padding: 10px 15px;
  border-radius: 5px;
  outline: none;
}
.blog-page-section .blog-sidebar .search-widget form input:focus {
  border-color: #f5b025;
}
.blog-page-section .blog-sidebar .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  transition: 0.3s;
}
.blog-page-section .blog-sidebar .search-widget form button:hover {
  background: #f5b025;
}
.blog-page-section .blog-sidebar .category-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-page-section .blog-sidebar .category-widget ul li {
  margin-bottom: 10px;
}
.blog-page-section .blog-sidebar .category-widget ul li a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  padding-bottom: 10px;
  border-bottom: 1px dashed #eee;
  transition: 0.3s;
}
.blog-page-section .blog-sidebar .category-widget ul li a span {
  color: #ccc;
}
.blog-page-section .blog-sidebar .category-widget ul li a:hover {
  color: #f5b025;
  padding-left: 5px;
}
.blog-page-section .blog-sidebar .category-widget ul li:last-child a {
  border-bottom: none;
}
.blog-page-section .blog-sidebar .recent-post-widget .recent-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.blog-page-section .blog-sidebar .recent-post-widget .recent-post-item .post-thumb {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}
.blog-page-section .blog-sidebar .recent-post-widget .recent-post-item .post-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-page-section .blog-sidebar .recent-post-widget .recent-post-item .post-text h6 {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.blog-page-section .blog-sidebar .recent-post-widget .recent-post-item .post-text h6 a {
  color: var(--theme-color);
}
.blog-page-section .blog-sidebar .recent-post-widget .recent-post-item .post-text h6 a:hover {
  color: #f5b025;
}
.blog-page-section .blog-sidebar .recent-post-widget .recent-post-item .post-text .date {
  font-size: 12px;
  color: #888;
}
.blog-page-section .blog-sidebar .recent-post-widget .recent-post-item .post-text .date i {
  margin-right: 5px;
  color: #f5b025;
}
.blog-page-section .blog-sidebar .tags-widget .tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-page-section .blog-sidebar .tags-widget .tags-list a {
  background: #f8f9f7;
  color: var(--text-color);
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 4px;
  transition: 0.3s;
}
.blog-page-section .blog-sidebar .tags-widget .tags-list a:hover {
  background: var(--theme-color);
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-page-section .blog-sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
  .blog-page-section .blog-card.featured-card .card-image {
    height: 250px;
  }
}
/* =========================================
   SERVICE SINGLE PAGE STYLES
   ========================================= */
.service-details-section {
  background-color: #ffffff;
  /* --- LEFT SIDEBAR --- */
  /* --- RIGHT MAIN CONTENT --- */
}
.service-details-section .service-sidebar {
  position: sticky;
  top: 100px;
  margin-bottom: 40px;
  /* Category List */
  /* Contact Widget */
}
.service-details-section .service-sidebar .sidebar-widget {
  background: #fff;
  padding: 30px;
  border: 1px solid #e0e0e0;
  margin-bottom: 30px;
}
.service-details-section .service-sidebar .sidebar-widget .widget-title {
  font-family: var(--heading-font);
  font-size: 24px;
  color: var(--btn-color);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--btn-hover-color);
  display: inline-block;
  width: 100%;
}
.service-details-section .service-sidebar .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 354px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-color: var(--theme-color);
  scrollbar-width: none;
}
.service-details-section .service-sidebar .service-list li {
  margin-bottom: 10px;
}
.service-details-section .service-sidebar .service-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9f7;
  color: var(--theme-color);
  font-weight: 500;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.service-details-section .service-sidebar .service-list li a.active, .service-details-section .service-sidebar .service-list li a:hover {
  background: var(--btn-color);
  color: #fff;
  border-left-color: var(--btn-hover-color);
}
.service-details-section .service-sidebar .help-widget {
  background-color: var(--theme-color);
  color: #fff;
  text-align: center;
  border: none;
}
.service-details-section .service-sidebar .help-widget .widget-title {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.service-details-section .service-sidebar .help-widget .icon-box {
  font-size: 40px;
  color: var(--btn-hover-color);
  margin-bottom: 20px;
}
.service-details-section .service-sidebar .help-widget p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-details-section .service-sidebar .help-widget .phone-link {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.service-details-section .service-sidebar .help-widget .phone-link:hover {
  color: var(--btn-hover-color);
}
.service-details-section .service-details-content {
  /* Trust Box Modern */
  /* Help Cards Grid */
  /* Comprehensive Solutions Section */
  /* Global Partner CTA */
  /* Custom Accordion */
}
.service-details-section .service-details-content .service-main-image {
  margin-bottom: 24px;
  height: 327px;
}
.service-details-section .service-details-content .service-main-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--btn-color);
  padding: 5px;
}
.service-details-section .service-details-content .content-heading {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
.service-details-section .service-details-content h4, .service-details-section .service-details-content h3 {
  margin-bottom: 6px;
  margin-top: 20px;
}
.service-details-section .service-details-content .sub-heading {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--btn-color);
  margin-bottom: 20px;
}
.service-details-section .service-details-content .lead-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--btn-color);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-details-section .service-details-content p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-details-section .service-details-content .trust-box-modern {
  background-color: #f9f9f9;
  padding: 35px;
  border-left: 5px solid var(--btn-hover-color);
}
.service-details-section .service-details-content .trust-box-modern .check-list-modern {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.service-details-section .service-details-content .trust-box-modern .check-list-modern li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--theme-color);
  font-weight: 500;
}
.service-details-section .service-details-content .trust-box-modern .check-list-modern li i {
  color: var(--btn-hover-color);
  font-size: 18px;
  margin-top: 4px;
}
.service-details-section .service-details-content .help-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  transition: all 0.3s;
}
.service-details-section .service-details-content .help-card i {
  font-size: 30px;
  color: var(--btn-color);
  margin-bottom: 15px;
  transition: 0.3s;
}
.service-details-section .service-details-content .help-card p {
  margin: 0;
  font-weight: 600;
  color: var(--theme-color);
  font-size: 16px;
  line-height: 1.5;
}
.service-details-section .service-details-content .help-card:hover {
  background: var(--btn-color);
  border-color: var(--btn-color);
  transform: translateY(-5px);
}
.service-details-section .service-details-content .help-card:hover i {
  color: var(--btn-hover-color);
}
.service-details-section .service-details-content .help-card:hover p {
  color: #fff;
}
.service-details-section .service-details-content .comprehensive-section {
  background-color: var(--btn-color);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-details-section .service-details-content .comprehensive-section p {
  color: white;
  margin-bottom: 5px;
}
.service-details-section .service-details-content .comprehensive-section .comprehensive-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
  margin-top: 0px;
  margin-bottom: 6px;
}
.service-details-section .service-details-content .comprehensive-section .comprehensive-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: #e0e0e0;
}
.service-details-section .service-details-content .comprehensive-section .comprehensive-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--btn-hover-color);
}
.service-details-section .service-details-content .global-partner-box {
  border: 2px solid var(--btn-hover-color);
  padding: 40px;
  text-align: center;
}
.service-details-section .service-details-content .global-partner-box .highlight {
  font-size: 18px;
  font-family: var(--heading-font);
  color: var(--btn-color);
  margin-top: 15px;
}
.service-details-section .service-details-content .custom-accordion .accordion-item {
  border: 1px solid #eee;
  margin-bottom: 10px;
  background: transparent;
}
.service-details-section .service-details-content .custom-accordion .accordion-button {
  background-color: #fff;
  color: var(--theme-color);
  font-weight: 600;
  box-shadow: none;
  padding: 20px;
}
.service-details-section .service-details-content .custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--btn-color);
  color: #fff;
}
.service-details-section .service-details-content .custom-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.service-details-section .service-details-content .custom-accordion .accordion-body {
  border-top: 1px solid #eee;
  color: var(--text-color);
  line-height: 1.7;
  padding: 20px;
}
.service-details-section .service-details-content .custom-accordion .accordion-body ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
  margin-top: 0px;
  margin-bottom: 6px;
}
.service-details-section .service-details-content .custom-accordion .accordion-body ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: #000000;
}
.service-details-section .service-details-content .custom-accordion .accordion-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--btn-hover-color);
}

/* Responsive */
@media (max-width: 991px) {
  .service-details-section .service-sidebar {
    margin-top: 50px;
    position: static;
  }
  .service-details-section .comprehensive-section .comprehensive-list {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   OUR TEAM PAGE STYLES
   ========================================= */
/* --- 1. Founder Spotlight Section --- */
.founder-section {
  background-color: #fff;
}
.founder-section .founder-img-wrapper {
  position: relative;
  padding: 20px;
}
.founder-section .founder-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-top: 5px solid var(--btn-hover-color);
  border-left: 5px solid var(--btn-hover-color);
  z-index: 0;
}
.founder-section .founder-img-wrapper img {
  width: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid #eee;
  border-radius: 0;
  box-shadow: 15px 15px 0px var(--theme-color);
}
.founder-section .founder-img-wrapper .founder-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--btn-color);
  color: #fff;
  padding: 15px 30px;
  z-index: 2;
}
.founder-section .founder-img-wrapper .founder-badge .role {
  font-family: var(--heading-font);
  font-size: 18px;
  letter-spacing: 1px;
}
.founder-section .founder-content .name {
  font-family: var(--heading-font);
  font-size: 45px;
  color: var(--theme-color);
  margin-bottom: 5px;
}
.founder-section .founder-content .designation {
  font-size: 18px;
  color: var(--btn-hover-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
  display: inline-block;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
.founder-section .founder-content .bio-text p {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.8;
}
.founder-section .founder-content .bio-text .lead {
  font-size: 19px;
  color: var(--btn-color);
  font-weight: 500;
}
.founder-section .founder-content .bio-text .highlight-note {
  border-left: 4px solid var(--btn-hover-color);
  padding-left: 20px;
  font-style: italic;
  background: #f9f9f9;
  padding: 15px 15px 15px 20px;
  color: var(--theme-color);
}
.founder-section .founder-content .signature-line {
  width: 100px;
  height: 4px;
  background: var(--btn-hover-color);
  margin-top: 30px;
}

/* --- 2. Core Team Grid --- */
.core-team-section {
  background-color: #f8f9f7;
}
.core-team-section .sub-title {
  color: var(--btn-hover-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.core-team-section .team-card-horizontal {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.core-team-section .team-card-horizontal .member-img {
  width: 100%;
  /* height: 120px; */
  margin-bottom: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: anchor-center;
  overflow: hidden;
  /* border: 3px solid var(--btn-hover-color); */
  gap: 42px;
}
.core-team-section .team-card-horizontal .member-img img {
  width: 100%;
  max-width: 200px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s;
  border-bottom: 3px solid var(--btn-hover-color);
}
.core-team-section .team-card-horizontal h3 {
  font-family: var(--heading-font);
  font-size: 30px;
  color: var(--theme-color);
  margin-bottom: 5px;
}
.core-team-section .team-card-horizontal .designation {
  font-size: 14px;
  color: var(--btn-color);
  font-weight: 700;
  text-transform: uppercase;
}
.core-team-section .team-card-horizontal .member-info .divider {
  margin: 15px 0;
  border-color: #eee;
  opacity: 1;
}
.core-team-section .team-card-horizontal .member-info .bio-scroll {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-color);
}
.core-team-section .team-card-horizontal .member-info .bio-scroll p {
  margin-bottom: 15px;
}
.core-team-section .team-card-horizontal .member-info .bio-scroll p:last-child {
  margin-bottom: 0;
}
.core-team-section .team-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--btn-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .founder-section .founder-img-wrapper {
    margin-bottom: 40px;
  }
  .founder-section .founder-img-wrapper .founder-badge {
    right: 0;
  }
}
@media (max-width: 576px) {
  header .navbar-brand {
    max-width: 140px;
  }
  header .navbar.navbar-expand-lg {
    padding: 10px 0px;
  }
  .home-bannerss .bnt-main-conts .banner-inner-boxx h2 {
    font-size: 19px;
  }
  .side-btn {
    display: none;
  }
  .home-bannerss .banner-cta-group .common-btn {
    padding: 18px 15px;
  }
  header.sticky .navbar.navbar-expand-lg {
    padding: 10px 0px;
  }
  .feature-strip {
    display: none;
  }
  .common-heading {
    font-size: 24px;
  }
  .vision-section .section-title .common-heading {
    font-size: 24px;
  }
  .leaders-images {
    grid-template-columns: repeat(1, 1fr);
  }
  .leader-card {
    max-width: 100%;
  }
  .modern-trust-section .service-tags-container {
    grid-template-columns: repeat(1, 5fr);
  }
  .about-modern-intro .common-heading {
    font-size: 18px;
  }
  .about-modern-intro .lead-text {
    font-size: 16px;
  }
  .modern-vm-section .vm-cards-wrapper .vm-modern-card {
    padding: 25px 20px;
  }
  .inner-banner h1 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  header nav .navbar-nav .nav-item .dropdown-menu.show {
    display: block;
    padding-left: 0px;
    width: 99%;
    max-height: 268px;
    overflow-y: scroll;
  }
}
@media (max-width: 576px) {
  header {
    width: 100%;
    border-radius: 0px;
    position: fixed;
    top: 0px;
  }
  header nav ul#menu-header-menu .menu-item-has-children .dropdown-menu li .nav-link {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
  }
  .about-us-section .row {
    flex-direction: column-reverse;
  }
  .about-us-section .about-cta {
    border-left: none;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 36px;
  }
  .about-us-section .about-image-1 {
    display: none;
  }
  .about-us-section .about-image-2 {
    width: 100%;
    margin-left: 0;
  }
  .about-us-section .about-image-2 {
    width: 100%;
    max-height: 290px;
    margin-left: 0;
  }
  .about-us-section .about-image-2 img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 291px;
  }
  .about-us-section.common-space {
    padding-bottom: 0;
  }
  .core-team-section .team-card-horizontal .member-img {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  .core-team-section .team-card-horizontal .member-img img {
    width: 100%;
    max-width: 200px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-bottom: 3px solid var(--btn-hover-color);
  }
  .core-team-section .team-card-horizontal h3 {
    font-size: 22px;
  }
  .core-team-section .team-card-horizontal {
    padding: 15px;
  }
  .home-bannerss .banner-stats-boxes img {
    width: 43%;
  }
  .home-bannerss .bnt-main-conts .banner-inner-boxx h3 {
    font-size: 19px;
  }
  .home-bannerss .bnt-main-conts .banner-inner-boxx h2 {
    font-size: 31px;
  }
  .home-bannerss .bnt-main-conts {
    top: 51%;
  }
}
@media (max-width: 1024px) {
  header .navbar-brand {
    max-width: 152px;
    transition: all 0.3s;
  }
  header nav .navbar-nav .nav-item .nav-link {
    padding: 15px 7px;
  }
}
/* =========================================
   STICKY RIGHT SIDEBAR STYLES
   ========================================= */
.right-sticky-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
.right-sticky-bar .sticky-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 50px;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  text-decoration: none;
  /* The Text Label (Hidden by default) */
  /* The Icon Box */
  /* --- Hover Effects --- */
  /* --- Special Style for WhatsApp (The Green One) --- */
}
.right-sticky-bar .sticky-link .label {
  position: absolute;
  right: 60px;
  background-color: #ffffff;
  color: var(--theme-color);
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Animation properties */
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  /* Optional: Little triangle pointing to the icon */
}
.right-sticky-bar .sticky-link .label::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
}
.right-sticky-bar .sticky-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--theme-color);
  position: relative;
  z-index: 2;
}
.right-sticky-bar .sticky-link:hover {
  background-color: #f9f9f9;
}
.right-sticky-bar .sticky-link:hover .label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.right-sticky-bar .sticky-link.whatsapp-highlight {
  background-color: #25D366;
  border-bottom: none;
}
.right-sticky-bar .sticky-link.whatsapp-highlight .icon-box {
  color: #ffffff;
  font-size: 24px;
}
.right-sticky-bar .sticky-link.whatsapp-highlight .label {
  color: #25D366;
}
.right-sticky-bar .sticky-link.whatsapp-highlight:hover {
  background-color: #20bd5a;
}


.blog-page-section .blog-card .card-content h3 {
    font-family: calibri;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 26px;
        color: var(--theme-color);
        font-weight: bold;
    }
}
@media (max-width: 991px) {
    .blog-page-section .blog-card.featured-card .card-image {
        height: 155px;
        object-fit: cover;
        width: 100%;
    }
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 2px;
    padding: 2px;
}

/*# sourceMappingURL=style.css.map */