:root {
  --background-color: #F7E9D6;
  /* Background color for the entire website, including individual sections */
  --default-color: #1D3330;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1D3330;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7e4a33;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

body {
  background-color: #F7E9D6 !important;
  color: #1D3330 !important;
}

/* Hero Section */
.hero-section {
  background-color: #1c3330;
  color: #F7E9D6;
  text-align: center;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.dbutton {
  background-color: #7e4a33;
  border: none;
  color: #F7E9D6;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-top: 1rem;
}

.dbutton:hover {
  background-color: #5c796f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sbutton {
  background-color: #1c3330;
  border: none;
  color: #F7E9D6;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-top: 1rem;
}

.sbutton:hover {
  background-color: var(--light-green);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.dtext {
  border: none;
  color: #F7E9D6;
}

.ntext {
  border: none;
  color: #1D3330;
}



/*--------------------------------------------------------------
  # about page end
  --------------------------------------------------------------*/
/* content-box section*/
.content-box {
  background-color: #F7E9D6;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: black;
}

.title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
}

/* section backgroun color */
.section-bg-dgreen {
  background-color: #1D3330;
  color: #F7E9D6;
  padding: 15px 0;
}

/* section backgroun color */
.section-bg-lbeige {
  background-color: #F7E9D6;
  color: #1D3330;
  padding: 15px 0;
}

.section-bg-lbeige-2 {
  background-color: #F7E9D6;
  color: #1D3330;
  border: none;
  padding: 5px;
}

/* testimonial-card color */
.testimonial-card {
  background-color: #1D3330;
  color: white;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  margin: auto;
}

/* testimonial-card image size */
.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.star-color {
  color: #FFD700;
}

/* .testimonial-card carousel */
.carousel {
  position: relative;
}

/* .testimonial-card carousel */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--background-color);
  width: auto;
  border-radius: 50%;
  padding: 0px;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* .job-card carousel */
.carousel {
  position: relative;
}

/* .job-card carousel */
.carousel-control-prev2,
.carousel-control-next2 {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: auto;
  border-radius: 50%;
  border: none;
  background-color: var(--background-color);
  padding: 10px;
}

.carousel-control-prev2 {
  left: 10px;
}

.carousel-control-next2 {
  right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}


/* .carousel-abut02 section start */

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #1c3330;
}

/* Hide radio buttons */
input[type=radio] {
  display: none;
}

.tomb-tital {
  text-align: center;
  justify-content: center;
  color: #F7E9D6;
  /* Matching soft beige color */
}

.carousel-abut02 {
  width: 100%;
  max-width: 800px;
  max-height: 600px;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.carousel-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.label-card {
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform .5s ease-in-out, opacity .5s ease-in-out;
  cursor: pointer;
}

.img-card {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Positioning logic for active and inactive slides */
#item-1:checked~.carousel-cards #label-id-3,
#item-2:checked~.carousel-cards #label-id-1,
#item-3:checked~.carousel-cards #label-id-2 {
  transform: translateX(-40%) scale(.8);
  opacity: .4;
  z-index: 0;
}

#item-1:checked~.carousel-cards #label-id-2,
#item-2:checked~.carousel-cards #label-id-3,
#item-3:checked~.carousel-cards #label-id-1 {
  transform: translateX(40%) scale(.8);
  opacity: .4;
  z-index: 0;
}

#item-1:checked~.carousel-cards #label-id-1,
#item-2:checked~.carousel-cards #label-id-2,
#item-3:checked~.carousel-cards #label-id-3 {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 1;
}

/* .carousel-abut02 section end */

/*--------------------------------------------------------------
  # about page end
  --------------------------------------------------------------*/


/*--------------------------------------------------------------
  # contact us page start
  --------------------------------------------------------------*/
/* Contact Info Section */
.hero-sect {
  background-color: #F7E9D6;
  color: black;
  width: 100%;
  padding: 50px 50px 50px 50px;
}

.contact-info {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 25px;
  text-align: left;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  font-size: 22px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

/* Form Section */
.hero-se {
  background-color: #5C796F;
  color: white;
  width: 100%;
  padding: 50px 15px;
}

.get {
  background-color: #BDB09E;
  padding: 40px;
  border-radius: 20px;
}

/* Form Inputs */
.form-control {
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
}

.btn-dark {
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    padding: 30px;
  }

  .hero-sect,
  .hero-se {
    padding: 30px 10px;
  }

  .contact-info {
    text-align: center;
    padding: 20px;
  }

  .contact-info p {
    font-size: 16px;
    justify-content: center;
  }

  .contact-info i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
  # contact us page end
  --------------------------------------------------------------*/


/*--------------------------------------------------------------
  # our team page start
  --------------------------------------------------------------*/
.team-container {
  text-align: center;
  padding: 50px 20px;
}

/* cof-card-start */
.cfo-card {
  background-color: #F7E9D6;
  color: #1D3330;
  border: none;
}

.cfo-card img {
  height: 300px;
  object-fit: cover;
}

.cfo-social-icons a {
  color: #1c3330;
  margin: 0 10px;
  font-size: 18px;
}

/* cof-card-end */


/* Associates-cart-start */
.ass-card {
  background-color: #1c3330;
  color: #F7E9D6;
  border: none;
}

.ass-card img {
  height: 300px;
  object-fit: cover;
}

.ass-social-icons a {
  color: #F7E9D6;
  margin: 0 10px;
  font-size: 18px;
}

/* Associates-cart-end */

/*--------------------------------------------------------------
  # our team page end
  --------------------------------------------------------------*/


/*--------------------------------------------------------------
  # home page start
  --------------------------------------------------------------*/

/* Features Section */
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
  padding: 60px 20px;
}

.benefit-card {
  background-color: #F7E9D6;
  padding: 20px;
  border-radius: 10px;
  color: #1D3330;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.benefit-card h5 {
  margin-bottom: 15px;
}

.image-container img {
  width: 100%;
  border-radius: 15px;
}

/* Home Client Section */
/* .home-client {
    background-color: #F7E9D6;
    color: #1D3330;
    font-weight: bold;
} */


/* Hero home Section */
.carohome-button {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

.carohome-button:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

.home-hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .home-hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.home-hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.home-hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .home-hero .info h2 {
    font-size: 36px;
  }
}

.home-hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.home-hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.home-hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

.home-hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.home-hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.home-hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.home-hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.home-hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .home-hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.home-hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .home-hero .carousel-control-next {
    padding-right: 15px;
  }
}

.home-hero .carousel-control-next-icon,
.home-hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero .carousel-control-prev,
.home-hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.home-hero .carousel-control-prev:focus,
.home-hero .carousel-control-next:focus {
  opacity: 0.5;
}

.home-hero .carousel-control-prev:hover,
.home-hero .carousel-control-next:hover {
  opacity: 0.9;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
  # home page end
  --------------------------------------------------------------*/

/*--------------------------------------------------------------
  # footer
  --------------------------------------------------------------*/
/* Footer Styles for Patavi Consulting */

.footer {
  background-color: var(--dark-green);
  color: var(--beige);
  padding: 60px 0 30px;
  position: relative;
}

.footer h3 {
  color: var(--beige);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer h5 {
  color: var(--beige);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  position: relative;
}


.footer {
  padding: 40px 0;
  text-align: center;
}

.footer-logo img {
  width: 100px;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #d1bea8;
}

.map-container {
  display: flex;
  justify-content: center;
}

/* Mobile View Centering */
@media (max-width: 768px) {
  .footer .row {
    text-align: center;
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .google-map {
    display: none;
  }
}

/* .footer-logo {
  margin-left: 70px;
  margin-top: 50px;
  max-width: 500px;
  transition: all 0.3s ease;
} */

/* Animated logo effect */
.animated-logo {
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Footer links styling */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-links li a {
  color: var(--beige);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--beige);
  visibility: hidden;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links li a:hover:before {
  visibility: visible;
  width: 100%;
}

/* Social media icons */
.social-media {
  margin-top: 20px;
}

.social-media a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(245, 245, 220, 0.1);
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  color: var(--beige);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-media a:hover {
  background-color: var(--beige);
  color: var(--dark-green);
  transform: translateY(-3px);
}

/* Google Map Styling */
.google-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
  border-radius: 8px;
  filter: grayscale(15%);
  transition: all 0.3s ease;
}

.google-map:hover iframe {
  filter: grayscale(0%);
}

.map-info {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 0 0 8px 8px;
  color: #333;
}

.map-info p {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.map-info a {
  color: var(--dark-green);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.map-info a:hover {
  color: var(--light-green);
  text-decoration: underline;
}

/* Copyright area */
.copyright-area {
  margin-top: 40px;
}

.copyright-area hr {
  border-color: rgba(245, 245, 220, 0.2);
  margin: 20px 0;
}

.copyright-area p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.designer-link {
  color: var(--beige);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.designer-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .footer {
    padding: 40px 0 20px;
  }

  /* .footer-logo {
    max-width: 350px;
    margin-bottom: 20px;
    margin-left: 50px;
  } */

  .google-map {
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer [class*="col-"] {
    margin-bottom: 30px;
  }

  .copyright-area {
    margin-top: 20px;
  }
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: var(--dark-green);
  color: var(--beige);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--light-green);
  transform: translateY(-5px);
}

.scroll-top-btn i {
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-6px);
  }

  60% {
    transform: translateY(-3px);
  }
}

/* Active link on touch devices */
.footer-links li a.active-touch {
  color: #fff;
  padding-left: 5px;
}

.footer-links li a.active-touch:before {
  visibility: visible;
  width: 100%;
}

/*--------------------------------------------------------------
  # footer
  --------------------------------------------------------------*/




.nav-hero-a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

.nav-hero-a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
  ------------------------------*/

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.nav-header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #F7E9D6;
  --heading-color: #F7E9D6;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.nav-header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.nav-header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.nav-header .logo span {
  font-size: 24px;
  padding-left: 1px;
  font-family: var(--heading-font);
  color: var(--color-primary);
}

.scrolled .nav-header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
  ------------------------------*/
.scrolled .nav-header {
  --background-color: #F7E9D6;
  --heading-color: #1D3330;
  --nav-color: #1D3330;
  --nav-hover-color: #7e4a33;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    /* background: rgba(33, 37, 41, 0.8); */
    transition: 0.3s;
    background-color: #1c3330;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Fix for removing underline from mobile menu links */
.navmenu .mobile-only a {
    text-decoration: none !important;
}



/* Custom CSS for Patavi Consulting */
:root {
  --dark-green: #1c3330;
  --light-green: #5c796f;
  --beige: #bdb09f;
  --light-beige: #f8f7f0;
  --dark-beige: #e6e2c3;
}


/* Service Sections */
.service-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-section.bg-light {
  background-color: var(--light-beige);
}

.service-title {
  color: var(--dark-green);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.service-divider {
  height: 3px;
  width: 60px;
  background-color: var(--light-green);
  margin-bottom: 1.5rem;
  border-radius: 1.5px;
}

.service-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  text-align: justify;
}

.service-btn {
  background-color: var(--dark-green);
  border: none;
  color: var(--beige);
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-top: 1rem;
}

.service-btn:hover {
  background-color: var(--light-green);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.service-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image img {
  transition: all 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Animation Effects */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Service Section Decorative Elements */
.service-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(245, 245, 220, 0.2);
  top: -150px;
  left: -150px;
  z-index: -1;
}

.service-section:nth-child(odd)::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(26, 93, 26, 0.05);
  bottom: -100px;
  right: -100px;
  z-index: -1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .service-title {
    font-size: 2.2rem;
  }

  .service-section {
    padding: 60px 0;
  }

  .service-content {
    margin-bottom: 40px;
  }

  .order-lg-1 {
    order: 2;
  }

  .order-lg-2 {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .services-hero {
    padding: 100px 0 80px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .service-section {
    padding: 50px 0;
  }

  .service-title {
    font-size: 2rem;
  }

  .service-image {
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}







/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .hero-section {
    padding: 80px 0;
  }

  .experience-badge {
    position: relative;
    bottom: auto;
    left: auto;
    display: inline-block;
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card,
  .stat-card {
    margin-bottom: 1.5rem;
  }
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

.services-section {
  padding: 3rem 0;
}

.service-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
}

.service-icon i {
  font-size: 35px;
}

/* Achievements Section Styles */
.achievements-section {
  /* background-color: var(--light-background); */
  padding: 4rem 0;
}

.achievement-card {
  background: var(--soft-white);
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(27, 59, 54, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(27, 59, 54, 0.15);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--soft-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.achievement-label {
  color: var(--primary-color);
  opacity: 0.7;
}

@media (max-width: 768px) {

  .header,
  .achievements-section {
    padding: 2rem 0;
  }

  .service-card,
  .achievement-card {
    margin-bottom: 1rem;
  }

  .achievement-number {
    font-size: 2.5rem;
  }
}

/* Testimonial titles */

.section-title {
  text-align: center;
  margin: 3rem 0;
  font-size: 2.5rem;
  color: var(--heading-color);
  position: relative;
}

.section-title-2 {
  text-align: center;
  margin: 3rem 0;
  font-size: 2.5rem;
  color: var(--beige);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 0.5rem auto;
}

.section-title-2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--line-green);
  margin: 0.5rem auto;
}

/* ========================= */


/* =========================== */


.content {
  padding: 7rem 0;
}


.media-29101 {
  text-align: center;
}

.media-29101 h5 {
  margin-bottom: 30px;
}

.media-29101 h5 {
  color: #ffffff;
}

.owl-2-style .owl-nav {
  display: none;
}

.owl-2-style .owl-dots {
  text-align: center;
  position: relative;
  bottom: -30px;
}

.owl-2-style .owl-dots .owl-dot {
  display: inline-block;
}

.owl-2-style .owl-dots .owl-dot span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 0px;
  background: #1D3330;
  -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  margin: 3px;
  border-radius: 50%;
}

.owl-2-style .owl-dots .owl-dot.active span {
  background: #7e4a33;
}

.owl-2-style .owl-dots .owl-dot:active,
.owl-2-style .owl-dots .owl-dot:focus {
  outline: none;
}


#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #F7E9D6;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-loader {
  width: 80px;
  height: 80px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}